forked from ooxoop/gost-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gost.sh
326 lines (298 loc) · 10.8 KB
/
gost.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
#!/usr/bin/env bash
Folder="/usr/local/gost"
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}"
check_sys(){
if [[ -f /etc/redhat-release ]]; then
yum install python3 -y
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
apt-get install python3 -y
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
apt-get install python3 -y
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
yum install python3 -y
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
apt-get install python3 -y
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
apt-get install python3 -y
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
yum install python3 -y
release="centos"
fi
bit=`uname -m`
}
check_pid(){
PID=`ps -ef | grep "gost" | grep -v "grep" | grep -v "gost.sh"| grep -v "init.d" | grep -v "service" | awk '{print $2}'`
}
get_ip(){
ip=$(wget -qO- -t1 -T2 ipinfo.io/ip)
if [[ -z "${ip}" ]]; then
ip=$(wget -qO- -t1 -T2 api.ip.sb/ip)
if [[ -z "${ip}" ]]; then
ip=$(wget -qO- -t1 -T2 members.3322.org/dyndns/getip)
if [[ -z "${ip}" ]]; then
ip="VPS_IP"
fi
fi
fi
}
check_new_ver(){
echo -e "${Info} 正在获取 Gost 最新版本"
if [[ -z ${gost_new_ver} ]]; then
gost_new_ver=$(wget --no-check-certificate -qO- https://api.github.com/repos/ginuerzh/gost/releases | grep -o '"tag_name": ".*"' |head -n 1| sed 's/"//g;s/v//g' | sed 's/tag_name: //g')
if [[ -z ${gost_new_ver} ]]; then
echo -e "${Error} gost 最新版本获取失败,请手动获取最新版本号[ https://github.com/ginuerzh/gost/releases ]"
read -e -p "请输入版本号 [ 格式如 1.34.0 ] :" gost_new_ver
[[ -z "${gost_new_ver}" ]] && echo "取消..." && exit 1
else
echo -e "${Info} 检测到 gost 最新版本为 [ ${gost_new_ver} ]"
fi
else
echo -e "${Info} 即将下载 gost 版本: [ ${gost_new_ver} ]"
fi
}
check_install_status(){
[[ ! -e "/usr/bin/gost" ]] && echo -e "${Error} gost 没有安装,请检查 !" && exit 1
[[ ! -e "/root/.gost/config.json" ]] && echo -e "${Error} gost 配置文件不存在,请检查 !" && [[ $1 != "un" ]] && exit 1
}
download_gost(){
if [[ ${bit} == "x86_64" ]]; then
bit="amd64"
elif [[ ${bit} == "i386" || ${bit} == "i686" ]]; then
bit="386"
else
bit="arm64"
fi
wget -N --no-check-certificate "https://github.com/ginuerzh/gost/releases/download/v${gost_new_ver}/gost-linux-${bit}-${gost_new_ver}.gz"
gost_name="gost-linux-${bit}-${gost_new_ver}"
[[ ! -s "${gost_name}.gz" ]] && echo -e "${Error} gost 压缩包下载失败 !" && exit 1
gzip -d "${gost_name}.gz"
[[ ! -e "/root/${gost_name}" ]] && echo -e "${Error} gost 解压失败 !" && exit 1
mkdir "${Folder}" && mv "${gost_name}" "${Folder}/gost"
[[ ! -e "${Folder}" ]] && echo -e "${Error} gost 文件夹重命名失败 !" && rm -rf "/usr/local/${gost_name}" && exit 1
cd "${Folder}"
chmod +x gost
cp gost /usr/bin/gost
mkdir /root/.gost
wget --no-check-certificate https://raw.githubusercontent.com/ooxoop/gost-install/master/config.json.example -O /root/.gost/config.json
echo -e "${Info} gost 主程序安装完毕!开始配置服务文件..."
}
service_gost(){
if [[ ${release} = "centos" ]]; then
if ! wget --no-check-certificate https://raw.githubusercontent.com/ooxoop/gost-install/master/gost_centos.service -O /etc/init.d/gost; then
echo -e "${Error} gost服务 管理脚本下载失败 !" && exit 1
fi
chmod +x /etc/init.d/gost
chkconfig --add gost
chkconfig gost on
else
if ! wget --no-check-certificate https://raw.githubusercontent.com/ooxoop/gost-install/master/gost_debian.service -O /etc/init.d/gost; then
echo -e "${Error} gost服务 管理脚本下载失败 !" && exit 1
fi
chmod +x /etc/init.d/gost
update-rc.d -f gost defaults
fi
echo -e "${Info} gost服务 管理脚本安装完毕 !"
}
config_gost_l(){
echo -e "请选择你要进行的操作
${Green_font_prefix}1.${Font_color_suffix} 清除并重新设置 -L参数
${Green_font_prefix}2.${Font_color_suffix} 增加 -L参数" && echo
read -e -p "(默认:取消) " l_code
[[ -z "${l_code}" ]] && l_code="0"
if [[ ${l_code} == "1" ]]; then
if [ `grep -c "ServeNodes" /root/.gost/config.json` -eq '0' ]; then
echo "配置文件中ServeNodes不存在"
else
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));del j['ServeNodes'];json.dump(j,open(\"/root/.gost/config.json\",'w'))"
config_gost_l_add
fi
elif [[ ${l_code} == "2" ]]; then
config_gost_l_add
else
exit 1
fi
echo -e "${Info} -L参数 已设置完毕"
}
config_gost_f(){
echo -e "请选择你要进行的操作
${Green_font_prefix}1.${Font_color_suffix} 清除并重新设置 -F参数
${Green_font_prefix}2.${Font_color_suffix} 增加 -F参数
${Green_font_prefix}3.${Font_color_suffix} 不使用 -F参数" && echo
read -e -p "(默认:取消) " f_code
[[ -z "${f_code}" ]] && f_code="0"
if [[ ${f_code} == "1" ]]; then
if [ `grep -c "ChainNodes" /root/.gost/config.json` -eq '0' ]; then
echo "配置文件中ChainNodes不存在"
else
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));del j['ChainNodes'];json.dump(j,open(\"/root/.gost/config.json\",'w'))"
config_gost_f_add
fi
elif [[ ${f_code} == "2" ]]; then
config_gost_f_add
elif [[ ${f_code} == "3" ]]; then
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));del j['ChainNodes'];json.dump(j,open(\"/root/.gost/config.json\",'w'))"
else
exit 1
fi
}
config_gost_l_add(){
echo -e "请输入 -L 参数"
read -e -p "(默认 - [tcp://:6666]): " param_l
[[ -z "$param_l" ]] && param_l="tcp://:6666"
if [ `grep -c "ServeNodes" /root/.gost/config.json` -eq '0' ]; then
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));a = {'ServeNodes':['$param_l']};j.update(a);print (j['ServeNodes']);json.dump(j,open(\"/root/.gost/config.json\",'w'))" && echo -e "${Info} 配置更新成功"
else
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));j['ServeNodes'].append( \"$param_l\");print (j['ServeNodes']);json.dump(j,open(\"/root/.gost/config.json\",'w'))" && echo -e "${Info} 配置更新成功"
fi
echo -e "是否继续添加 -L 参数 (0:取消/1:继续)"
read -e -p "(默认:取消) " l_add_code
[[ -z "${l_add_code}" ]] && l_add_code="0"
if [[ ${l_add_code} == "1" ]]; then
param_l="tcp://:6666"
config_gost_l_add
fi
}
config_gost_f_add(){
echo -e "请输入 -F 参数"
read -e -p "(默认 - [tcp://:6666]): " param_f
[[ -z "$param_f" ]] && param_f="tcp://:6666"
if [ `grep -c "ChainNodes" /root/.gost/config.json` -eq '0' ]; then
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));a = {'ChainNodes':['$param_f']};j.update(a);print (j['ServeNodes']);json.dump(j,open(\"/root/.gost/config.json\",'w'))" && echo -e "${Info} 配置更新成功"
else
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));j['ChainNodes'].append( \"$param_f\");print (j['ServeNodes']);json.dump(j,open(\"/root/.gost/config.json\",'w'))" && echo -e "${Info} 配置更新成功"
fi
echo -e "是否继续添加 -F 参数 (0:取消/1:继续)"
read -e -p "(默认:取消) " f_add_code
[[ -z "${f_add_code}" ]] && f_add_code="0"
if [[ ${f_add_code} == "1" ]]; then
param_f="tcp://:6666"
config_gost_f_add
fi
}
View_config(){
echo -e "${Info} -L参数为"
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));print (j['ServeNodes'])"
if [ `grep -c "ChainNodes" /root/.gost/config.json` -eq '0' ]; then
exit 1
else
echo -e "${Info} -F参数为"
python3 -c "import json;j = (json.load(open(\"/root/.gost/config.json\",'r')));print (j['ChainNodes'])"
fi
}
Set_config(){
echo && echo -e "gost 配置菜单
————————————————————————
${Green_font_prefix}1.${Font_color_suffix} 设置-L参数
${Green_font_prefix}2.${Font_color_suffix} 设置-F参数" && echo
read -e -p "(默认:取消) " config_code
[[ -z "${config_code}" ]] && config_code="0"
if [[ ${config_code} == "1" ]]; then
config_gost_l
Restart_gost
elif [[ ${config_code} == "2" ]]; then
config_gost_f
Restart_gost
else
exit 1
fi
}
Install_gost(){
check_sys
check_new_ver
download_gost
service_gost
echo -e "${Info} gost 已安装完成!请重新运行脚本进行配置~"
}
Remove_gost(){
Stop_gost
rm -rf "$Folder" && rm -rf /root/.gost && rm -rf /etc/init.d/gost
echo -e "${Info} gost 已卸载完成!"
}
Start_gost(){
check_install_status
check_pid
[[ ! -z ${PID} ]] && echo -e "${Error} gost 正在运行,请检查 !" && exit 1
/etc/init.d/gost start
View_config
}
Stop_gost(){
check_install_status
check_pid
[[ -z ${PID} ]] && echo -e "${Error} gost 没有运行,请检查 !" && exit 1
/etc/init.d/gost stop
}
Restart_gost(){
check_install_status
check_pid
[[ ! -z ${PID} ]] && /etc/init.d/gost stop
/etc/init.d/gost start
View_config
}
echo && echo -e " gost 一键安装管理脚本beta ${Red_font_prefix}[v${sh_ver}]${Font_color_suffix}
-- 四分体 | sifenti.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} 设置 快速配置
${Green_font_prefix} 7.${Font_color_suffix} 查看 当前配置
${Green_font_prefix} 8.${Font_color_suffix} 打开 配置文件
${Green_font_prefix} 9.${Font_color_suffix} 日志 输出日志
————————————————————————" && echo
if [[ -e "/usr/local/gost/gost" ]]; then
check_pid
if [[ ! -z "${PID}" ]]; then
echo -e " 当前状态: ${Green_font_prefix}已安装${Font_color_suffix} 并 ${Green_font_prefix}已启动${Font_color_suffix}"
else
echo -e " 当前状态: ${Green_font_prefix}已安装${Font_color_suffix} 但 ${Red_font_prefix}未启动${Font_color_suffix}"
fi
else
echo -e " 当前状态: ${Red_font_prefix}未安装${Font_color_suffix}"
fi
echo
read -e -p " 请输入数字 [0-10]: " num
case "$num" in
1)
Install_gost
;;
2)
Remove_gost
;;
3)
Start_gost
;;
4)
Stop_gost
;;
5)
Restart_gost
;;
6)
Set_config
;;
7)
View_config
;;
8)
vi /root/.gost/config.json
Restart_gost
;;
9)
tail -n 50 /root/.gost/gost.log
;;
*)
echo "请输入正确数字 [0-10]"
;;
esac