-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgost.sh
More file actions
378 lines (350 loc) · 9.4 KB
/
Copy pathgost.sh
File metadata and controls
378 lines (350 loc) · 9.4 KB
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#! /bin/bash
sh_ver=1.0.1
Green_font_prefix="\033[32m" && Red_font_prefix="\033[31m" && Green_background_prefix="\033[42;37m" && Red_background_prefix="\033[41;37m" && Font_color_suffix="\033[0m"
Info="${Green_font_prefix}[信息]${Font_color_suffix}"
Error="${Red_font_prefix}[错误]${Font_color_suffix}"
Tip="${Green_font_prefix}[注意]${Font_color_suffix}"
outinstalltls(){
echo -n "是否自定义ssl证书y/n:"
read iftls
if test $iftls = y;then
echo "请输入tls证书地址格式为?cert=/path/to/my/cert/file&key=/path/to/my/key/file:"
read tlsaddress
fi
}
installtls(){
echo -n "请问是否验证证书y/n:"
read iftls
if test $iftls = y;then
tlsaddress="?secure=true"
fi
}
check_outtls(){
if test $protocol = "tls" -o $protocol = "https" -o $protocol = "wss" -o $protocol = "mwss" -o $protocol = "relay+tls";then
if test $inorout -eq 1;then
installtls
else
outinstalltls
fi
fi
}
installbefore(){
echo -n "请问需要设置多少个入口?"
read allinstallbeforenum
installbeforenum=1
while test "$installbeforenum" -le "$allinstallbeforenum"
do
echo -n "请输入Gost监听的端口:"
read inport
echo -n "目的地IP (输入你国外V2ray的IP):"
read ipother
echo -n "目的地端口 (输入你国外V2ray的端口):"
read portother
if test "$installbeforenum" -eq "$allinstallbeforenum";then
if test $protocol = "relay+tls";then
echo "\""udp"://0.0.0.0:"$inport"/"$ipother":"$portother"\"," >> /etc/gost/config.json
fi
echo "\""tcp"://0.0.0.0:"$inport"/"$ipother":"$portother"\"" >> /etc/gost/config.json
else
if test $protocol = "relay+tls";then
echo "\""udp"://0.0.0.0:"$inport"/"$ipother":"$portother"\"," >> /etc/gost/config.json
fi
echo "\""tcp"://0.0.0.0:"$inport"/"$ipother":"$portother"\"," >> /etc/gost/config.json
fi
installbeforenum=$((++installbeforenum))
done
}
installafter(){
echo -n "隧道出口IP(国外服务器IP地址):"
read outip
echo -n "隧道出口端口(国外服务器Gost监听的端口):"
read outport
echo -n "隧道出口用户名(要与国外服务器相同):"
read outaccount
echo -n "隧道密码(要与国外服务器相同):"
read outpassword
}
outinstallafter(){
outip="0.0.0.0"
echo -n "隧道出口端口(Gost监听的端口):"
read outport
echo -n "隧道出口用户名:"
read outaccount
echo -n "隧道密码:"
read outpassword
}
installnom(){
echo "\""$protocol"://"$outaccount":"$outpassword"@"$outip":"$outport""$tlsaddress"\"" >> /etc/gost/config.json
}
confstart(){
echo "{
\"Debug\": true,
\"Retries\": 0,
\"ServeNodes\": [" >> /etc/gost/config.json
}
confhalf(){
echo " ],
\"ChainNodes\": [" >> /etc/gost/config.json
}
conflast(){
echo " ]
}" >> /etc/gost/config.json
}
check_inorout(){
echo -n "请问是1、国内 2、国外[输入序号1/2]:"
read inorout
if test $inorout -eq 1;then
ininstall
else
outinstall
fi
}
check_protocol(){
echo "请问是哪种安装协议
1 ws 2 tls 3 https 4 http
5 kcp 6 h2 7 h2c 8 quic
9 mws 10 wss 11 mwss 12 relay+tls"
echo "----------"
read numprotocol
case "$numprotocol" in
1)
protocol=ws
;;
2)
protocol=tls
;;
3)
protocol=https
;;
4)
protocol=http
;;
5)
protocol=kcp
;;
6)
protocol=h2
;;
7)
protocol=h2c
;;
8)
protocol=quic
;;
9)
protocol=mws
;;
10)
protocol=wss
;;
11)
protocol=mwss
;;
12)
protocol=relay+tls
;;
*)
echo "$protocol is error"
esac
}
outinstall(){
confstart
check_protocol
outinstallafter
check_outtls
installnom
conflast
}
ininstall(){
confstart
check_protocol
installbefore
confhalf
check_outtls
installafter
installnom
conflast
}
checknew(){
checknew=$(gost -V 2>&1|awk '{print $2}')
check_new_ver
echo "你的gost版本为:"$checknew""
echo -n 是否更新\(y/n\)\:
read checknewnum
if test $checknewnum = "y";then
Install_ct
else
exit 0
fi
}
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
bit=$(uname -m)
if test "$bit" != "x86_64"; then
echo "请输入你的芯片架构,/386/armv5/armv6/armv7/armv8"
read bit
else bit="amd64"
fi
}
Installation_dependency(){
gzip_ver=$(gzip -V)
if [[ -z ${gzip_ver} ]]; then
if [[ ${release} == "centos" ]]; then
yum update
yum install -y gzip
else
apt-get update
apt-get install -y gzip
fi
fi
}
check_root(){
[[ $EUID != 0 ]] && echo -e "${Error} 当前非ROOT账号(或没有ROOT权限),无法继续操作,请更换ROOT账号或使用 ${Green_background_prefix}sudo su${Font_color_suffix} 命令获取临时ROOT权限(执行后可能会提示输入当前账号的密码)。" && exit 1
}
check_new_ver(){
ct_new_ver=$(wget --no-check-certificate -qO- -t2 -T3 https://api.github.com/repos/ginuerzh/gost/releases/latest| grep "tag_name"| head -n 1| awk -F ":" '{print $2}'| sed 's/\"//g;s/,//g;s/ //g;s/v//g')
if [[ -z ${ct_new_ver} ]]; then
echo -e "${Error} gost 最新版本获取失败,请手动获取最新版本号[ https://github.com/ginuerzh/gost/releases ]"
read -e -p "请输入版本号 [ 格式 x.x.xx , 如 0.8.21 ] :" ct_new_ver
[[ -z "${ct_new_ver}" ]] && echo "取消..." && exit 1
else
echo -e "${Info} gost 目前最新版本为 ${ct_new_ver}"
fi
}
check_file(){
if test ! -d "/usr/lib/systemd/system/";then
`mkdir /usr/lib/systemd/system`
`chmod -R 777 /usr/lib/systemd/system`
fi
}
check_nor_file(){
`rm -rf "$(pwd)"/gost`
`rm -rf "$(pwd)"/gost.service`
`rm -rf "$(pwd)"/config.json`
`rm -rf "$(pwd)"/gost.sh`
`rm -rf /etc/gost`
`rm -rf /usr/lib/systemd/system/gost.service`
`rm -rf /usr/bin/gost`
}
Install_ct(){
check_root
check_nor_file
Installation_dependency
check_file
check_sys
check_new_ver
`rm -rf gost-linux-"$bit"-"$ct_new_ver".gz`
`wget --no-check-certificate https://github.com/ginuerzh/gost/releases/download/v"$ct_new_ver"/gost-linux-"$bit"-"$ct_new_ver".gz`
`gunzip gost-linux-"$bit"-"$ct_new_ver".gz`
`mv gost-linux-"$bit"-"$ct_new_ver" gost`
`mv gost /usr/bin/gost`
`chmod -R 777 /usr/bin/gost`
`wget --no-check-certificate https://www.fiisi.com/gost/gost.service && chmod -R 777 gost.service && mv gost.service /usr/lib/systemd/system`
`mkdir /etc/gost && wget --no-check-certificate https://www.fiisi.com/gost/config.json && mv config.json /etc/gost && chmod -R 777 /etc/gost`
`systemctl enable gost && systemctl restart gost`
echo "------------------------------"
if test -a /usr/bin/gost -a /usr/lib/systemctl/gost.service -a /etc/gost/config.json;then
echo "gost似乎安装成功"
`rm -rf "$(pwd)"/gost`
`rm -rf "$(pwd)"/gost.service`
`rm -rf "$(pwd)"/config.json`
`rm -rf "$(pwd)"/gost.sh`
else
echo "gost没有安装成功,可以到https://www.fiisi.com评论留言询问"
`rm -rf "$(pwd)"/gost`
`rm -rf "$(pwd)"/gost.service`
`rm -rf "$(pwd)"/config.json`
`rm -rf "$(pwd)"/gost.sh`
fi
}
Uninstall_ct(){
`rm -rf /usr/bin/gost`
`rm -rf /usr/lib/systemd/system/gost.service`
`rm -rf /etc/gost`
`rm -rf "$(pwd)"/gost.sh`
echo "gost已经成功删除"
}
Start_ct(){
`systemctl start gost`
echo "已启动"
}
Stop_ct(){
`systemctl stop gost`
echo "已停止"
}
Restart_ct(){
`systemctl restart gost`
echo "已重启"
}
echo && echo -e " gost 一键安装脚本 ${Red_font_prefix}[v${sh_ver}]${Font_color_suffix} 更新日期2020/3/13
---- fiisi | https://www.fiisi.com ----
${Green_font_prefix}1.${Font_color_suffix} 安装 gost
${Green_font_prefix}2.${Font_color_suffix} 更新 gost
${Green_font_prefix}3.${Font_color_suffix} 卸载 gost
————————————
${Green_font_prefix}4.${Font_color_suffix} 启动 gost
${Green_font_prefix}5.${Font_color_suffix} 停止 gost
${Green_font_prefix}6.${Font_color_suffix} 重启 gost
————————————
${Green_font_prefix}7.${Font_color_suffix} 配置gost
${Green_font_prefix}8.${Font_color_suffix} 重新配置gost
${Green_font_prefix}9.${Font_color_suffix} 输出gost配置
————————————" && echo
read -e -p " 请输入数字 [1-9]:" num
case "$num" in
1)
Install_ct
;;
2)
checknew
;;
3)
Uninstall_ct
;;
4)
Start_ct
;;
5)
Stop_ct
;;
6)
Restart_ct
;;
7)
rm -rf /etc/gost/config.json
check_inorout
`systemctl restart gost`
echo "your json"
echo "----------"
cat /etc/gost/config.json
;;
8)
rm -rf /etc/gost/config.json
check_inorout
`chmod -R 777 /etc/gost/config.json`
`systemctl restart gost`
echo "your json"
echo "----------"
cat /etc/gost/config.json
;;
9)
cat /etc/gost/config.json
;;
*)
echo "请输入正确数字 [1-9]"
;;
esac