-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxray.sh
449 lines (433 loc) · 14 KB
/
xray.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
#!/bin/bash
blue(){
echo -e "\033[34m\033[01m$1\033[0m"
}
green(){
echo -e "\033[32m\033[01m$1\033[0m"
}
red(){
echo -e "\033[31m\033[01m$1\033[0m"
}
yellow(){
echo -e "\033[33m\033[01m$1\033[0m"
}
logcmd(){
eval $1 | tee -ai /var/atrandys.log
}
source /etc/os-release
RELEASE=$ID
VERSION=$VERSION_ID
cat >> /usr/src/atrandys.log <<-EOF
== Script: atrandys/xray/install.sh
== Time : $(date +"%Y-%m-%d %H:%M:%S")
== OS : $RELEASE $VERSION
== Kernel: $(uname -r)
== User : $(whoami)
EOF
sleep 2s
check_release(){
green "$(date +"%Y-%m-%d %H:%M:%S") ==== 检查系统版本"
if [ "$RELEASE" == "centos" ]; then
systemPackage="yum"
yum install -y wget
if [ "$VERSION" == "6" ] ;then
red "$(date +"%Y-%m-%d %H:%M:%S") - 暂不支持CentOS 6.\n== Install failed."
exit
fi
if [ "$VERSION" == "5" ] ;then
red "$(date +"%Y-%m-%d %H:%M:%S") - 暂不支持CentOS 5.\n== Install failed."
exit
fi
if [ -f "/etc/selinux/config" ]; then
CHECK=$(grep SELINUX= /etc/selinux/config | grep -v "#")
if [ "$CHECK" == "SELINUX=enforcing" ]; then
green "$(date +"%Y-%m-%d %H:%M:%S") - SELinux状态非disabled,关闭SELinux."
setenforce 0
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
#loggreen "SELinux is not disabled, add port 80/443 to SELinux rules."
#loggreen "==== Install semanage"
#logcmd "yum install -y policycoreutils-python"
#semanage port -a -t http_port_t -p tcp 80
#semanage port -a -t http_port_t -p tcp 443
#semanage port -a -t http_port_t -p tcp 37212
#semanage port -a -t http_port_t -p tcp 37213
elif [ "$CHECK" == "SELINUX=permissive" ]; then
green "$(date +"%Y-%m-%d %H:%M:%S") - SELinux状态非disabled,关闭SELinux."
setenforce 0
sed -i 's/SELINUX=permissive/SELINUX=disabled/g' /etc/selinux/config
fi
fi
firewall_status=`firewall-cmd --state`
if [ "$firewall_status" == "running" ]; then
green "$(date +"%Y-%m-%d %H:%M:%S") - FireWalld状态非disabled,添加80/443到FireWalld rules."
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --zone=public --add-port=443/tcp --permanent
firewall-cmd --reload
fi
while [ ! -f "nginx-release-centos-7-0.el7.ngx.noarch.rpm" ]
do
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
if [ ! -f "nginx-release-centos-7-0.el7.ngx.noarch.rpm" ]; then
red "$(date +"%Y-%m-%d %H:%M:%S") - 下载nginx rpm包失败,继续重试..."
fi
done
rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm --force --nodeps
#logcmd "rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm --force --nodeps"
#loggreen "Prepare to install nginx."
#yum install -y libtool perl-core zlib-devel gcc pcre* >/dev/null 2>&1
yum install -y epel-release
elif [ "$RELEASE" == "ubuntu" ]; then
systemPackage="apt-get"
if [ "$VERSION" == "14" ] ;then
red "$(date +"%Y-%m-%d %H:%M:%S") - 暂不支持Ubuntu 14.\n== Install failed."
exit
fi
if [ "$VERSION" == "12" ] ;then
red "$(date +"%Y-%m-%d %H:%M:%S") - 暂不支持Ubuntu 12.\n== Install failed."
exit
fi
ufw_status=`systemctl status ufw | grep "Active: active"`
if [ -n "$ufw_status" ]; then
ufw allow 80/tcp
ufw allow 443/tcp
ufw reload
fi
apt-get update >/dev/null 2>&1
elif [ "$RELEASE" == "debian" ]; then
systemPackage="apt-get"
ufw_status=`systemctl status ufw | grep "Active: active"`
if [ -n "$ufw_status" ]; then
ufw allow 80/tcp
ufw allow 443/tcp
ufw reload
fi
apt-get update >/dev/null 2>&1
else
red "$(date +"%Y-%m-%d %H:%M:%S") - 当前系统不被支持. \n== Install failed."
exit
fi
}
check_port(){
green "$(date +"%Y-%m-%d %H:%M:%S") ==== 检查端口"
$systemPackage -y install net-tools
Port80=`netstat -tlpn | awk -F '[: ]+' '$1=="tcp"{print $5}' | grep -w 80`
Port443=`netstat -tlpn | awk -F '[: ]+' '$1=="tcp"{print $5}' | grep -w 443`
if [ -n "$Port80" ]; then
process80=`netstat -tlpn | awk -F '[: ]+' '$5=="80"{print $9}'`
red "$(date +"%Y-%m-%d %H:%M:%S") - 80端口被占用,占用进程:${process80}\n== Install failed."
exit 1
fi
if [ -n "$Port443" ]; then
process443=`netstat -tlpn | awk -F '[: ]+' '$5=="443"{print $9}'`
red "$(date +"%Y-%m-%d %H:%M:%S") - 443端口被占用,占用进程:${process443}.\n== Install failed."
exit 1
fi
}
install_nginx(){
green "$(date +"%Y-%m-%d %H:%M:%S") ==== 安装nginx"
$systemPackage install -y nginx
if [ ! -d "/etc/nginx" ]; then
red "$(date +"%Y-%m-%d %H:%M:%S") - 看起来nginx没有安装成功,请先使用脚本中的删除xray功能,然后再重新安装.\n== Install failed."
exit 1
fi
cat > /etc/nginx/nginx.conf <<-EOF
user root;
worker_processes 1;
#error_log /etc/nginx/error.log warn;
#pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '\$remote_addr - \$remote_user [\$time_local] "\$request" '
'\$status \$body_bytes_sent "\$http_referer" '
'"\$http_user_agent" "\$http_x_forwarded_for"';
#access_log /etc/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 120;
client_max_body_size 20m;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
EOF
cat > /etc/nginx/conf.d/default.conf<<-EOF
server {
listen 127.0.0.1:37212;
server_name $your_domain;
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
server {
listen 127.0.0.1:37213 http2;
server_name $your_domain;
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
server {
listen 0.0.0.0:80;
server_name $your_domain;
root /usr/share/nginx/html/;
index index.php index.html;
#rewrite ^(.*)$ https://\$host\$1 permanent;
}
EOF
green "$(date +"%Y-%m-%d %H:%M:%S") ==== 检测nginx配置文件"
nginx -t
#CHECK=$(grep SELINUX= /etc/selinux/config | grep -v "#")
#if [ "$CHECK" != "SELINUX=disabled" ]; then
# loggreen "设置Selinux允许nginx"
# cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -M mynginx
# semodule -i mynginx.pp
#fi
systemctl enable nginx.service
systemctl restart nginx.service
green "$(date +"%Y-%m-%d %H:%M:%S") - 使用acme.sh申请https证书."
curl https://get.acme.sh | sh
~/.acme.sh/acme.sh --issue -d $your_domain --webroot /usr/share/nginx/html/
if test -s /root/.acme.sh/$your_domain/fullchain.cer; then
green "$(date +"%Y-%m-%d %H:%M:%S") - 申请https证书成功."
else
cert_failed="1"
red "$(date +"%Y-%m-%d %H:%M:%S") - 申请证书失败,请尝试手动申请证书."
fi
install_xray
}
install_xray(){
green "$(date +"%Y-%m-%d %H:%M:%S") ==== 安装xray"
mkdir /usr/local/etc/xray/
mkdir /usr/local/etc/xray/cert
bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh)
cd /usr/local/etc/xray/
rm -f config.json
v2uuid=$(cat /proc/sys/kernel/random/uuid)
cat > /usr/local/etc/xray/config.json<<-EOF
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": 443,
"protocol": "vless",
"settings": {
"clients": [
{
"id": "$v2uuid",
"level": 0,
"email": "a@b.com",
"flow":"xtls-rprx-direct"
}
],
"decryption": "none",
"fallbacks": [
{
"dest": 37212
},
{
"alpn": "h2",
"dest": 37213
}
]
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"serverName": "$your_domain",
"alpn": [
"h2",
"http/1.1"
],
"certificates": [
{
"certificateFile": "/usr/local/etc/xray/cert/fullchain.cer",
"keyFile": "/usr/local/etc/xray/cert/private.key"
}
]
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": { }
}
]
}
EOF
cat > /usr/local/etc/xray/client.json<<-EOF
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"port": 1080,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "$your_domain",
"port": 443,
"users": [
{
"id": "$v2uuid",
"flow": "xtls-rprx-direct",
"encryption": "none",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "xtls",
"xtlsSettings": {
"serverName": "$your_domain"
}
}
}
]
}
EOF
if [ -d "/usr/share/nginx/html/" ]; then
cd /usr/share/nginx/html/ && rm -f ./*
wget https://github.com/atrandys/trojan/raw/master/fakesite.zip
unzip -o fakesite.zip
fi
systemctl enable xray.service
sed -i "s/User=nobody/User=root/;" /etc/systemd/system/xray.service
systemctl daemon-reload
~/.acme.sh/acme.sh --installcert -d $your_domain \
--key-file /usr/local/etc/xray/cert/private.key \
--fullchain-file /usr/local/etc/xray/cert/fullchain.cer \
--reloadcmd "chmod -R 777 /usr/local/etc/xray/cert && systemctl restart xray.service"
cat > /usr/local/etc/xray/myconfig.json<<-EOF
{
地址:${your_domain}
端口:443
id:${v2uuid}
加密:none
流控:xtls-rprx-direct
别名:自定义
传输协议:tcp
伪装类型:none
底层传输:xtls
跳过证书验证:false
}
EOF
green "== 安装完成."
if [ "$cert_failed" == "1" ]; then
green "======nginx信息======"
red "申请证书失败,请尝试手动申请证书."
fi
green "==xray客户端配置文件存放路径=="
green "/usr/local/etc/xray/client.json"
echo
echo
green "==xray配置参数=="
cat /usr/local/etc/xray/myconfig.json
green "本次安装检测信息如下,如nginx与xray正常启动,表示安装正常:"
ps -aux | grep -e nginx -e xray
}
check_domain(){
$systemPackage install -y wget curl unzip
blue "Eenter your domain:"
read your_domain
real_addr=`ping ${your_domain} -c 1 | sed '1{s/[^(]*(//;s/).*//;q}'`
local_addr=`curl ipv4.icanhazip.com`
if [ $real_addr == $local_addr ] ; then
green "域名解析地址与VPS IP地址匹配."
install_nginx
else
red "域名解析地址与VPS IP地址不匹配."
read -p "强制安装?请输入 [Y/n] :" yn
[ -z "${yn}" ] && yn="y"
if [[ $yn == [Yy] ]]; then
sleep 1s
install_nginx
else
exit 1
fi
fi
}
remove_xray(){
green "$(date +"%Y-%m-%d %H:%M:%S") - 删除xray."
systemctl stop xray.service
systemctl disable xray.service
systemctl stop nginx
systemctl disable nginx
if [ "$RELEASE" == "centos" ]; then
yum remove -y nginx
else
apt-get -y autoremove nginx
apt-get -y --purge remove nginx
apt-get -y autoremove && apt-get -y autoclean
find / | grep nginx | sudo xargs rm -rf
fi
rm -rf /usr/local/share/xray/ /usr/local/etc/xray/
rm -f /usr/local/bin/xray
rm -rf /etc/systemd/system/xray*
rm -rf /etc/nginx
rm -rf /usr/share/nginx/html/*
rm -rf /root/.acme.sh/
green "nginx & xray has been deleted."
}
function start_menu(){
clear
green " ====================================================="
green " 描述:xray + tcp + xtls一键安装脚本"
green " 系统:支持centos7/debian9+/ubuntu16.04+ "
green " 作者:atrandys www.atrandys.com"
green " ====================================================="
echo
green " 1. 安装 xray + tcp + xtls"
green " 2. 更新 xray"
red " 3. 删除 xray"
green " 4. 查看配置参数"
yellow " 0. Exit"
echo
read -p "输入数字:" num
case "$num" in
1)
check_release
check_port
check_domain
;;
2)
bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh)
systemctl restart xray
;;
3)
remove_xray
;;
4)
cat /usr/local/etc/xray/myconfig.json
;;
0)
exit 1
;;
*)
clear
red "Enter a correct number"
sleep 2s
start_menu
;;
esac
}
start_menu