-
Notifications
You must be signed in to change notification settings - Fork 191
/
install-kcp-server.sh
executable file
·706 lines (688 loc) · 24.4 KB
/
install-kcp-server.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
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
#! /bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#===============================================================================================
# System Required: CentOS Debian or Ubuntu (32bit/64bit)
# Description: A tool to auto-compile & install kcptun-server on Linux
# Author: Clang
# Intro: http://koolshare.cn/forum-72-1.html
#===============================================================================================
version="3.6"
str_program_dir="/usr/local/kcp-server"
kcptun_releases="https://api.github.com/repos/xtaci/kcptun/releases/latest"
kcptun_api_filename="/tmp/kcptun_api_file.txt"
program_name="kcp-server"
kcp_init="/etc/init.d/${program_name}"
program_config_file="server-kcptun.json"
program_socks5_download="https://raw.githubusercontent.com/clangcn/kcp-server/master/socks5_latest"
program_socks5_filename="socks5"
socks_md5sum_file=md5sum.md
program_init_download_url=https://raw.githubusercontent.com/clangcn/kcp-server/master/kcptun-server.init
str_install_shell=https://raw.githubusercontent.com/clangcn/kcp-server/master/install-kcp-server.sh
function fun_clang(){
local clear_flag=""
clear_flag=$1
if [[ ${clear_flag} == "clear" ]]; then
clear
fi
echo ""
echo "+---------------------------------------------------------+"
echo "| kcptun for Linux Server, Written by Clang |"
echo "+---------------------------------------------------------+"
echo "| A tool to auto-compile & install kcptun-server on Linux |"
echo "+---------------------------------------------------------+"
echo "| Intro: http://koolshare.cn/forum-72-1.html |"
echo "+---------------------------------------------------------+"
echo ""
}
shell_update(){
fun_clang "clear"
echo "Check updates for shell..."
remote_shell_version=`wget --no-check-certificate -qO- ${str_install_shell} | sed -n '/'^version'/p' | cut -d\" -f2`
if [ ! -z ${remote_shell_version} ]; then
if [[ "${version}" != "${remote_shell_version}" ]];then
echo -e "${COLOR_GREEN}Found a new version,update now!!!${COLOR_END}"
echo
echo -n "Update shell ..."
if ! wget --no-check-certificate -qO $0 ${str_install_shell}; then
echo -e " [${COLOR_RED}failed${COLOR_END}]"
echo
exit 1
else
echo -e " [${COLOR_GREEN}OK${COLOR_END}]"
echo
echo -e "${COLOR_GREEN}Please Re-run${COLOR_END} ${COLOR_PINK}$0 ${clang_action}${COLOR_END}"
echo
exit 1
fi
exit 1
fi
fi
}
function fun_set_text_color(){
COLOR_RED='\E[1;31m'
COLOR_GREEN='\E[1;32m'
COLOR_YELOW='\E[1;33m'
COLOR_BLUE='\E[1;34m'
COLOR_PINK='\E[1;35m'
COLOR_PINKBACK_WHITEFONT='\033[45;37m'
COLOR_GREEN_LIGHTNING='\033[32m \033[05m'
COLOR_END='\E[0m'
}
# Check if user is root
function rootness(){
if [[ $EUID -ne 0 ]]; then
fun_clang
echo "Error:This script must be run as root!" 1>&2
exit 1
fi
}
function get_char(){
SAVEDSTTY=`stty -g`
stty -echo
stty cbreak
dd if=/dev/tty bs=1 count=1 2> /dev/null
stty -raw
stty echo
stty $SAVEDSTTY
}
# Check OS
function checkos(){
if grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then
OS=CentOS
elif grep -Eqi "Debian" /etc/issue || grep -Eq "Debian" /etc/*-release; then
OS=Debian
elif grep -Eqi "Ubuntu" /etc/issue || grep -Eq "Ubuntu" /etc/*-release; then
OS=Ubuntu
else
echo "Not support OS, Please reinstall OS and retry!"
exit 1
fi
}
# Get version
function getversion(){
if [[ -s /etc/redhat-release ]];then
grep -oE "[0-9.]+" /etc/redhat-release
else
grep -oE "[0-9.]+" /etc/issue
fi
}
# CentOS version
function centosversion(){
local code=$1
local version="`getversion`"
local main_ver=${version%%.*}
if [ $main_ver == $code ];then
return 0
else
return 1
fi
}
# Check OS bit
function check_os_bit(){
ARCHS=""
if [[ `getconf WORD_BIT` = '32' && `getconf LONG_BIT` = '64' ]] ; then
Is_64bit='y'
ARCHS="amd64"
else
Is_64bit='n'
ARCHS="386"
fi
}
function check_centosversion(){
if centosversion 5; then
echo "Not support CentOS 5.x, please change to CentOS 6,7 or Debian or Ubuntu and try again."
exit 1
fi
}
# Disable selinux
function disable_selinux(){
if [ -s /etc/selinux/config ] && grep 'SELINUX=enforcing' /etc/selinux/config; then
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
setenforce 0
fi
}
# Check port
function fun_check_port(){
port_flag=""
strCheckPort=""
input_port=""
port_flag="$1"
strCheckPort="$2"
if [ ${strCheckPort} -ge 1 ] && [ ${strCheckPort} -le 65535 ]; then
checkServerPort=`netstat -ntulp | grep "\b:${strCheckPort}\b"`
if [ -n "${checkServerPort}" ]; then
echo ""
echo -e "${COLOR_RED}Error:${COLOR_END} Port ${COLOR_GREEN}${strCheckPort}${COLOR_END} is ${COLOR_PINK}used${COLOR_END},view relevant port:"
netstat -ntulp | grep "\b:${strCheckPort}\b"
fun_input_${port_flag}_port
else
input_port="${strCheckPort}"
fi
else
echo "Input error! Please input correct numbers."
fun_input_${port_flag}_port
fi
}
# input port
function fun_input_kcptun_port(){
def_server_port="45678"
echo ""
echo -n -e "Please input ${COLOR_GREEN}Kcptun${COLOR_END} Port [1-65535]"
read -p "(Default Server Port: ${def_server_port}):" serverport
[ -z "${serverport}" ] && serverport="${def_server_port}"
fun_check_port "kcptun" "${serverport}"
}
# input port
function fun_input_socks5_port(){
def_socks5_port="12948"
}
# Check mtu
function fun_check_mtu(){
strInputMTU="$1"
if [ ${strInputMTU} -ge 900 ] && [ ${strInputMTU} -le 1400 ]; then
strInputMTU="${strInputMTU}"
echo "mtu ${strInputMTU}"
else
echo "Input error! Please input correct numbers."
fun_input_mtu
fi
}
# input port
function fun_input_mtu(){
def_mtu="1350"
echo ""
read -p "Please input mtu [900-1400],(Default mtu: ${def_mtu}):" strMTU
[ -z "${strMTU}" ] && strMTU="${def_mtu}"
fun_check_mtu "${strMTU}"
}
# ====== check packs ======
function check_net_tools(){
netstat -V 2>&1 >/dev/null
if [[ $? -gt 6 ]] ;then
echo " Run net-tools failed"
if [ "${OS}" == 'CentOS' ]; then
echo " Install centos net-tools ..."
yum -y install net-tools
else
echo " Install debian/ubuntu net-tools ..."
apt-get update -y
apt-get install -y net-tools
fi
fi
echo $result
}
function check_iptables(){
iptables -V >/dev/null 2>&1
if [[ $? -gt 1 ]] ;then
echo " Run iptables failed"
if [ "${OS}" == 'CentOS' ]; then
echo " Install centos iptables ..."
yum -y install iptables policycoreutils libpcap libpcap-devel
else
echo " Install debian/ubuntu iptables ..."
apt-get update -y
apt-get install -y iptables libpcap-dev
fi
fi
echo $result
}
function check_md5sum(){
md5sum --version >/dev/null 2>&1
if [[ $? -gt 6 ]] ;then
echo " Run md5sum failed"
fi
echo $result
}
# Random password
function fun_randstr(){
index=0
strRandomPass=""
for i in {a..z}; do arr[index]=$i; index=`expr ${index} + 1`; done
for i in {A..Z}; do arr[index]=$i; index=`expr ${index} + 1`; done
for i in {0..9}; do arr[index]=$i; index=`expr ${index} + 1`; done
for i in {1..16}; do strRandomPass="$strRandomPass${arr[$RANDOM%$index]}"; done
echo $strRandomPass
}
function fun_getVer(){
kcptun_version=""
kcptun_latest_release=""
kcptun_latest_filename=""
echo -e "Loading network version for kcptun, please wait..."
rm -f ${kcptun_api_filename}
wget --no-check-certificate -qO- ${kcptun_releases} > ${kcptun_api_filename}
if [ -s ${kcptun_api_filename} ]; then
kcptun_version=`cat ${kcptun_api_filename} | grep \"tag_name\" | cut -d\" -f4`
kcptun_latest_filename=`cat ${kcptun_api_filename} | grep \"name\" | grep kcptun-linux-${ARCHS} | cut -d\" -f4`
kcptun_latest_file_url=`cat ${kcptun_api_filename} | grep \"browser_download_url\" | grep ${kcptun_version}/kcptun-linux-${ARCHS} | cut -d\" -f4`
if [ -z "${kcptun_latest_file_url}" ]; then
echo -e "${COLOR_RED}Load network version failed!!!${COLOR_END}"
else
echo -e "Kcptun Latest release file ${COLOR_GREEN}${kcptun_latest_filename}${COLOR_END}"
fi
else
echo -e "${COLOR_RED}Load kcptun release file failed!!!${COLOR_END}"
fi
}
function fun_download_file(){
# download kcptun
if [ ! -s ${str_program_dir}/${program_name} ]; then
rm -f ${kcptun_latest_filename} server_linux_${ARCHS} client_linux_${ARCHS}
if ! wget --no-check-certificate -q ${kcptun_latest_file_url} -O ${kcptun_latest_filename}; then
echo "Failed to download ${kcptun_latest_filename} file!"
exit 1
fi
#check_md5sum
#kcptun_md5_web=$( cat ${kcptun_api_filename} | grep \"body\" | grep ${kcptun_latest_filename} | sed 's/\\n/\n/g' | sed -n '/'${kcptun_latest_filename}'/p' | awk '{print $4}' )
#down_local_md5=`md5sum ${kcptun_latest_filename} | awk '{print $1}'`
#if [ "${down_local_md5}" != "${kcptun_md5_web}" ]; then
# echo "md5sum not match,Failed to download ${kcptun_latest_filename} file!"
# exit 1
#fi
tar xzf ${kcptun_latest_filename}
mv server_linux_${ARCHS} ${str_program_dir}/${program_name}
rm -f ${kcptun_latest_filename} client_linux_${ARCHS} ${kcptun_api_filename}
fi
# download socks5 proxy
if [ ! -s ${str_program_dir}/${program_socks5_filename} ]; then
if ! wget --no-check-certificate -q ${program_socks5_download}/socks5_linux_${ARCHS} -O ${str_program_dir}/${program_socks5_filename}; then
echo "Failed to download socks5_linux_${ARCHS} file!"
exit 1
fi
socks5_md5_web=`wget --no-check-certificate -qO- ${program_socks5_download}/${socks_md5sum_file} | sed -n "/socks5_linux_${ARCHS}/p" | awk '{print $1}'`
socks5_local_md5=`md5sum ${str_program_dir}/${program_socks5_filename} | awk '{print $1}'`
if [ "${socks5_local_md5}" != "${socks5_md5_web}" ]; then
echo "md5sum not match,Failed to download ${program_socks5_filename} file!"
exit 1
fi
fi
chown root:root ${str_program_dir}/*
[ ! -x ${str_program_dir}/${program_name} ] && chmod 755 ${str_program_dir}/${program_name}
[ ! -x ${str_program_dir}/${program_socks5_filename} ] && chmod 755 ${str_program_dir}/${program_socks5_filename}
}
# ====== install kcptun server ======
function install_program_server_clang(){
fun_getVer
#config setting
echo -e "Loading You Server IP, please wait..."
defIP=$(wget -qO- ip.clang.cn | sed -r 's/\r//')
echo -e "You VPS IP:${COLOR_GREEN}${defIP}${COLOR_END}"
echo -e "${COLOR_YELOW}Please input your server setting:${COLOR_END}"
fun_input_kcptun_port
[ -n "${input_port}" ] && set_kcptun_port="${input_port}"
echo "kcptun port: ${set_kcptun_port}"
echo ""
default_kcptun_pwd=`fun_randstr`
read -p "Please input Password (Default Password: ${default_kcptun_pwd}):" set_kcptun_pwd
[ -z "${set_kcptun_pwd}" ] && set_kcptun_pwd="${default_kcptun_pwd}"
echo "kcptun password: ${set_kcptun_pwd}"
echo ""
echo "##### Please select crypt mode #####"
echo " 1: aes"
echo " 2: aes-128"
echo " 3: aes-192"
echo " 4: salsa20"
echo " 5: blowfish"
echo " 6: twofish"
echo " 7: cast5"
echo " 8: 3des"
echo " 9: tea"
echo "10: xtea"
echo "11: xor"
echo "#####################################################"
read -p "Enter your choice (1, 2, 3, ... or exit. default [1]): " strcrypt
case "${strcrypt}" in
1|[aA][eE][sS])
strcrypt="aes"
;;
2|[aA][eE][sS]-128)
strcrypt="aes-128"
;;
3|[aA][eE][sS]-192)
strcrypt="aes-192"
;;
4|[sS][aA][lL][sS][aA]20)
strcrypt="salsa20"
;;
5|[bB][lL][oO][wW][fF][iI][sS][hH])
strcrypt="blowfish"
;;
6|[tT][wW][oO][fF][iI][sS][hH])
strcrypt="twofish"
;;
7|[cC][aA][sS][tT]5)
strcrypt="cast5"
;;
8|3[dD][eE][sS])
strcrypt="3des"
;;
9|[tT][eE][aA])
strcrypt="tea"
;;
10|[xX][tT][eE][aA])
strcrypt="xtea"
;;
11|[xX][oO][rR])
strcrypt="xor"
;;
[eE][xX][iI][tT])
exit 1
;;
*)
strcrypt="aes"
;;
esac
echo "crypt mode: ${strcrypt}"
echo ""
echo "##### Please select fast mode #####"
echo "1: fast"
echo "2: fast2"
echo "3: fast3"
echo "4: normal"
echo "#####################################################"
read -p "Enter your choice (1, 2, 3, 4 or exit. default [2]): " strmode
case "${strmode}" in
1|[fF][aA][sS][tT])
strmode="fast"
;;
2|[fF][aA][sS][tT]2)
strmode="fast2"
;;
3|[fF][aA][sS][tT]3)
strmode="fast3"
;;
4|[nN][oO][rR][mM][aA][lL])
strmode="normal"
;;
[eE][xX][iI][tT])
exit 1
;;
*)
strmode="fast2"
;;
esac
echo "fast mode: ${strmode}"
fun_input_mtu
read -p "Please enable compression input Y, Disable compression input n,Default [yes]):" strcompression
case "${strcompression}" in
1|[yY]|[yY][eE][sS]|[tT][rR][uU][eE]|[eE][nN][aA][bB][lL][eE])
strcompression="enable"
set_kcptun_comp="false"
;;
0|[nN]|[nN][oO]|[fF][aA][lL][sS][eE]|[dD][iI][sS][aA][bB][lL][eE])
strcompression="disable"
set_kcptun_comp="true"
;;
*)
strcompression="enable"
set_kcptun_comp="false"
esac
echo "compression: ${strcompression}"
echo ""
fun_input_socks5_port
set_socks5_port="${def_socks5_port}"
echo "socks5 port: ${set_socks5_port}"
echo ""
set_iptables="n"
echo -e "\033[33mDo you want to set iptables?\033[0m"
read -p "(if you want please input: y,Default [no]):" set_iptables
case "${set_iptables}" in
[yY]|[yY][eE][sS])
echo "You will set iptables!"
set_iptables="y"
;;
[nN]|[nN][oO])
echo "You will NOT set iptables!"
set_iptables="n"
;;
*)
echo "The iptables is not set!"
set_iptables="n"
esac
echo ""
echo "============== Check your input =============="
echo -e "Socks5 Port: ${COLOR_GREEN}${set_socks5_port}${COLOR_END}"
echo -e "Kcptun Port: ${COLOR_GREEN}${set_kcptun_port}${COLOR_END}"
echo -e "Kcptun key : ${COLOR_GREEN}${set_kcptun_pwd}${COLOR_END}"
echo -e "crypt mode : ${COLOR_GREEN}${strcrypt}${COLOR_END}"
echo -e "fast mode : ${COLOR_GREEN}${strmode}${COLOR_END}"
echo -e "compression: ${COLOR_GREEN}${strcompression}${COLOR_END}"
echo -e "MTU : ${COLOR_GREEN}${strInputMTU}${COLOR_END}"
echo "=============================================="
echo ""
echo "Press any key to start...or Press Ctrl+c to cancel"
char=`get_char`
[ ! -d ${str_program_dir} ] && mkdir -p ${str_program_dir}
cd ${str_program_dir}
echo $PWD
# Config file
cat > ${str_program_dir}/${program_config_file}<<-EOF
{
"listen": ":${set_kcptun_port}",
"target": "127.0.0.1:${set_socks5_port}",
"key": "${set_kcptun_pwd}",
"crypt": "${strcrypt}",
"mode": "${strmode}",
"mtu": ${strInputMTU},
"sndwnd": 1024,
"rcvwnd": 1024,
"nocomp": ${set_kcptun_comp}
}
EOF
cat > ${str_program_dir}/client.json<<-EOF
{
"localaddr": ":1082",
"remoteaddr": "${defIP}:${set_kcptun_port}",
"key": "${set_kcptun_pwd}",
"crypt": "${strcrypt}",
"mode": "${strmode}",
"conn": 1,
"mtu": ${strInputMTU},
"sndwnd": 128,
"rcvwnd": 1024,
"nocomp": ${set_kcptun_comp}
}
EOF
rm -f ${str_program_dir}/${program_name} ${str_program_dir}/${program_socks5_filename}
echo -n "download ${program_name} & ${program_socks5_filename}..."
fun_download_file
echo " done"
echo -n "download ${kcp_init}..."
if [ ! -s ${kcp_init} ]; then
if ! wget --no-check-certificate -q ${program_init_download_url} -O ${kcp_init}; then
echo "Failed to download kcptun.init file!"
exit 1
fi
fi
echo " done"
[ ! -x ${kcp_init} ] && chmod +x ${kcp_init}
if [ "${OS}" == 'CentOS' ]; then
chmod +x ${kcp_init}
chkconfig --add ${program_name}
else
chmod +x ${kcp_init}
update-rc.d -f ${program_name} defaults
fi
if [ "$set_iptables" == 'y' ]; then
check_iptables
# iptables config
iptables -I INPUT -p udp --dport ${set_kcptun_port} -j ACCEPT
iptables -I INPUT -p tcp --dport ${set_socks5_port} -j ACCEPT
iptables -I INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
if [ "${OS}" == 'CentOS' ]; then
service iptables save
else
echo '#!/bin/bash' > /etc/network/if-post-down.d/iptables
echo 'iptables-save > /etc/iptables.rules' >> /etc/network/if-post-down.d/iptables
echo 'exit 0;' >> /etc/network/if-post-down.d/iptables
chmod +x /etc/network/if-post-down.d/iptables
echo '#!/bin/bash' > /etc/network/if-pre-up.d/iptables
echo 'iptables-restore < /etc/iptables.rules' >> /etc/network/if-pre-up.d/iptables
echo 'exit 0;' >> /etc/network/if-pre-up.d/iptables
chmod +x /etc/network/if-pre-up.d/iptables
fi
fi
[ -s ${kcp_init} ] && ln -s ${kcp_init} /usr/bin/${program_name}
${kcp_init} start
str_sndwnd=`sed -n '/sndwnd/p' ${str_program_dir}/server-kcptun.json | sed 's/[[:space:]]*//g;s/,//g' | cut -d: -f2`
str_rcvwnd=`sed -n '/rcvwnd/p' ${str_program_dir}/server-kcptun.json | sed 's/[[:space:]]*//g;s/,//g' | cut -d: -f2`
${str_program_dir}/${program_name} --version
fun_clang
#install successfully
echo ""
echo "Congratulations, kcp-server install completed!"
echo "=============================================="
echo -e "Your Server IP: ${COLOR_GREEN}${defIP}${COLOR_END}"
echo -e " Server Port: ${COLOR_GREEN}${set_kcptun_port}${COLOR_END}"
echo -e " Server Key: ${COLOR_GREEN}${set_kcptun_pwd}${COLOR_END}"
echo -e " crypt mode: ${COLOR_GREEN}${strcrypt}${COLOR_END}"
echo -e " fast mode: ${COLOR_GREEN}${strmode}${COLOR_END}"
echo -e " compression: ${COLOR_GREEN}${strcompression}${COLOR_END}"
echo -e " MTU: ${COLOR_GREEN}${strInputMTU}${COLOR_END}"
echo -e " sndwnd: ${COLOR_GREEN}${str_sndwnd}${COLOR_END}"
echo -e " rcvwnd: ${COLOR_GREEN}${str_rcvwnd}${COLOR_END}"
echo "=============================================="
echo ""
echo -e "kcptun status manage: ${COLOR_PINKBACK_WHITEFONT}${kcp_init}${COLOR_END} {${COLOR_GREEN}start|stop|restart|status|config|version${COLOR_END}}"
echo -e "Example:"
echo -e " start: ${COLOR_PINK}${kcp_init}${COLOR_END} ${COLOR_GREEN}start${COLOR_END}"
echo -e " stop: ${COLOR_PINK}${kcp_init}${COLOR_END} ${COLOR_GREEN}stop${COLOR_END}"
echo -e "restart: ${COLOR_PINK}${kcp_init}${COLOR_END} ${COLOR_GREEN}restart${COLOR_END}"
}
############################### install function ##################################
function pre_install_clang(){
fun_clang "clear"
checkos
check_centosversion
check_os_bit
disable_selinux
check_net_tools
if [ -s ${str_program_dir}/${program_name} ] && [ -s ${kcp_init} ]; then
echo "kcptun is installed!"
else
install_program_server_clang
fi
}
############################### configure function ##################################
function configure_program_server_clang(){
if [ -s ${str_program_dir}/${program_config_file} ]; then
vi ${str_program_dir}/${program_config_file}
else
echo "kcptun configuration file not found!"
fi
}
############################### uninstall function ##################################
function uninstall_program_server_clang(){
fun_clang "clear"
if [ -s ${kcp_init} ] || [ -s ${str_program_dir}/${program_name} ] ; then
echo "============== Uninstall ${program_name} =============="
save_config="n"
echo -e "${COLOR_YELOW}Do you want to keep the configuration file?${COLOR_END}"
read -p "(if you want please input: y,Default [no]):" save_config
case "${save_config}" in
[yY]|[yY][eE][sS])
echo ""
echo "You will keep the configuration file!"
save_config="y"
;;
[nN]|[nN][oO])
echo ""
echo "You will NOT to keep the configuration file!"
save_config="n"
;;
*)
echo ""
echo "will NOT to keep the configuration file!"
save_config="n"
esac
checkos
${kcp_init} stop
if [ "${OS}" == 'CentOS' ]; then
chkconfig --del ${program_name}
else
update-rc.d -f ${program_name} remove
fi
rm -f /usr/bin/${program_name} ${kcp_init} /var/run/${program_name}.pid /root/${program_name}-install.log /root/${program_name}-update.log
if [ "${save_config}" == 'n' ]; then
rm -fr ${str_program_dir}
else
rm -f ${str_program_dir}/${program_name} ${str_program_dir}/${program_name}.log
fi
echo "${program_name} uninstall success!"
else
echo "${program_name} Not install!"
fi
echo ""
}
############################### update function ##################################
function update_program_server_clang(){
fun_clang "clear"
echo "============== Update ${program_name} =============="
checkos
check_centosversion
check_os_bit
install_shell=${strPath}
if [ -s ${kcp_init} ] || [ -s ${str_program_dir}/${program_name} ] ; then
remote_init_version=`wget --no-check-certificate -qO- ${program_init_download_url} | sed -n '/'^version'/p' | cut -d\" -f2`
local_init_version=`sed -n '/'^version'/p' ${kcp_init} | cut -d\" -f2`
if [ ! -z ${remote_init_version} ];then
if [[ "${local_init_version}" < "${remote_init_version}" ]];then
echo "========== Update ${program_name} ${kcp_init} =========="
if ! wget --no-check-certificate ${program_init_download_url} -O ${kcp_init}; then
echo "Failed to download ${program_name}.init file!"
exit 1
else
echo -e "${COLOR_GREEN}${kcp_init} Update successfully !!!${COLOR_END}"
fi
fi
fi
[ ! -d ${str_program_dir} ] && mkdir -p ${str_program_dir}
fun_getVer
${kcp_init} stop
sleep 1
rm -f /usr/bin/${program_name} ${str_program_dir}/${program_name} ${str_program_dir}/${program_socks5_filename}
fun_download_file
if [ "${OS}" == 'CentOS' ]; then
chmod +x ${kcp_init}
chkconfig --add ${program_name}
else
chmod +x ${kcp_init}
update-rc.d -f ${program_name} defaults
fi
[ -s ${kcp_init} ] && ln -s ${kcp_init} /usr/bin/${program_name}
[ ! -x ${kcp_init} ] && chmod 755 ${kcp_init}
${kcp_init} start
${str_program_dir}/${program_name} -version
echo "${program_name} update success!"
else
echo "${program_name} Not install!"
fi
echo ""
}
clear
strPath=`pwd`
rootness
fun_set_text_color
shell_update
# Initialization
action=$1
[ -z $1 ]
case "$action" in
install)
pre_install_clang 2>&1 | tee /root/${program_name}-install.log
;;
config)
configure_program_server_clang
;;
uninstall)
uninstall_program_server_clang 2>&1 | tee /root/${program_name}-uninstall.log
;;
update)
update_program_server_clang 2>&1 | tee /root/${program_name}-update.log
;;
*)
fun_clang "clear"
echo "Arguments error! [${action} ]"
echo "Usage: `basename $0` {install|uninstall|update|config}"
;;
esac