├── 6a90875cf3b1a90126ebd4814e9b53ab-modified.webp
├── README.md
└── install-nat.sh
/6a90875cf3b1a90126ebd4814e9b53ab-modified.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ozipoetra/Nat-VPS-Installer/HEAD/6a90875cf3b1a90126ebd4814e9b53ab-modified.webp
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |

2 |
3 |
4 | # Nat VPS Installer
5 | Oneclick installer for ssh websocket, xray, vmess, trojan, trojango, shadowsocks
6 |
7 | # This no longer Supported and Maintained
8 | please consider to use this:
9 | * sshws (nat support) : https://github.com/ozipoetra/sshws-nginx
10 | * xray (nat support) : https://github.com/ozipoetra/z-ui
11 |
12 | ---
13 |
--------------------------------------------------------------------------------
/install-nat.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | if [ "${EUID}" -ne 0 ]; then
3 | echo "You need to run this script as root"
4 | exit 1
5 | fi
6 |
7 | # xray service
8 | aa="https://raw.githubusercontent.com/ozipoetra/mantapv2/main/data-xray.sh"
9 | #installing script
10 | wget ${aa} && chmod +x data-xray.sh && ./data-xray.sh
11 |
12 | cd /usr/bin
13 | wget -O xraymenu https://raw.githubusercontent.com/ozipoetra/mantapv2/main/menu-akun/add-ws.sh
14 | chmod +x xraymenu
15 | cd /root
16 | clear
17 |
18 | wget -O ninstall-nat.sh https://raw.githubusercontent.com/ozipoetra/Mantap/main/install-nat.sh && chmod +x ninstall-nat.sh && ./ninstall-nat.sh
19 |
20 | #
21 | clear
22 | echo "Installation Success! Rebooting..."
23 | sleep 3
24 | reboot
25 | # clear installation files (soon)
26 | # rm -r *.sh
27 |
--------------------------------------------------------------------------------