-
Notifications
You must be signed in to change notification settings - Fork 99
/
ss-panel-v3-mod-node-connect.sh
344 lines (344 loc) · 13.6 KB
/
ss-panel-v3-mod-node-connect.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!/bin/bash
#Check Root
[ $(id -u) != "0" ] && { echo "Error: 必须使用root用户执行此脚本!"; exit 1; }
Libtest(){
#自动选择下载节点
GIT='raw.githubusercontent.com'
LIB='download.libsodium.org'
GIT_PING=`ping -c 1 -w 1 $GIT|grep time=|awk '{print $7}'|sed "s/time=//"`
LIB_PING=`ping -c 1 -w 1 $LIB|grep time=|awk '{print $7}'|sed "s/time=//"`
echo "$GIT_PING $GIT" > ping.pl
echo "$LIB_PING $LIB" >> ping.pl
libAddr=`sort -V ping.pl|sed -n '1p'|awk '{print $2}'`
if [ "$libAddr" == "$GIT" ];then
libAddr='https://raw.githubusercontent.com/lizhongnian/ss-panel-v3-mod-node-connect/master/libsodium-1.0.13.tar.gz'
else
libAddr='https://download.libsodium.org/libsodium/releases/libsodium-1.0.13.tar.gz'
fi
rm -f ping.pl
}
Get_Dist_Version()
{
if [ -s /usr/bin/python3 ]; then
Version=`/usr/bin/python3 -c 'import platform; print(platform.linux_distribution()[1][0])'`
elif [ -s /usr/bin/python2 ]; then
Version=`/usr/bin/python2 -c 'import platform; print platform.linux_distribution()[1][0]'`
fi
}
python_test(){
#测速决定使用哪个源
tsinghua='pypi.tuna.tsinghua.edu.cn'
pypi='mirror-ord.pypi.io'
doubanio='pypi.doubanio.com'
pubyun='pypi.pubyun.com'
tsinghua_PING=`ping -c 1 -w 1 $tsinghua|grep time=|awk '{print $8}'|sed "s/time=//"`
pypi_PING=`ping -c 1 -w 1 $pypi|grep time=|awk '{print $8}'|sed "s/time=//"`
doubanio_PING=`ping -c 1 -w 1 $doubanio|grep time=|awk '{print $8}'|sed "s/time=//"`
pubyun_PING=`ping -c 1 -w 1 $pubyun|grep time=|awk '{print $8}'|sed "s/time=//"`
echo "$tsinghua_PING $tsinghua" > ping.pl
echo "$pypi_PING $pypi" >> ping.pl
echo "$doubanio_PING $doubanio" >> ping.pl
echo "$pubyun_PING $pubyun" >> ping.pl
pyAddr=`sort -V ping.pl|sed -n '1p'|awk '{print $2}'`
if [ "$pyAddr" == "$tsinghua" ]; then
pyAddr='https://pypi.tuna.tsinghua.edu.cn/simple'
elif [ "$pyAddr" == "$pypi" ]; then
pyAddr='https://mirror-ord.pypi.io/simple'
elif [ "$pyAddr" == "$doubanio" ]; then
pyAddr='http://pypi.doubanio.com/simple --trusted-host pypi.doubanio.com'
elif [ "$pyAddr" == "$pubyun_PING" ]; then
pyAddr='http://pypi.pubyun.com/simple --trusted-host pypi.pubyun.com'
fi
rm -f ping.pl
}
install_centos_ssr(){
cd /root
Get_Dist_Version
if [ $Version == "7" ]; then
wget --no-check-certificate https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -ivh epel-release-latest-7.noarch.rpm
else
wget --no-check-certificate https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
rpm -ivh epel-release-latest-6.noarch.rpm
fi
rm -rf *.rpm
yum -y update --exclude=kernel*
yum -y install git gcc python-setuptools lsof lrzsz python-devel libffi-devel openssl-devel iptables
yum -y update nss curl libcurl
yum -y groupinstall "Development Tools"
#第一次yum安装 supervisor pip
yum -y install supervisor python-pip
supervisord
#第二次pip supervisor是否安装成功
if [ -z "`pip`" ]; then
curl -O https://bootstrap.pypa.io/get-pip.py
python get-pip.py
rm -rf *.py
fi
if [ -z "`ps aux|grep supervisord|grep python`" ]; then
pip install supervisor
supervisord
fi
#第三次检测pip supervisor是否安装成功
if [ -z "`pip`" ]; then
if [ -z "`easy_install`"]; then
wget http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py
fi
easy_install pip
fi
if [ -z "`ps aux|grep supervisord|grep python`" ]; then
easy_install supervisor
supervisord
fi
pip install --upgrade pip
Libtest
wget --no-check-certificate $libAddr
tar xf libsodium-1.0.13.tar.gz && cd libsodium-1.0.13
./configure && make -j2 && make install
echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
git clone -b master https://github.com/lizhongnian/shadowsocks.git "/root/shadowsocks"
cd /root/shadowsocks
chkconfig supervisord on
#第一次安装
python_test
pip install -r requirements.txt -i $pyAddr
#第二次检测是否安装成功
if [ -z "`python -c 'import requests;print(requests)'`" ]; then
pip install -r requirements.txt #用自带的源试试再装一遍
fi
#第三次检测是否成功
if [ -z "`python -c 'import requests;print(requests)'`" ]; then
mkdir python && cd python
git clone https://github.com/lizhongnian/urllib3.git && cd urllib3
python setup.py install && cd ..
git clone https://github.com/nakagami/CyMySQL.git && cd CyMySQL
python setup.py install && cd ..
git clone https://github.com/requests/requests.git && cd requests
python setup.py install && cd ..
git clone https://github.com/pyca/pyopenssl.git && cd pyopenssl
python setup.py install && cd ..
git clone https://github.com/cedadev/ndg_httpsclient.git && cd ndg_httpsclient
python setup.py install && cd ..
git clone https://github.com/etingof/pyasn1.git && cd pyasn1
python setup.py install && cd ..
rm -rf python
fi
systemctl stop firewalld.service
systemctl disable firewalld.service
cd /root/shadowsocks
cp apiconfig.py userapiconfig.py
cp config.json user-config.json
}
install_ubuntu_ssr(){
apt-get update -y
apt-get install supervisor lsof -y
apt-get install build-essential wget -y
apt-get install iptables git -y
Libtest
wget --no-check-certificate $libAddr
tar xf libsodium-1.0.13.tar.gz && cd libsodium-1.0.13
./configure && make -j2 && make install
echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
apt-get install python-pip git -y
pip install cymysql
cd /root
git clone -b master https://github.com/lizhongnian/shadowsocks.git "/root/shadowsocks"
cd shadowsocks
pip install -r requirements.txt
chmod +x *.sh
# 配置程序
cp apiconfig.py userapiconfig.py
cp config.json user-config.json
}
install_node(){
clear
echo
echo "#########################################################################"
echo "# One click Install Shadowsocks-Python-Manyuser "
echo "# Github: https://github.com/lizhongnian/ss-panel-v3-mod-node-connect "
echo "# Author: 7colorblog "
echo "# blog: https://www.7colorblog.com "
echo "#########################################################################"
echo
#Check Root
[ $(id -u) != "0" ] && { echo "Error: 必须使用root用户执行此脚本!"; exit 1; }
#check OS version
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
}
install_ssr_for_each(){
check_sys
if [[ ${release} = "centos" ]]; then
install_centos_ssr
else
install_ubuntu_ssr
fi
}
# 取消文件数量限制
sed -i '$a * hard nofile 512000\n* soft nofile 512000' /etc/security/limits.conf
read -p "请输入面板的域名或ip(例如:https://www.7colorblog.com or http://114.114.114.114): " Userdomain
read -p "请输入面板的muKey(例如:mupass): " Usermukey
read -p "请输入面板的节点id(例如:7): " UserNODE_ID
install_ssr_for_each
cd /root/shadowsocks
echo -e "modify Config.py...\n"
sed -i "s#'zhaoj.in'#'jd.hk'#" /root/shadowsocks/userapiconfig.py
Userdomain=${Userdomain:-"http://127.0.0.1"}
sed -i "s#https://zhaoj.in#${Userdomain}#" /root/shadowsocks/userapiconfig.py
Usermukey=${Usermukey:-"mupass"}
sed -i "s#glzjin#${Usermukey}#" /root/shadowsocks/userapiconfig.py
UserNODE_ID=${UserNODE_ID:-"3"}
sed -i '2d' /root/shadowsocks/userapiconfig.py
sed -i "2a\NODE_ID = ${UserNODE_ID}" /root/shadowsocks/userapiconfig.py
# 启用supervisord
supervisorctl shutdown
#某些机器没有echo_supervisord_conf
wget -N -P /etc/ --no-check-certificate https://raw.githubusercontent.com/lizhongnian/ss-panel-v3-mod-node-connect/master/supervisord.conf
supervisord
#iptables
iptables -F
iptables -X
iptables -I INPUT -p tcp -m tcp --dport 22:65535 -j ACCEPT
iptables -I INPUT -p udp -m udp --dport 22:65535 -j ACCEPT
iptables-save >/etc/sysconfig/iptables
iptables-save >/etc/sysconfig/iptables
echo 'iptables-restore /etc/sysconfig/iptables' >> /etc/rc.local
echo "/usr/bin/supervisord -c /etc/supervisord.conf" >> /etc/rc.local
chmod +x /etc/rc.d/rc.local
echo "#########################################################################"
echo "# 安装完成,节点即将重启使配置生效 "
echo "# Github: https://github.com/lizhongnian/ss-panel-v3-mod-node-connect "
echo "# Author: 7colorblog "
echo "# blog: https://www.7colorblog.com "
echo "#########################################################################"
reboot now
}
install_node_db(){
clear
echo
echo "#########################################################################"
echo "# One click Install Shadowsocks-Python-Manyuser "
echo "# Github: https://github.com/lizhongnian/ss-panel-v3-mod-node-connect "
echo "# Author: 7colorblog "
echo "# blog: https://www.7colorblog.com "
echo "#########################################################################"
echo
#Check Root
[ $(id -u) != "0" ] && { echo "Error: 必须使用root用户执行此脚本!"; exit 1; }
#check OS version
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
}
install_ssr_for_each(){
check_sys
if [[ ${release} = "centos" ]]; then
install_centos_ssr
else
install_ubuntu_ssr
fi
}
# 取消文件数量限制
sed -i '$a * hard nofile 512000\n* soft nofile 512000' /etc/security/limits.conf
read -p "请输入面板数据库地址: " MYSQL_HOST
read -p "请输入面板数据库库名: " MYSQL_DB
read -p "请输入面板数据库用户名: " MYSQL_USER
read -p "请输入面板数据库密码: " MYSQL_PASS
read -p "请输入面板的节点ID(like:7): " UserNODE_ID
install_ssr_for_each
cd /root/shadowsocks
echo -e "modify Config.py...\n"
sed -i "s#'modwebapi'#'glzjinmod'#" /root/shadowsocks/userapiconfig.py #改成数据库对接
sed -i "s#'zhaoj.in'#'jd.hk'#" /root/shadowsocks/userapiconfig.py #混淆设置
MYSQL_HOST=${MYSQL_HOST:-"http://127.0.0.1"}
sed -i "s#MYSQL_HOST = '127.0.0.1'#MYSQL_HOST = '${MYSQL_HOST}'#" /root/shadowsocks/userapiconfig.py
MYSQL_DB=${MYSQL_DB:-"root"}
sed -i "s#MYSQL_DB = 'shadowsocks'#MYSQL_DB = '${MYSQL_DB}'#" /root/shadowsocks/userapiconfig.py
MYSQL_USER=${MYSQL_USER:-"root"}
sed -i "s#MYSQL_USER = 'ss'#MYSQL_USER = '${MYSQL_USER}'#" /root/shadowsocks/userapiconfig.py
MYSQL_PASS=${MYSQL_PASS:-"root"}
sed -i "s#MYSQL_PASS = 'ss'#MYSQL_PASS = '${MYSQL_PASS}'#" /root/shadowsocks/userapiconfig.py
UserNODE_ID=${UserNODE_ID:-"3"}
sed -i '2d' /root/shadowsocks/userapiconfig.py
sed -i "2a\NODE_ID = ${UserNODE_ID}" /root/shadowsocks/userapiconfig.py
# 启用supervisord
supervisorctl shutdown
#某些机器没有echo_supervisord_conf
wget -N -P /etc/ --no-check-certificate https://raw.githubusercontent.com/lizhongnian/ss-panel-v3-mod-node-connect/master/supervisord.conf
supervisord
#iptables
iptables -F
iptables -X
iptables -I INPUT -p tcp -m tcp --dport 22:65535 -j ACCEPT
iptables -I INPUT -p udp -m udp --dport 22:65535 -j ACCEPT
iptables-save >/etc/sysconfig/iptables
iptables-save >/etc/sysconfig/iptables
echo 'iptables-restore /etc/sysconfig/iptables' >> /etc/rc.local
echo "/usr/bin/supervisord -c /etc/supervisord.conf" >> /etc/rc.local
chmod +x /etc/rc.d/rc.local
echo "#########################################################################"
echo "# 安装完成,节点即将重启使配置生效 "
echo "# Github: https://github.com/lizhongnian/ss-panel-v3-mod-node-connect "
echo "# Author: 7colorblog "
echo "# blog: https://www.7colorblog.com "
echo "#########################################################################"
reboot now
}
echo
echo "########################################################################"
echo "# ss-panel-v3-mod后端对接一键脚本 "
echo "# Github: https://github.com/lizhongnian/ss-panel-v3-mod-node-connect "
echo "# Author: 7colorblog "
echo "# blog: https://www.7colorblog.com "
echo "# 请输入1或2选择对接方式 "
echo "# 1 webapi对接选这个! "
echo "# 2 db数据库对接选这个! "
echo "########################################################################"
echo
num=$1
if [ "${num}" == "1" ]; then
install_node 1
else
stty erase '^H' && read -p " 请输入数字 [1-2]:" num
case "$num" in
1)
install_node
;;
2)
install_node_db
;;
*)
echo "请输入正确数字 [1-2]"
;;
esac
fi