forked from Daorakle/Daorakle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange.sh
56 lines (56 loc) · 852 Bytes
/
change.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
red='\e[1;31m'
green='\e[0;32m'
NC='\e[0m'
MYIP=$(wget -qO- icanhazip.com);
echo "Checking VPS"
clear
echo -e ""
echo -e "======================================"
echo -e ""
echo -e " [1] Change Port Stunnel4"
echo -e " [2] Change Port OpenVPN"
echo -e " [3] Change Port Wireguard"
echo -e " [4] Change Port Vmess"
echo -e " [5] Change Port Vless"
echo -e " [6] Change Port Trojan"
echo -e " [7] Change Port Squid"
echo -e " [8] Change Port SSTP"
echo -e " [x] Exit"
echo -e "======================================"
echo -e ""
read -p " Select From Options [1-8 or x] : " port
echo -e ""
case $port in
1)
port-ssl
;;
2)
port-ovpn
;;
3)
port-wg
;;
4)
port-ws
;;
5)
port-vless
;;
6)
port-tr
;;
7)
port-squid
;;
8)
port-sstp
;;
x)
clear
menu
;;
*)
echo "Please enter an correct number"
;;
esac