forked from yeahwu/v2ray-wss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ws.sh
111 lines (99 loc) · 2.53 KB
/
ws.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
#!/bin/sh
# forum: https://1024.day
if [[ $EUID -ne 0 ]]; then
clear
echo "Error: This script must be run as root!" 1>&2
exit 1
fi
timedatectl set-timezone Asia/Shanghai
v2uuid=$(cat /proc/sys/kernel/random/uuid)
v2path=$(cat /dev/urandom | head -1 | md5sum | head -c 6)
v2port=$(shuf -i 2000-65000 -n 1)
getIP(){
local serverIP=
serverIP=$(curl -s -4 http://www.cloudflare.com/cdn-cgi/trace | grep "ip" | awk -F "[=]" '{print $2}')
if [[ -z "${serverIP}" ]]; then
serverIP=$(curl -s -6 http://www.cloudflare.com/cdn-cgi/trace | grep "ip" | awk -F "[=]" '{print $2}')
fi
echo "${serverIP}"
}
install_update(){
if [ -f "/usr/bin/apt-get" ]; then
apt-get update -y && apt-get upgrade -y
apt-get install -y gawk curl
else
yum update -y && yum upgrade -y
yum install -y epel-release
yum install -y gawk curl
fi
}
install_v2ray(){
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
cat >/usr/local/etc/v2ray/config.json<<EOF
{
"inbounds": [
{
"port": $v2port,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "$v2uuid"
}
]
},
"streamSettings": {
"network": "ws",
"security": "auto",
"wsSettings": {
"path": "/$v2path"
}
}
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {}
}
]
}
EOF
systemctl enable v2ray.service && systemctl restart v2ray.service
rm -f tcp-wss.sh ws.sh
cat >/usr/local/etc/v2ray/client.json<<EOF
{
===========配置参数=============
协议:VMess
地址:$(getIP)
端口:${v2port}
UUID:${v2uuid}
加密方式:aes-128-gcm
传输协议:ws
路径:/${v2path}
注意:不需要打开tls
}
EOF
clear
}
client_v2ray(){
wslink=$(echo -n "{\"port\":${v2port},\"ps\":\"1024-ws\",\"id\":\"${v2uuid}\",\"aid\":0,\"v\":2,\"add\":\"$(getIP)\",\"type\":\"none\",\"path\":\"/${v2path}\",\"net\":\"ws\",\"method\":\"auto\"}" | base64 -w 0)
echo
echo "安装已经完成"
echo
echo "===========v2ray配置参数============"
echo "协议:VMess"
echo "地址:$(getIP)"
echo "端口:${v2port}"
echo "UUID:${v2uuid}"
echo "加密方式:aes-128-gcm"
echo "传输协议:ws"
echo "路径:/${v2path}"
echo "注意:不需要打开tls"
echo "===================================="
echo "vmess://${wslink}"
echo
}
install_update
install_v2ray
client_v2ray