-
Notifications
You must be signed in to change notification settings - Fork 60
/
pf-tun.sh
283 lines (264 loc) · 8.56 KB
/
pf-tun.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#!/usr/bin/env bash
set -e
color () {
local color=$1
local text=$2
case $color in
"red")
printf "\e[91m${text}\e[0m\n";;
"green")
printf "\e[92m${text}\e[0m\n";;
"yellow")
printf "\e[93m${text}\e[0m\n";;
"blue")
printf "\e[94m${text}\e[0m\n";;
"magenta")
printf "\e[95m${text}\e[0m\n";;
"cyan")
printf "\e[96m${text}\e[0m\n";;
*)
echo "${text}"
;;
esac
}
check_sys(){
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
fi
}
CYAN="\e[96m"
MAGENTA="\e[95m"
GREEN="\e[92m"
YELLOW="\e[93m"
RED="\e[91m"
NC="\e[0m"
BOLD=$(tput bold)
press_enter() {
color red "\nPress Enter to continue... "
read
}
root() {
if [ "$(id -u)" != "0" ]; then
color red "This command must be run as root."
exit 1
fi
}
tunnel_broker() {
clear
color green "Creating tunnelbroker IPV6"
echo ""
color yellow "At first, visit the tunnelbroker website and create your tunnel, then come back here."
echo " tuunelbroker.ch or he.net or tunnelbroker.net"
echo ""
echo -ne "${YELLOW}Enter tunnel name (tunnel-id) for tunnelbroker: ${NC}"
read tunnelname
echo ""
echo -ne "${YELLOW}Enter Server (website) IPV4 address: ${NC}"
read serveripv4addr
echo ""
echo -ne "${YELLOW}Enter your IPV4 address: ${NC}"
read clientipv4addr
echo ""
echo -ne "${YELLOW}Enter server (website) IPV6 address (without ::/64): ${NC}"
read routed64
echo ""
echo -ne "${YELLOW}Enter Client (Routed) IPV6 address (without ::/64): ${NC}"
read clientipv6addr
sudo ip tunnel add $tunnelname mode sit remote $serveripv4addr local $clientipv4addr ttl 255
sudo ip link set $tunnelname up
sudo ip -6 addr add $clientipv6addr dev $tunnelname
sleep 1
color green "Your tunnel $tunnelname has been created! Now let's make it permanent."
if [ ! -f /etc/network/interfaces ]; then
color red "File /etc/network/interfaces not found. Installing ifupdown..."
apt-get update
apt-get install -y ifupdown
fi
interfaces="/etc/network/interfaces";
grep $tunnelname $interfaces > /dev/null
if [ $? = 0 ]; then
echo "You already have an entry for the tunnel $tunnelname in your $interfaces file."
exit 1
fi
cat << EOF | sudo tee -a $interfaces > /dev/null
# IPv6 via HE tunnel...
auto $tunnelname
iface $tunnelname inet6 v4tunnel
accept_ra 0
address $clientipv6addr
endpoint $serveripv4addr
local $clientipv4addr
ttl 255
gateway $routed64
EOF
color green "Your tunnel $tunnelname has been created! Your IPv6 address is: $clientipv6addr."
echo "Please restart networking or reboot the server if necessary."
press_enter
}
speedtest() {
clear
while true; do
color blue " Speedtest"
printf "+---------------------------------------------+\n"
echo ""
echo -e "${CYAN} 1. ${YELLOW}Original speedtest script${NC}"
echo -e "${CYAN} 2. ${YELLOW}Benchmark${NC}"
echo
echo -e "${CYAN} 0. ${YELLOW}Back${NC}"
echo
echo -e "${GREEN}Select an option ${RED}[0-2]: ${NC}"
read option
case $option in
1)
apt-get install curl -y && curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | bash && apt-get install speedtest -y && speedtest
;;
2)
wget -qO- network-speed.xyz | bash -s -- -r eu
;;
0)
echo -e "${YELLOW}Exiting.${NC}"
break
;;
*)
echo -e "${RED}Invalid option.${NC}"
press_enter
;;
esac
done
}
while true; do
clear
title_text="All In One OPIran Script (V.1.0.12)"
tg_title="TG-Group @OPIranCluB"
yt_title="youtube.com/@opiran-inistitute"
echo ""
echo ""
echo -e "$MAGENTA$BOLD ${title_text} ${NC}"
echo
color blue "$tg_title"
color blue "$yt_title"
printf "+---------------------------------------------+\n"
echo ""
echo -e "${CYAN} 1. ${YELLOW}SSH Tunnel (v4/6)${NC}"
echo -e "${CYAN} 2. ${YELLOW}Iptables (v4/6) (UDP+TCP)${NC}"
echo -e "${CYAN} 3. ${YELLOW}Socat (v4/6)${NC}"
echo -e "${CYAN} 4. ${YELLOW}WS tunnel (v4/6)${NC}"
echo -e "${CYAN} 5. ${YELLOW}FRP (v4/6)${NC}"
echo -e "${CYAN} 6. ${YELLOW}Udp2raw (v4/6)${NC}"
echo -e "${CYAN} 7. ${YELLOW}Chisel Direct Tunnel${NC}"
echo -e "${CYAN} 8. ${YELLOW}Rathole tunnel${NC}"
echo ""
printf "+---------------------------------------------+\n"
echo ""
echo -e "${CYAN} 9. ${YELLOW}Private-IP /6to4 / native ipv6 setup (OPIran) ${NC}"
echo -e "${CYAN} 10. ${YELLOW}Tunnel broker setup${NC}"
echo -e "${CYAN} 11. ${YELLOW}Private IP (gregre, ipip,...) (Azumi)${NC}"
echo ""
printf "+---------------------------------------------+\n"
echo ""
echo -e "${CYAN} 12. ${YELLOW}Block Iran domain and IP for all panels and nodes${NC}"
echo -e "${CYAN} 13. ${YELLOW}Softether VPN server autorun${NC}"
echo -e "${CYAN} 14. ${YELLOW}Marzban Panel autorun ${RED}(soon)${NC}"
echo -e "${CYAN} 15. ${YELLOW}Marzban Node autorun ${RED}(soon)${NC}"
echo ""
printf "+---------------------------------------------+\n"
echo ""
echo -e "${CYAN} 16. ${RED}OPIran OPtimizer${NC}"
echo -e "${CYAN} 17. ${RED}XanMod kernel and BBRv3${NC}"
echo -e "${CYAN} 18. ${RED}Badvpn (UDPGW)${NC}"
echo -e "${CYAN} 19. ${RED}Speedtest${NC}"
echo
echo -e "${CYAN} 0. ${RED}Exit${NC}"
echo ""
echo ""
echo -e "${GREEN}Select an option ${RED}[1-4]: ${NC} "
read option
case $option in
1)
bash <(curl -fsSL https://raw.githubusercontent.com/opiran-club/pf-tun/main/scripts/ssh-tunnels.sh --ipv4)
;;
2)
bash <(curl -fsSL https://raw.githubusercontent.com/opiran-club/pf-tun/main/scripts/iptables.sh --ipv4)
;;
3)
bash <(curl -fsSL https://raw.githubusercontent.com/opiran-club/pf-tun/main/scripts/socat.sh --ipv4)
;;
4)
bash <(curl -s https://raw.githubusercontent.com/Azumi67/Reverse_tls/main/go.sh)
;;
5)
apt-get install -y python3 wget python3-pip curl
pip install colorama netifaces
python3 <(curl -Ls https://raw.githubusercontent.com/Azumi67/FRP_Reverse_Loadbalance/main/loadbalance.py --ipv4)
;;
6)
bash <(curl -s https://raw.githubusercontent.com/Azumi67/UDP2RAW_FEC/main/go.sh)
;;
7)
apt-get install -y python3 wget python3-pip curl
pip install colorama netifaces
python3 <(curl -Ls https://raw.githubusercontent.com/Azumi67/Direct_Chisel/main/chiseld.py --ipv4)
;;
8)
apt-get --fix-broken install
apt-get install git -y
echo 'export PATH="$PATH:/usr/bin/git"' >> ~/.bashrc
source ~/.bashrc
sleep 3
bash <(curl -s https://raw.githubusercontent.com/Azumi67/Rathole_reverseTunnel/main/install.sh)
bash <(curl -s https://raw.githubusercontent.com/Azumi67/Rathole_reverseTunnel/main/go.sh)
;;
9)
bash <(curl -Ls https://raw.githubusercontent.com/opiran-club/pf-tun/main/scripts/private-ips.sh --ipv4)
;;
10)
tunnel_broker
;;
11)
apt-get install -y python3 wget python3-pip curl
pip install colorama netifaces
python3 <(curl -Ls https://raw.githubusercontent.com/Azumi67/6TO4-GRE-IPIP-SIT/main/ipipv2.py --ipv4)
;;
12)
apt-get update && apt-get install git -y
git clone https://github.com/redpilllabs/GFIProxyProtector.git
cd GFIProxyProtector
./run.sh
;;
13)
bash <(curl -s -L https://raw.githubusercontent.com/opiran-club/softether/main/opiran-seth)
;;
16)
bash <(curl -s https://raw.githubusercontent.com/opiran-club/VPS-Optimizer/main/optimizer.sh --ipv4)
;;
17)
bash <(curl -s https://raw.githubusercontent.com/opiran-club/VPS-Optimizer/main/bbrv3.sh --ipv4)
;;
18)
wget -N https://raw.githubusercontent.com/opiran-club/VPS-Optimizer/main/Install/udpgw.sh && bash udpgw.sh
;;
19)
speedtest
;;
0)
echo -e "${YELLOW}Exiting.${NC}"
exit 0
;;
*)
echo -e "${RED}Invalid option.${NC}"
press_enter
;;
esac
done