-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathxray_2go.sh
1101 lines (1022 loc) · 37.4 KB
/
xray_2go.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
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
# 定义颜色
re="\033[0m"
red="\033[1;91m"
green="\e[1;32m"
yellow="\e[1;33m"
purple="\e[1;35m"
skybule="\e[1;36m"
red() { echo -e "\e[1;91m$1\033[0m"; }
green() { echo -e "\e[1;32m$1\033[0m"; }
yellow() { echo -e "\e[1;33m$1\033[0m"; }
purple() { echo -e "\e[1;35m$1\033[0m"; }
skyblue() { echo -e "\e[1;36m$1\033[0m"; }
reading() { read -p "$(red "$1")" "$2"; }
# 定义常量
server_name="xray"
work_dir="/etc/xray"
config_dir="${work_dir}/config.json"
client_dir="${work_dir}/url.txt"
# 定义环境变量
export UUID=${UUID:-$(cat /proc/sys/kernel/random/uuid)}
export PORT=${PORT:-$(shuf -i 1000-60000 -n 1)}
export ARGO_PORT=${ARGO_PORT:-'8080'}
export CFIP=${CFIP:-'www.visa.com.tw'}
export CFPORT=${CFPORT:-'443'}
# 检查是否为root下运行
[[ $EUID -ne 0 ]] && red "请在root用户下运行脚本" && exit 1
# 检查 xray 是否已安装
check_xray() {
if [ -f "${work_dir}/${server_name}" ]; then
if [ -f /etc/alpine-release ]; then
rc-service xray status | grep -q "started" && green "running" && return 0 || yellow "not running" && return 1
else
[ "$(systemctl is-active xray)" = "active" ] && green "running" && return 0 || yellow "not running" && return 1
fi
else
red "not installed"
return 2
fi
}
# 检查 argo 是否已安装
check_argo() {
if [ -f "${work_dir}/argo" ]; then
if [ -f /etc/alpine-release ]; then
rc-service tunnel status | grep -q "started" && green "running" && return 0 || yellow "not running" && return 1
else
[ "$(systemctl is-active tunnel)" = "active" ] && green "running" && return 0 || yellow "not running" && return 1
fi
else
red "not installed"
return 2
fi
}
# 检查 caddy 是否已安装
check_caddy() {
if command -v caddy &>/dev/null; then
if [ -f /etc/alpine-release ]; then
rc-service caddy status | grep -q "started" && green "running" && return 0 || yellow "not running" && return 1
else
[ "$(systemctl is-active caddy)" = "active" ] && green "running" && return 0 || yellow "not running" && return 1
fi
else
red "not installed"
return 2
fi
}
#根据系统类型安装、卸载依赖
manage_packages() {
if [ $# -lt 2 ]; then
red "Unspecified package name or action"
return 1
fi
action=$1
shift
for package in "$@"; do
if [ "$action" == "install" ]; then
if command -v "$package" &>/dev/null; then
green "${package} already installed"
continue
fi
yellow "正在安装 ${package}..."
if command -v apt &>/dev/null; then
DEBIAN_FRONTEND=noninteractive apt install -y "$package"
elif command -v dnf &>/dev/null; then
dnf install -y "$package"
elif command -v yum &>/dev/null; then
yum install -y "$package"
elif command -v apk &>/dev/null; then
apk update
apk add "$package"
else
red "Unknown system!"
return 1
fi
elif [ "$action" == "uninstall" ]; then
if ! command -v "$package" &>/dev/null; then
yellow "${package} is not installed"
continue
fi
yellow "正在卸载 ${package}..."
if command -v apt &>/dev/null; then
apt remove -y "$package" && apt autoremove -y
elif command -v dnf &>/dev/null; then
dnf remove -y "$package" && dnf autoremove -y
elif command -v yum &>/dev/null; then
yum remove -y "$package" && yum autoremove -y
elif command -v apk &>/dev/null; then
apk del "$package"
else
red "Unknown system!"
return 1
fi
else
red "Unknown action: $action"
return 1
fi
done
return 0
}
# 获取ip
get_realip() {
ip=$(curl -s --max-time 2 ipv4.ip.sb)
if [ -z "$ip" ]; then
ipv6=$(curl -s --max-time 2 ipv6.ip.sb)
echo "[$ipv6]"
else
if echo "$(curl -s http://ipinfo.io/org)" | grep -qE 'Cloudflare|UnReal|AEZA|Andrei'; then
ipv6=$(curl -s --max-time 2 ipv6.ip.sb)
echo "[$ipv6]"
else
echo "$ip"
fi
fi
}
# 下载并安装 xray,cloudflared
install_xray() {
clear
purple "正在安装Xray-2go中,请稍等..."
ARCH_RAW=$(uname -m)
case "${ARCH_RAW}" in
'x86_64') ARCH='amd64'; ARCH_ARG='64' ;;
'x86' | 'i686' | 'i386') ARCH='386'; ARCH_ARG='32' ;;
'aarch64' | 'arm64') ARCH='arm64'; ARCH_ARG='arm64-v8a' ;;
'armv7l') ARCH='armv7'; ARCH_ARG='arm32-v7a' ;;
's390x') ARCH='s390x' ;;
*) red "不支持的架构: ${ARCH_RAW}"; exit 1 ;;
esac
# 下载sing-box,cloudflared
[ ! -d "${work_dir}" ] && mkdir -p "${work_dir}" && chmod 777 "${work_dir}"
curl -sLo "${work_dir}/${server_name}.zip" "https://github.com/XTLS/Xray-core/releases/latest/download/Xray-linux-${ARCH_ARG}.zip"
curl -sLo "${work_dir}/qrencode" "https://github.com/eooce/test/releases/download/${ARCH}/qrencode-linux-${ARCH}"
curl -sLo "${work_dir}/argo" "https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-${ARCH}"
unzip "${work_dir}/${server_name}.zip" -d "${work_dir}/" > /dev/null 2>&1 && chmod +x ${work_dir}/${server_name} ${work_dir}/argo ${work_dir}/qrencode
rm -rf "${work_dir}/${server_name}.zip" "${work_dir}/geosite.dat" "${work_dir}/geoip.dat" "${work_dir}/README.md" "${work_dir}/LICENSE"
# 生成随机UUID和密码
password=$(< /dev/urandom tr -dc 'A-Za-z0-9' | head -c 24)
GRPC_PORT=$((PORT + 1))
# 关闭防火墙
iptables -F > /dev/null 2>&1 && iptables -P INPUT ACCEPT > /dev/null 2>&1 && iptables -P FORWARD ACCEPT > /dev/null 2>&1 && iptables -P OUTPUT ACCEPT > /dev/null 2>&1
command -v ip6tables &> /dev/null && ip6tables -F > /dev/null 2>&1 && ip6tables -P INPUT ACCEPT > /dev/null 2>&1 && ip6tables -P FORWARD ACCEPT > /dev/null 2>&1 && ip6tables -P OUTPUT ACCEPT > /dev/null 2>&1
output=$(/etc/xray/xray x25519)
private_key=$(echo "$output" | grep "Private key" | awk '{print $3}')
public_key=$(echo "$output" | grep "Public key" | awk '{print $3}')
# 生成配置文件
cat > "${config_dir}" << EOF
{
"log": { "access": "/dev/null", "error": "/dev/null", "loglevel": "none" },
"inbounds": [
{
"port": $ARGO_PORT,
"protocol": "vless",
"settings": {
"clients": [{ "id": "$UUID", "flow": "xtls-rprx-vision" }],
"decryption": "none",
"fallbacks": [
{ "dest": 3001 }, { "path": "/vless-argo", "dest": 3002 },
{ "path": "/vmess-argo", "dest": 3003 }, { "path": "", "dest": 3004 }
]
},
"streamSettings": { "network": "tcp" }
},
{
"port": 3001, "listen": "127.0.0.1", "protocol": "vless",
"settings": { "clients": [{ "id": "$UUID" }], "decryption": "none" },
"streamSettings": { "network": "tcp", "security": "none" }
},
{
"port": 3002, "listen": "127.0.0.1", "protocol": "vless",
"settings": { "clients": [{ "id": "$UUID", "level": 0 }], "decryption": "none" },
"streamSettings": { "network": "ws", "security": "none", "wsSettings": { "path": "/vless-argo" } },
"sniffing": { "enabled": true, "destOverride": ["http", "tls", "quic"], "metadataOnly": false }
},
{
"port": 3003, "listen": "127.0.0.1", "protocol": "vmess",
"settings": { "clients": [{ "id": "$UUID", "alterId": 0 }] },
"streamSettings": { "network": "ws", "wsSettings": { "path": "/vmess-argo" } },
"sniffing": { "enabled": true, "destOverride": ["http", "tls", "quic"], "metadataOnly": false }
},
{
"port": 3004, "listen": "127.0.0.1", "protocol": "vmess",
"settings": {"clients": [{"id": "$UUID", "alterId": 0, "security": "auto"}]},
"streamSettings": {"network": "xhttp", "security": "none", "xhttpSettings": {"host": "", "path": ""}},
"sniffing": {"enabled": true, "destOverride": ["http", "tls", "quic"], "metadataOnly": false}
},
{
"listen":"::","port":$GRPC_PORT,"protocol":"vless","settings":{"clients":[{"id":"$UUID"}],"decryption":"none"},"streamSettings":{"network":"grpc","security":"reality","realitySettings":{"dest":"www.iij.ad.jp:443","serverNames":["www.iij.ad.jp"],"privateKey":"$private_key","shortIds":[""]},"grpcSettings":{"serviceName":"grpc"}},"sniffing":{"enabled":true,"destOverride":["http","tls","quic"]}}
],
"dns": { "servers": ["https+local://8.8.8.8/dns-query"] },
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
},
{
"protocol": "blackhole",
"tag": "block"
}
]
}
EOF
}
# debian/ubuntu/centos 守护进程
main_systemd_services() {
cat > /etc/systemd/system/xray.service << EOF
[Unit]
Description=Xray Service
Documentation=https://github.com/XTLS/Xray-core
After=network.target nss-lookup.target
Wants=network-online.target
[Service]
Type=simple
NoNewPrivileges=yes
ExecStart=$work_dir/xray run -c $config_dir
Restart=on-failure
RestartPreventExitStatus=23
[Install]
WantedBy=multi-user.target
EOF
cat > /etc/systemd/system/tunnel.service << EOF
[Unit]
Description=Cloudflare Tunnel
After=network.target
[Service]
Type=simple
NoNewPrivileges=yes
TimeoutStartSec=0
ExecStart=/etc/xray/argo tunnel --url http://localhost:$ARGO_PORT --no-autoupdate --edge-ip-version auto --protocol http2
StandardOutput=append:/etc/xray/argo.log
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target
EOF
if [ -f /etc/centos-release ]; then
yum install -y chrony
systemctl start chronyd
systemctl enable chronyd
chronyc -a makestep
yum update -y ca-certificates
bash -c 'echo "0 0" > /proc/sys/net/ipv4/ping_group_range'
fi
bash -c 'echo "0 0" > /proc/sys/net/ipv4/ping_group_range'
systemctl daemon-reload
systemctl enable xray
systemctl start xray
systemctl enable tunnel
systemctl start tunnel
}
# 适配alpine 守护进程
alpine_openrc_services() {
cat > /etc/init.d/xray << 'EOF'
#!/sbin/openrc-run
description="Xray service"
command="/etc/xray/xray"
command_args="run -c /etc/xray/config.json"
command_background=true
pidfile="/var/run/xray.pid"
EOF
cat > /etc/init.d/tunnel << 'EOF'
#!/sbin/openrc-run
description="Cloudflare Tunnel"
command="/bin/sh"
command_args="-c '/etc/xray/argo tunnel --url http://localhost:8080 --no-autoupdate --edge-ip-version auto --protocol http2 > /etc/xray/argo.log 2>&1'"
command_background=true
pidfile="/var/run/tunnel.pid"
EOF
chmod +x /etc/init.d/xray
chmod +x /etc/init.d/tunnel
rc-update add xray default
rc-update add tunnel default
}
get_info() {
clear
IP=$(get_realip)
isp=$(curl -s --max-time 2 https://speed.cloudflare.com/meta | awk -F\" '{print $26"-"$18}' | sed -e 's/ /_/g' || echo "vps")
if [ -f "${work_dir}/argo.log" ]; then
for i in {1..5}; do
purple "第 $i 次尝试获取ArgoDoamin中..."
argodomain=$(sed -n 's|.*https://\([^/]*trycloudflare\.com\).*|\1|p' "${work_dir}/argo.log")
[ -n "$argodomain" ] && break
sleep 2
done
else
restart_argo
sleep 6
argodomain=$(sed -n 's|.*https://\([^/]*trycloudflare\.com\).*|\1|p' "${work_dir}/argo.log")
fi
green "\nArgoDomain:${purple}$argodomain${re}\n"
cat > ${work_dir}/url.txt <<EOF
vless://${UUID}@${IP}:${GRPC_PORT}??encryption=none&security=reality&sni=www.iij.ad.jp&fp=chrome&pbk=${public_key}&allowInsecure=1&type=grpc&authority=www.iij.ad.jp&serviceName=grpc&mode=gun#${isp}
vless://${UUID}@${CFIP}:${CFPORT}?encryption=none&security=tls&sni=${argodomain}&type=ws&host=${argodomain}&path=%2Fvless-argo%3Fed%3D2048#${isp}
vmess://$(echo "{ \"v\": \"2\", \"ps\": \"${isp}\", \"add\": \"${CFIP}\", \"port\": \"${CFPORT}\", \"id\": \"${UUID}\", \"aid\": \"0\", \"scy\": \"none\", \"net\": \"ws\", \"type\": \"none\", \"host\": \"${argodomain}\", \"path\": \"/vmess-argo?ed=2048\", \"tls\": \"tls\", \"sni\": \"${argodomain}\", \"alpn\": \"\" }" | base64 -w0)
vmess://$(echo "{ \"v\": \"2\", \"ps\": \"${isp}\", \"add\": \"${IP}\", \"port\": \"${ARGO_PORT}\", \"id\": \"${UUID}\", \"aid\": \"0\", \"scy\": \"auto\", \"net\": \"xhttp\", \"type\": \"auto\", \"host\": \"${argodomain}\", \"path\": \"\", \"tls\": \"none\", \"sni\": \"${argodomain}\", \"alpn\": \"\" }" | base64 -w0)
EOF
echo ""
while IFS= read -r line; do echo -e "${purple}$line"; done < ${work_dir}/url.txt
base64 -w0 ${work_dir}/url.txt > ${work_dir}/sub.txt
yellow "\n温馨提醒:如果是NAT机,reality端口和订阅端口需使用可用端口范围内的端口,否则reality协议不通,无法订阅\n"
green "节点订阅链接:http://$IP:$PORT/$password\n\n订阅链接适用于V2rayN,Nekbox,karing,Sterisand,Loon,小火箭,圈X等\n"
green "订阅二维码"
$work_dir/qrencode "http://$IP:$PORT/$password"
echo ""
}
# 处理ubuntu系统中没有caddy源的问题
install_caddy () {
if [ -f /etc/os-release ] && (grep -q "Ubuntu" /etc/os-release || grep -q "Debian GNU/Linux 11" /etc/os-release); then
purple "安装依赖中...\n"
apt install -y debian-keyring debian-archive-keyring apt-transport-https
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | tee /etc/apt/trusted.gpg.d/caddy-stable.asc
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | tee /etc/apt/sources.list.d/caddy-stable.list
rm /etc/apt/trusted.gpg.d/caddy-stable.asc /usr/share/keyrings/caddy-archive-keyring.gpg 2>/dev/null
curl -fsSL https://dl.cloudsmith.io/public/caddy/stable/gpg.key | gpg --dearmor -o /usr/share/keyrings/caddy-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/caddy-archive-keyring.gpg] https://dl.cloudsmith.io/public/caddy/stable/deb/debian any-version main" | tee /etc/apt/sources.list.d/caddy-stable.list
DEBIAN_FRONTEND=noninteractive apt update -y && manage_packages install caddy
else
manage_packages install caddy
fi
}
# caddy订阅配置
add_caddy_conf() {
[ -f /etc/caddy/Caddyfile ] && cp /etc/caddy/Caddyfile /etc/caddy/Caddyfile.bak
rm -rf /etc/caddy/Caddyfile
cat > /etc/caddy/Caddyfile << EOF
{
auto_https off
log {
output file /var/log/caddy/caddy.log {
roll_size 10MB
roll_keep 10
roll_keep_for 720h
}
}
}
:$PORT {
handle /$password {
root * /etc/xray
try_files /sub.txt
file_server browse
header Content-Type "text/plain; charset=utf-8"
}
handle {
respond "404 Not Found" 404
}
}
EOF
/usr/bin/caddy validate --config /etc/caddy/Caddyfile > /dev/null 2>&1
if [ $? -eq 0 ]; then
if [ -f /etc/alpine-release ]; then
rc-service caddy restart
else
systemctl daemon-reload
systemctl restart caddy
fi
else
[ -f /etc/alpine-release ] && rc-service caddy restart > /dev/null 2>&1 || red "Caddy 配置文件验证失败,订阅功能可能无法使用,但不影响节点使用\nissues 反馈:https://github.com/eooce/xray-argo/issues\n"
fi
}
# 启动 xray
start_xray() {
if [ ${check_xray} -eq 1 ]; then
yellow "\n正在启动 ${server_name} 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service xray start
else
systemctl daemon-reload
systemctl start "${server_name}"
fi
if [ $? -eq 0 ]; then
green "${server_name} 服务已成功启动\n"
else
red "${server_name} 服务启动失败\n"
fi
elif [ ${check_xray} -eq 0 ]; then
yellow "xray 正在运行\n"
sleep 1
menu
else
yellow "xray 尚未安装!\n"
sleep 1
menu
fi
}
# 停止 xray
stop_xray() {
if [ ${check_xray} -eq 0 ]; then
yellow "\n正在停止 ${server_name} 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service xray stop
else
systemctl stop "${server_name}"
fi
if [ $? -eq 0 ]; then
green "${server_name} 服务已成功停止\n"
else
red "${server_name} 服务停止失败\n"
fi
elif [ ${check_xray} -eq 1 ]; then
yellow "xray 未运行\n"
sleep 1
menu
else
yellow "xray 尚未安装!\n"
sleep 1
menu
fi
}
# 重启 xray
restart_xray() {
if [ ${check_xray} -eq 0 ]; then
yellow "\n正在重启 ${server_name} 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service ${server_name} restart
else
systemctl daemon-reload
systemctl restart "${server_name}"
fi
if [ $? -eq 0 ]; then
green "${server_name} 服务已成功重启\n"
else
red "${server_name} 服务重启失败\n"
fi
elif [ ${check_xray} -eq 1 ]; then
yellow "xray 未运行\n"
sleep 1
menu
else
yellow "xray 尚未安装!\n"
sleep 1
menu
fi
}
# 启动 argo
start_argo() {
if [ ${check_argo} -eq 1 ]; then
yellow "\n正在启动 Argo 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service tunnel start
else
systemctl daemon-reload
systemctl start tunnel
fi
if [ $? -eq 0 ]; then
green "Argo 服务已成功重启\n"
else
red "Argo 服务重启失败\n"
fi
elif [ ${check_argo} -eq 0 ]; then
green "Argo 服务正在运行\n"
sleep 1
menu
else
yellow "Argo 尚未安装!\n"
sleep 1
menu
fi
}
# 停止 argo
stop_argo() {
if [ ${check_argo} -eq 0 ]; then
yellow "\n正在停止 Argo 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service stop start
else
systemctl daemon-reload
systemctl stop tunnel
fi
if [ $? -eq 0 ]; then
green "Argo 服务已成功停止\n"
else
red "Argo 服务停止失败\n"
fi
elif [ ${check_argo} -eq 1 ]; then
yellow "Argo 服务未运行\n"
sleep 1
menu
else
yellow "Argo 尚未安装!\n"
sleep 1
menu
fi
}
# 重启 argo
restart_argo() {
if [ ${check_argo} -eq 0 ]; then
yellow "\n正在重启 Argo 服务\n"
rm /etc/xray/argo.log 2>/dev/null
if [ -f /etc/alpine-release ]; then
rc-service tunnel restart
else
systemctl daemon-reload
systemctl restart tunnel
fi
if [ $? -eq 0 ]; then
green "Argo 服务已成功重启\n"
else
red "Argo 服务重启失败\n"
fi
elif [ ${check_argo} -eq 1 ]; then
yellow "Argo 服务未运行\n"
sleep 1
menu
else
yellow "Argo 尚未安装!\n"
sleep 1
menu
fi
}
# 启动 caddy
start_caddy() {
if command -v caddy &>/dev/null; then
yellow "\n正在启动 caddy 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service caddy start
else
systemctl daemon-reload
systemctl start caddy
fi
if [ $? -eq 0 ]; then
green "caddy 服务已成功启动\n"
else
red "caddy 启动失败\n"
fi
else
yellow "caddy 尚未安装!\n"
sleep 1
menu
fi
}
# 重启 caddy
restart_caddy() {
if command -v caddy &>/dev/null; then
yellow "\n正在重启 caddy 服务\n"
if [ -f /etc/alpine-release ]; then
rc-service caddy restart
else
systemctl restart caddy
fi
if [ $? -eq 0 ]; then
green "caddy 服务已成功重启\n"
else
red "caddy 重启失败\n"
fi
else
yellow "caddy 尚未安装!\n"
sleep 1
menu
fi
}
# 卸载 xray
uninstall_xray() {
reading "确定要卸载 xray-2go 吗? (y/n): " choice
case "${choice}" in
y|Y)
yellow "正在卸载 xray"
if [ -f /etc/alpine-release ]; then
rc-service xray stop
rc-service tunnel stop
rm /etc/init.d/xray /etc/init.d/tunnel
rc-update del xray default
rc-update del tunnel default
else
# 停止 xray和 argo 服务
systemctl stop "${server_name}"
systemctl stop tunnel
# 禁用 xray 服务
systemctl disable "${server_name}"
systemctl disable tunnel
# 重新加载 systemd
systemctl daemon-reload || true
fi
# 删除配置文件和日志
rm -rf "${work_dir}" || true
rm -rf /etc/systemd/system/xray.service /etc/systemd/system/tunnel.service 2>/dev/null
# 卸载caddy
reading "\n是否卸载 caddy?${green}(卸载请输入 ${yellow}y${re} ${green}回车将跳过卸载caddy) (y/n): ${re}" choice
case "${choice}" in
y|Y)
manage_packages uninstall caddy
;;
*)
yellow "取消卸载caddy\n"
;;
esac
green "\nXray_2go 卸载成功\n"
;;
*)
purple "已取消卸载操作\n"
;;
esac
}
# 创建快捷指令
create_shortcut() {
cat > "$work_dir/2go.sh" << EOF
#!/usr/bin/env bash
bash <(curl -Ls https://github.com/eooce/xray-2go/raw/main/xray_2go.sh) \$1
EOF
chmod +x "$work_dir/2go.sh"
ln -sf "$work_dir/2go.sh" /usr/bin/2go
if [ -s /usr/bin/2go ]; then
green "\n快捷指令 2go 创建成功\n"
else
red "\n快捷指令创建失败\n"
fi
}
# 适配alpine运行argo报错用户组和dns的问题
change_hosts() {
sh -c 'echo "0 0" > /proc/sys/net/ipv4/ping_group_range'
sed -i '1s/.*/127.0.0.1 localhost/' /etc/hosts
sed -i '2s/.*/::1 localhost/' /etc/hosts
}
# 变更配置
change_config() {
clear
echo ""
green "1. 修改UUID"
skyblue "------------"
green "2. 修改grpc-reality端口"
skyblue "------------"
green "3. 修改grpc-reality伪装域名"
skyblue "------------"
purple "${purple}4. 返回主菜单"
skyblue "------------"
reading "请输入选择: " choice
case "${choice}" in
1)
reading "\n请输入新的UUID: " new_uuid
[ -z "$new_uuid" ] && new_uuid=$(cat /proc/sys/kernel/random/uuid) && green "\n生成的UUID为:$new_uuid"
sed -i "s/[a-fA-F0-9]\{8\}-[a-fA-F0-9]\{4\}-[a-fA-F0-9]\{4\}-[a-fA-F0-9]\{4\}-[a-fA-F0-9]\{12\}/$new_uuid/g" $config_dir
restart_xray
sed -i "s/[a-fA-F0-9]\{8\}-[a-fA-F0-9]\{4\}-[a-fA-F0-9]\{4\}-[a-fA-F0-9]\{4\}-[a-fA-F0-9]\{12\}/$new_uuid/g" $client_dir
content=$(cat "$client_dir")
vmess_urls=$(grep -o 'vmess://[^ ]*' "$client_dir")
vmess_prefix="vmess://"
for vmess_url in $vmess_urls; do
encoded_vmess="${vmess_url#"$vmess_prefix"}"
decoded_vmess=$(echo "$encoded_vmess" | base64 --decode)
updated_vmess=$(echo "$decoded_vmess" | jq --arg new_uuid "$new_uuid" '.id = $new_uuid')
encoded_updated_vmess=$(echo "$updated_vmess" | base64 | tr -d '\n')
new_vmess_url="$vmess_prefix$encoded_updated_vmess"
content=$(echo "$content" | sed "s|$vmess_url|$new_vmess_url|")
done
echo "$content" > "$client_dir"
base64 -w0 $client_dir > /etc/xray/sub.txt
while IFS= read -r line; do yellow "$line"; done < $client_dir
green "\nUUID已修改为:${purple}${new_uuid}${re} ${green}请更新订阅或手动更改所有节点的UUID${re}\n"
;;
2)
reading "\n请输入grpc-reality端口 (回车跳过将使用随机端口): " new_port
[ -z "$new_port" ] && new_port=$(shuf -i 2000-65000 -n 1)
until [[ -z $(netstat -tuln | grep -w tcp | awk '{print $4}' | sed 's/.*://g' | grep -w "$new_port") ]]; do
if [[ -n $(netstat -tuln | grep -w tcp | awk '{print $4}' | sed 's/.*://g' | grep -w "$new_port") ]]; then
echo -e "${red}${new_port}端口已经被其他程序占用,请更换端口重试${re}"
reading "请输入新的订阅端口(1-65535):" new_port
[[ -z $new_port ]] && new_port=$(shuf -i 2000-65000 -n 1)
fi
done
sed -i "41s/\"port\":\s*[0-9]\+/\"port\": $new_port/" /etc/xray/config.json
restart_xray
sed -i '1s/\(vless:\/\/[^@]*@[^:]*:\)[0-9]\{1,\}/\1'"$new_port"'/' $client_dir
base64 -w0 $client_dir > /etc/xray/sub.txt
while IFS= read -r line; do yellow "$line"; done < ${work_dir}/url.txt
green "\nGRPC-reality端口已修改成:${purple}$new_port${re} ${green}请更新订阅或手动更改grpc-reality节点端口${re}\n"
;;
3)
clear
green "\n1. bgk.jp\n\n2. www.joom.com\n\n3. www.stengg.com\n\n4. www.nazhumi.com\n"
reading "\n请输入新的Reality伪装域名(可自定义输入,回车留空将使用默认1): " new_sni
if [ -z "$new_sni" ]; then
new_sni="bgk.jp"
elif [[ "$new_sni" == "1" ]]; then
new_sni="bgk.jp"
elif [[ "$new_sni" == "2" ]]; then
new_sni="www.joom.com"
elif [[ "$new_sni" == "3" ]]; then
new_sni="www.stengg.com"
elif [[ "$new_sni" == "4" ]]; then
new_sni="www.nazhumi.com"
else
new_sni="$new_sni"
fi
jq --arg new_sni "$new_sni" '.inbounds[5].streamSettings.realitySettings.dest = ($new_sni + ":443") | .inbounds[5].streamSettings.realitySettings.serverNames = [$new_sni]' /etc/xray/config.json > /etc/xray/config.json.tmp && mv /etc/xray/config.json.tmp /etc/xray/config.json
restart_xray
sed -i "1s/\(vless:\/\/[^\?]*\?\([^\&]*\&\)*sni=\)[^&]*/\1$new_sni/" $client_dir
sed -i "1s/\(vless:\/\/[^\?]*\?\([^\&]*\&\)*authority=\)[^&]*/\1$new_sni/" $client_dir
base64 -w0 $client_dir > /etc/xray/sub.txt
while IFS= read -r line; do yellow "$line"; done < ${work_dir}/url.txt
echo ""
green "\nReality sni已修改为:${purple}${new_sni}${re} ${green}请更新订阅或手动更改reality节点的sni域名${re}\n"
;;
4) menu ;;
*) read "无效的选项!" ;;
esac
}
disable_open_sub() {
if [ ${check_xray} -eq 0 ]; then
clear
echo ""
green "1. 关闭节点订阅"
skyblue "------------"
green "2. 开启节点订阅"
skyblue "------------"
green "3. 更换订阅端口"
skyblue "------------"
purple "4. 返回主菜单"
skyblue "------------"
reading "请输入选择: " choice
case "${choice}" in
1)
if command -v caddy &>/dev/null; then
if [ -f /etc/alpine-release ]; then
rc-service caddy status | grep -q "started" && rc-service caddy stop || red "caddy not running"
else
[ "$(systemctl is-active caddy)" = "active" ] && systemctl stop caddy || red "ngixn not running"
fi
else
yellow "caddy is not installed"
fi
green "\n已关闭节点订阅\n"
;;
2)
green "\n已开启节点订阅\n"
server_ip=$(get_realip)
password=$(tr -dc A-Za-z < /dev/urandom | head -c 32)
sed -i "s/\/[a-zA-Z0-9]\+/\/$password/g" /etc/caddy/Caddyfile
sub_port=$(port=$(grep -oP ':\K[0-9]+' /etc/caddy/Caddyfile); if [ "$port" -eq 80 ]; then echo ""; else echo "$port"; fi)
start_caddy
(port=$(grep -oP ':\K[0-9]+' /etc/caddy/Caddyfile); if [ "$port" -eq 80 ]; then echo ""; else green "订阅端口:$port"; fi); link=$(if [ -z "$sub_port" ]; then echo "http://$server_ip/$password"; else echo "http://$server_ip:$sub_port/$password"; fi); green "\n新的节点订阅链接:$link\n"
;;
3)
reading "请输入新的订阅端口(1-65535):" sub_port
[ -z "$sub_port" ] && sub_port=$(shuf -i 2000-65000 -n 1)
until [[ -z $(netstat -tuln | grep -w tcp | awk '{print $4}' | sed 's/.*://g' | grep -w "$sub_port") ]]; do
if [[ -n $(netstat -tuln | grep -w tcp | awk '{print $4}' | sed 's/.*://g' | grep -w "$sub_port") ]]; then
echo -e "${red}${new_port}端口已经被其他程序占用,请更换端口重试${re}"
reading "请输入新的订阅端口(1-65535):" sub_port
[[ -z $sub_port ]] && sub_port=$(shuf -i 2000-65000 -n 1)
fi
done
sed -i "s/:[0-9]\+/:$sub_port/g" /etc/caddy/Caddyfile
path=$(sed -n 's/.*handle \/\([^ ]*\).*/\1/p' /etc/caddy/Caddyfile)
server_ip=$(get_realip)
restart_caddy
green "\n订阅端口更换成功\n"
green "新的订阅链接为:http://$server_ip:$sub_port/$path\n"
;;
4) menu ;;
*) red "无效的选项!" ;;
esac
else
yellow "xray—2go 尚未安装!"
sleep 1
menu
fi
}
# xray 管理
manage_xray() {
green "1. 启动xray服务"
skyblue "-------------------"
green "2. 停止xray服务"
skyblue "-------------------"
green "3. 重启xray服务"
skyblue "-------------------"
purple "4. 返回主菜单"
skyblue "------------"
reading "\n请输入选择: " choice
case "${choice}" in
1) start_xray ;;
2) stop_xray ;;
3) restart_xray ;;
4) menu ;;
*) red "无效的选项!" ;;
esac
}
# Argo 管理
manage_argo() {
if [ ${check_argo} -eq 2 ]; then
yellow "Argo 尚未安装!"
sleep 1
menu
else
clear
echo ""
green "1. 启动Argo服务"
skyblue "------------"
green "2. 停止Argo服务"
skyblue "------------"
green "3. 添加Argo固定隧道"
skyblue "----------------"
green "4. 切换回Argo临时隧道"
skyblue "------------------"
green "5. 重新获取Argo临时域名"
skyblue "-------------------"
purple "6. 返回主菜单"
skyblue "-----------"
reading "\n请输入选择: " choice
case "${choice}" in
1) start_argo ;;
2) stop_argo ;;
3)
clear
yellow "\n固定隧道可为json或token,固定隧道端口为8080,自行在cf后台设置\n\njson在f佬维护的站点里获取,获取地址:${purple}https://fscarmen.cloudflare.now.cc${re}\n"
reading "\n请输入你的argo域名: " argo_domain
green "你的Argo域名为:$argo_domain"
ArgoDomain=$argo_domain
reading "\n请输入你的argo密钥(token或json): " argo_auth
if [[ $argo_auth =~ TunnelSecret ]]; then
echo $argo_auth > ${work_dir}/tunnel.json
cat > ${work_dir}/tunnel.yml << EOF
tunnel: $(cut -d\" -f12 <<< "$argo_auth")
credentials-file: ${work_dir}/tunnel.json
protocol: http2
ingress:
- hostname: $ArgoDomain
service: http://localhost:8080
originRequest:
noTLSVerify: true
- service: http_status:404
EOF
if [ -f /etc/alpine-release ]; then
sed -i '/^command_args=/c\command_args="-c '\''/etc/xray/argo tunnel --edge-ip-version auto --config /etc/xray/tunnel.yml run 2>&1'\''"' /etc/init.d/tunnel
else
sed -i '/^ExecStart=/c ExecStart=/bin/sh -c "/etc/xray/argo tunnel --edge-ip-version auto --config /etc/xray/tunnel.yml run 2>&1"' /etc/systemd/system/tunnel.service
fi
restart_argo
add_split_url
change_argo_domain
elif [[ $argo_auth =~ ^[A-Z0-9a-z=]{120,250}$ ]]; then
if [ -f /etc/alpine-release ]; then
sed -i "/^command_args=/c\command_args=\"-c '/etc/xray/argo tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token $argo_auth 2>&1'\"" /etc/init.d/tunnel
else
sed -i '/^ExecStart=/c ExecStart=/bin/sh -c "/etc/xray/argo tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token '$argo_auth' 2>&1"' /etc/systemd/system/tunnel.service
fi
restart_argo
add_split_url
change_argo_domain
else
yellow "你输入的argo域名或token不匹配,请重新输入"
manage_argo
fi
;;
4)
clear
if [ -f /etc/alpine-release ]; then
alpine_openrc_services
else
main_systemd_services
fi
get_quick_tunnel
change_argo_domain
;;
5)
if [ -f /etc/alpine-release ]; then
if grep -Fq -- '--url http://localhost:8080' /etc/init.d/tunnel; then
get_quick_tunnel
change_argo_domain
else
yellow "当前使用固定隧道,无法获取临时隧道"
sleep 2
menu
fi
else
if grep -q 'ExecStart=.*--url http://localhost:8080' /etc/systemd/system/tunnel.service; then
get_quick_tunnel
change_argo_domain
else
yellow "当前使用固定隧道,无法获取临时隧道"
sleep 2
menu
fi
fi
;;
6) menu ;;
*) red "无效的选项!" ;;
esac
fi
}
# 获取argo临时隧道
get_quick_tunnel() {
restart_argo
yellow "获取临时argo域名中,请稍等...\n"
sleep 3
if [ -f /etc/xray/argo.log ]; then
for i in {1..5}; do
get_argodomain=$(sed -n 's|.*https://\([^/]*trycloudflare\.com\).*|\1|p' /etc/xray/argo.log)
[ -n "$get_argodomain" ] && break
sleep 2
done
else
restart_argo
sleep 6
get_argodomain=$(sed -n 's|.*https://\([^/]*trycloudflare\.com\).*|\1|p' /etc/xray/argo.log)
fi
green "ArgoDomain:${purple}$get_argodomain${re}\n"
ArgoDomain=$get_argodomain
}
# 更新Argo域名到订阅
change_argo_domain() {
sed -i "3s/sni=[^&]*/sni=$ArgoDomain/; 3s/host=[^&]*/host=$ArgoDomain/" /etc/xray/url.txt
content=$(cat "$client_dir")
vmess_urls=$(grep -o 'vmess://[^ ]*' "$client_dir")
vmess_prefix="vmess://"
for vmess_url in $vmess_urls; do
encoded_vmess="${vmess_url#"$vmess_prefix"}"
decoded_vmess=$(echo "$encoded_vmess" | base64 --decode)
updated_vmess=$(echo "$decoded_vmess" | jq --arg new_domain "$ArgoDomain" '.host = $new_domain | .sni = $new_domain')
encoded_updated_vmess=$(echo "$updated_vmess" | base64 | tr -d '\n')
new_vmess_url="$vmess_prefix$encoded_updated_vmess"
content=$(echo "$content" | sed "s|$vmess_url|$new_vmess_url|")