ngrok_install.sh
5.87 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
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
shell_run_start=`date "+%Y-%m-%d %H:%M:%S"` #shell run start time
# Check if user is root
function rootness(){
if [[ $EUID -ne 0 ]]; then
echo "Error:This script must be run as root!" 1>&2
exit 1
fi
}
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
}
function fun_clangcn.com(){
echo ""
echo "#############################################################"
echo "# One click Install Ngrok"
echo "# Intro: http://clang.cn/blog/"
echo "#"
echo "# Author: Clang <admin@clangcn.com>"
echo "# version:2.0"
echo "#############################################################"
echo ""
}
# Check OS
function checkos(){
if [ ! -z "`cat /etc/issue | grep bian`" ];then
OS=Debian
elif [ ! -z "`cat /etc/issue | grep Ubuntu`" ];then
OS=Ubuntu
else
echo "Not support OS, Please reinstall OS and retry!"
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
}
function fun_set_ngrok_domain(){
# Set ngrok domain
NGROK_DOMAIN=""
read -p "Please input domain for Ngrok(e.g.:ngrok.clang.cn):" NGROK_DOMAIN
check_input
}
function fun_set_ngrok_pass(){
# Set ngrok pass
ngrok_pass=""
read -p "Please input password for Ngrok:" ngrok_pass
}
function check_input(){
# check ngrok domain
if [ "$NGROK_DOMAIN" = "" ]; then
echo -e "Your input is empty,please input again..."
fun_set_ngrok_domain
else
echo -e "Your domain: \033[41;37m "${NGROK_DOMAIN}" \033[0m."
fun_set_ngrok_pass
fi
# check ngrok pass
if [ "$ngrok_pass" = "" ]; then
echo -e "Your input is empty,please input again..."
fun_set_ngrok_pass
else
echo -e "Your ngrok pass: \033[41;37m "${ngrok_pass}" \033[0m."
echo -e "\033[32m \033[05mPress any key to start...\033[0m"
char=`get_char`
pre_install
fi
}
function config_runshell_ngrok(){
cat > /root/.ngrok_config.sh <<EOF
#!/bin/bash
# -------------config START-------------
dns="${NGROK_DOMAIN}"
pass="${ngrok_pass}"
http_port=80
https_port=443
remote_port=4443
srtCRT=server.crt
strKey=server.key
# -------------config END-------------
EOF
wget http://soft.clang.cn/ngrok/ngrok.sh -O /root/ngrok.sh
chmod 500 /root/ngrok.sh /root/.ngrok_config.sh
}
function fun_install_ngrok(){
clear
fun_clangcn.com
checkos
rootness
disable_selinux
fun_set_ngrok_domain
}
function pre_install(){
echo "install ngrok,please wait..."
apt-get update -y
apt-get install -y build-essential mercurial git nano screen curl openssl libcurl4-openssl-dev
cd /usr/local/
# rm -fr /usr/local/go/
# Download shadowsocks chkconfig file
if [ `getconf WORD_BIT` = '32' ] && [ `getconf LONG_BIT` = '64' ] ; then
if [ ! -s /usr/local/go/bin/go ]; then
git clone https://github.com/clangcn/go1.6.linux-amd64.git go
if [ ! -s /usr/local/go/bin/go ]; then
echo "Failed to download go1.6.linux-386 file!"
exit 1
fi
fi
else
if [ ! -s /usr/local/go/bin/go ]; then
git clone https://github.com/clangcn/go1.6.linux-386.git go
if [ ! -s /usr/local/go/bin/go ]; then
echo "Failed to download go1.6.linux-386 file!"
exit 1
fi
fi
fi
rm -fr /usr/local/go/.git/
rm -f /usr/bin/go /usr/bin/godoc /usr/bin/gofmt
ln -s /usr/local/go/bin/* /usr/bin/
cd /usr/local/
git clone https://github.com/clangcn/ngrok-1.7.git ngrok
export GOPATH=/usr/local/ngrok/
cd ngrok
openssl genrsa -out rootCA.key 2048
openssl req -x509 -new -nodes -key rootCA.key -subj "/CN=$NGROK_DOMAIN" -days 5000 -out rootCA.pem
openssl genrsa -out server.key 2048
openssl req -new -key server.key -subj "/CN=$NGROK_DOMAIN" -out server.csr
openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 5000
rm -f assets/client/tls/ngrokroot.crt assets/server/tls/snakeoil.crt assets/server/tls/snakeoil.key
cp rootCA.pem assets/client/tls/ngrokroot.crt
cp server.crt assets/server/tls/snakeoil.crt
cp server.key assets/server/tls/snakeoil.key
if [ `getconf WORD_BIT` = '32' ] && [ `getconf LONG_BIT` = '64' ] ; then
cd /usr/local/go/src
GOOS=linux GOARCH=amd64 ./make.bash
cd /usr/local/ngrok/
GOOS=linux GOARCH=amd64 make release-server
else
cd /usr/local/go/src
GOOS=linux GOARCH=386 ./make.bash
cd /usr/local/ngrok/
GOOS=linux GOARCH=386 make release-server
fi
if [ -s /usr/local/ngrok/bin/ngrokd ]; then
config_runshell_ngrok
clear
fun_clangcn.com
echo "Congratulations, Ngrok install completed!"
echo -e "Please run script \033[32m\033[01m/root/ngrok.sh\033[0m start ngrok."
echo -e "Your Domain: \033[32m\033[01m${NGROK_DOMAIN}\033[0m"
echo -e "Your Ngrok password: \033[32m\033[01m${ngrok_pass}\033[0m"
echo -e "Default http_port:\033[32m\033[01m80\033[0m,https_port:\033[32m\033[01m443\033[0m,remote_port:\033[32m\033[01m4443\033[0m"
echo "Welcome to visit:http://clang.cn/blog/"
echo "Enjoy it!"
else
echo ""
echo "Shadowsocks install failed! please view $HOME/ngrok_install.log"
exit 1
fi
shell_run_end=`date "+%Y-%m-%d %H:%M:%S"` #shell run end time
time_distance=$(expr $(date +%s -d "$shell_run_end") - $(date +%s -d "$shell_run_start"));
hour_distance=$(expr ${time_distance} / 3600) ;
hour_remainder=$(expr ${time_distance} % 3600) ;
min_distance=$(expr ${hour_remainder} / 60) ;
min_remainder=$(expr ${hour_remainder} % 60) ;
echo -e "Shell run time is \033[32m \033[01m${hour_distance} hour ${min_distance} min ${min_remainder} sec\033[0m"
}
rm -f $HOME/ngrok_install.log
fun_install_ngrok 2>&1 | tee $HOME/ngrok_install.log
exit 0