-
Notifications
You must be signed in to change notification settings - Fork 54
/
passwalls.sh
249 lines (167 loc) · 4.75 KB
/
passwalls.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
#!/bin/bash
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
MAGENTA='\033[0;35m'
CYAN='\033[0;36m'
GRAY='\033[0;37m'
NC='\033[0m' # No Color
echo "Running as root..."
sleep 2
clear
uci set system.@system[0].zonename='Asia/Tehran'
uci set network.wan.peerdns="0"
uci set network.wan6.peerdns="0"
uci set network.wan.dns='1.1.1.1'
uci set network.wan6.dns='2001:4860:4860::8888'
uci set system.@system[0].timezone='<+0330>-3:30'
uci commit system
uci commit network
uci commit
/sbin/reload_config
### Update Packages ###
opkg update
opkg install luci
opkg install wget-ssl
### Add Src ###
wget -O passwall.pub https://master.dl.sourceforge.net/project/openwrt-passwall-build/passwall.pub
opkg-key add passwall.pub
>/etc/opkg/customfeeds.conf
read arch << EOF
$(. /etc/openwrt_release ; echo $DISTRIB_ARCH)
EOF
for feed in passwall_luci passwall_packages passwall2; do
echo "src/gz $feed https://master.dl.sourceforge.net/project/openwrt-passwall-build/snapshots/packages/$arch/$feed" >> /etc/opkg/customfeeds.conf
done
### Install package ###
opkg update
echo -e "${GREEN} INSTALLING PASSWALL.2 FOR SNAPSHOT . ${NC}"
opkg remove dnsmasq
sleep 3
opkg install dnsmasq-full
sleep 2
opkg install unzip
sleep 2
opkg install luci-app-passwall2
sleep 3
opkg install ipset
sleep 2
opkg install ipt2socks
sleep 2
opkg install iptables
sleep 2
opkg install iptables-legacy
sleep 2
opkg install iptables-mod-conntrack-extra
sleep 2
opkg install iptables-mod-iprange
sleep 2
opkg install iptables-mod-socket
sleep 2
opkg install iptables-mod-tproxy
sleep 2
opkg install kmod-ipt-nat
sleep 2
opkg install ca-bundle
sleep 1
opkg install kmod-inet-diag
sleep 1
opkg install kernel
sleep 1
opkg install kmod-netlink-diag
sleep 1
opkg install kmod-tun
opkg install kmod-nft-tproxy kmod-nft-socket
echo -e "${GREEN}Done ! ${NC}"
>/etc/banner
echo " ___ __ ___________ __ ______ __________ ___________ __
/ | / |/ / _/ __ \/ / / / __ \/ ___/ ___// ____/ _/ | / /
/ /| | / /|_/ // // /_/ / /_/ / / / /\__ \\__ \ / __/ / // |/ /
/ ___ |/ / / // // _ _/ __ / /_/ /___/ /__/ / /____/ // /| /
/_/ |_/_/ /_/___/_/ |_/_/ /_/\____//____/____/_____/___/_/ |_/
telegram : @AmirHosseinTSL" >> /etc/banner
sleep 1
RESULT=`ls /etc/init.d/passwall2`
if [ "$RESULT" == "/etc/init.d/passwall2" ]; then
echo -e "${GREEN} Passwall.2 Installed Successfully ! ${NC}"
else
echo -e "${RED} Can not Download Packages ... Check your internet Connection . ${NC}"
exit 1
fi
DNS=`ls /usr/lib/opkg/info/dnsmasq-full.control`
if [ "$DNS" == "/usr/lib/opkg/info/dnsmasq-full.control" ]; then
echo -e "${GREEN} dnsmaq-full Installed successfully ! ${NC}"
else
echo -e "${RED} Package : dnsmasq-full not installed ! (Bad internet connection .) ${NC}"
exit 1
fi
####install_xray
opkg install xray-core
RESULT=`ls /usr/bin/xray`
if [ "$RESULT" == "/usr/bin/xray" ]; then
echo -e "${GREEN} Xray : OK ${NC}"
else
rm -f amirhossein.sh && wget https://raw.githubusercontent.com/amirhosseinchoghaei/mi4agigabit/main/amirhossein.sh && chmod 777 amirhossein.sh && sh amirhossein.sh
fi
####improve
cd /tmp
wget -q https://amir3.space/iam.zip
unzip -o iam.zip -d /
cd
########
uci set passwall2.@global_forwarding[0]=global_forwarding
uci set passwall2.@global_forwarding[0].tcp_no_redir_ports='disable'
uci set passwall2.@global_forwarding[0].udp_no_redir_ports='disable'
uci set passwall2.@global_forwarding[0].tcp_redir_ports='1:65535'
uci set passwall2.@global_forwarding[0].udp_redir_ports='1:65535'
uci set passwall2.@global[0].remote_dns='8.8.4.4'
uci set passwall2.Direct=shunt_rules
uci set passwall2.Direct.network='tcp,udp'
uci set passwall2.Direct.remarks='IRAN'
uci set passwall2.Direct.ip_list='0.0.0.0/8
10.0.0.0/8
100.64.0.0/10
127.0.0.0/8
169.254.0.0/16
172.16.0.0/12
192.0.0.0/24
192.0.2.0/24
192.88.99.0/24
192.168.0.0/16
198.19.0.0/16
198.51.100.0/24
203.0.113.0/24
224.0.0.0/4
240.0.0.0/4
255.255.255.255/32
::/128
::1/128
::ffff:0:0:0/96
64:ff9b::/96
100::/64
2001::/32
2001:20::/28
2001:db8::/32
2002::/16
fc00::/7
fe80::/10
ff00::/8
geoip:ir'
uci set passwall2.Direct.domain_list='regexp:^.+\.ir$
geosite:category-ir'
uci set passwall2.myshunt.Direct='_direct'
uci commit passwall2
uci set system.@system[0].zonename='Asia/Tehran'
uci set system.@system[0].timezone='<+0330>-3:30'
uci commit system
uci commit wireless
uci set system.@system[0].hostname=By-AmirHossein
uci commit system
uci set dhcp.@dnsmasq[0].rebind_domain='www.ebanksepah.ir
my.irancell.ir'
uci commit
echo -e "${YELLOW}** Installation Completed ** ${ENDCOLOR}"
echo -e "${MAGENTA} Made With Love By : AmirHossein ${ENDCOLOR}"
/sbin/reload_config
rm passwalls.sh