forked from Jrohy/multi-v2ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi-v2ray.sh
303 lines (243 loc) · 8.33 KB
/
multi-v2ray.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
#!/bin/bash
# Author: Jrohy
# github: https://github.com/Jrohy/multi-v2ray
#定时任务北京执行时间(0~23)
BEIJING_UPDATE_TIME=3
#记录最开始运行脚本的路径
BEGIN_PATH=$(pwd)
#安装方式0: 全新安装, 1:保留配置更新 , 2:仅更新multi-v2ray源码
INSTARLL_WAY="0"
DEV_MODE=""
HELP=""
REMOVE=""
#######color code########
RED="31m" # Error message
GREEN="32m" # Success message
YELLOW="33m" # Warning message
BLUE="36m" # Info message
colorEcho(){
COLOR=$1
echo -e "\033[${COLOR}${@:2}\033[0m"
}
#######get params#########
while [[ $# > 0 ]];do
key="$1"
case $key in
--remove)
REMOVE="1"
;;
-h|--help)
HELP="1"
;;
-k|--keep)
INSTARLL_WAY="1"
colorEcho ${BLUE} "当前以keep保留配置文件形式更新, 若失败请用全新安装\n"
;;
-c|--code)
INSTARLL_WAY="2"
colorEcho ${BLUE} "当前仅更新multi-v2ray源码\n"
;;
-d|--dev)
DEV_MODE="1"
colorEcho ${BLUE} "当前为开发模式, 用dev分支来更新\n"
;;
*)
# unknown option
;;
esac
shift # past argument or value
done
#############################
help(){
echo "source multi-v2ray.sh [-h|--help] [-k|--keep] [-d|--dev][-c|--code][--remove]"
echo " -h, --help Show help"
echo " -k, --keep keep the v2ray config.json to update"
echo " -d, --dev update from dev branch"
echo " -c, --code only update multi-v2ray code"
echo " --remove remove v2ray && multi-v2ray"
echo " no params to new install"
return 0
}
removeV2Ray() {
#卸载V2ray官方脚本
systemctl stop v2ray >/dev/null 2>&1
systemctl disable v2ray >/dev/null 2>&1
service v2ray stop >/dev/null 2>&1
update-rc.d -f v2ray remove >/dev/null 2>&1
rm -rf /etc/v2ray/ >/dev/null 2>&1
rm -rf /usr/bin/v2ray >/dev/null 2>&1
rm -rf /var/log/v2ray/ >/dev/null 2>&1
rm -rf /lib/systemd/system/v2ray.service >/dev/null 2>&1
rm -rf /etc/init.d/v2ray >/dev/null 2>&1
#卸载multi-v2ray
rm -rf /usr/local/multi-v2ray >/dev/null 2>&1
rm -rf /usr/local/bin/v2ray >/dev/null 2>&1
#删除v2ray定时更新任务
crontab -l|sed '/SHELL=/d;/v2ray/d' > crontab.txt
crontab crontab.txt >/dev/null 2>&1
rm -f crontab.txt >/dev/null 2>&1
if [[ "${OS}" == "CentOS" ]];then
service crond restart >/dev/null 2>&1
else
service cron restart >/dev/null 2>&1
fi
#删除multi-v2ray模块搜索路径
sed -i '/multi-v2ray/d' ~/.bashrc
source ~/.bashrc
colorEcho ${GREEN} "卸载完成!"
}
closeSELinux() {
#禁用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
}
checkSys() {
#检查是否为Root
[ $(id -u) != "0" ] && { colorEcho ${RED} "Error: You must be root to run this script"; exit 1; }
#检查系统信息
if [ -f /etc/redhat-release ];then
OS='CentOS'
elif [ ! -z "`cat /etc/issue | grep bian`" ];then
OS='Debian'
elif [ ! -z "`cat /etc/issue | grep Ubuntu`" ];then
OS='Ubuntu'
else
colorEcho ${RED} "Not support OS, Please reinstall OS and retry!"
exit 1
fi
}
#安装依赖
installDependent(){
if [[ ${OS} == 'CentOS' ]];then
yum install epel-release curl wget unzip git ntp ntpdate socat crontabs lsof -y
yum install python34 -y
else
apt-get update
apt-get install curl unzip git ntp wget ntpdate python3 socat cron lsof -y
fi
# 安装最新版pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
rm -f get-pip.py
# 安装 pip依赖
pip install pyopenssl
}
#设置定时升级任务
planUpdate(){
#计算北京时间早上3点时VPS的实际时间
ORIGIN_TIME_ZONE=$(date -R|awk '{printf"%d",$6}')
LOCAL_TIME_ZONE=${ORIGIN_TIME_ZONE%00}
BEIJING_ZONE=8
DIFF_ZONE=$[$BEIJING_ZONE-$LOCAL_TIME_ZONE]
LOCAL_TIME=$[$BEIJING_UPDATE_TIME-$DIFF_ZONE]
if [ $LOCAL_TIME -lt 0 ];then
LOCAL_TIME=$[24+$LOCAL_TIME]
elif [ $LOCAL_TIME -ge 24 ];then
LOCAL_TIME=$[$LOCAL_TIME-24]
fi
colorEcho ${BLUE} "北京时间${BEIJING_UPDATE_TIME}点,VPS时间为${LOCAL_TIME}点\n"
OLD_CRONTAB=$(crontab -l)
echo "SHELL=/bin/bash" >> crontab.txt
echo "${OLD_CRONTAB}" >> crontab.txt
echo "0 ${LOCAL_TIME} * * * bash <(curl -L -s https://install.direct/go.sh) | tee -a /root/v2rayUpdate.log && service v2ray restart" >> crontab.txt
crontab crontab.txt
sleep 1
if [[ "${OS}" == "CentOS" ]];then
service crond restart
else
service cron restart
fi
rm -f crontab.txt
colorEcho ${GREEN} "成功配置每天北京时间${BEIJING_UPDATE_TIME}点自动升级V2ray内核任务\n"
}
updateProject() {
[[ "${INSTARLL_WAY}" != "0" ]] && mv /usr/local/multi-v2ray/my_domain ~ &>/dev/null
cd /usr/local/
#v2ray.fun目录存在的情况
[[ -e v2ray.fun ]] && mv v2ray.fun/my_domain ~ && rm -rf v2ray.fun
if [[ -e multi-v2ray && -e multi-v2ray/.git ]];then
cd multi-v2ray
if [[ "$DEV_MODE" == "1" ]];then
git checkout dev
else
git checkout master
fi
git reset --hard && git pull
else
[[ "$DEV_MODE" == "1" ]] && BRANCH="dev" || BRANCH="master"
git clone -b $BRANCH https://github.com/Jrohy/multi-v2ray
fi
[[ "${INSTARLL_WAY}" != "0" ]] && mv -f ~/my_domain .
#安装/更新V2ray主程序
bash <(curl -L -s https://install.direct/go.sh)
}
#时间同步
timeSync() {
if [[ "${INSTARLL_WAY}" == "0" ]];then
systemctl stop ntp &>/dev/null
echo -e "${Info} 正在进行时间同步 ${Font}"
ntpdate time.nist.gov
if [[ $? -eq 0 ]];then
echo -e "${OK} 时间同步成功 ${Font}"
echo -e "${OK} 当前系统时间 `date -R`${Font}"
sleep 1
else
echo -e "${Error} 时间同步失败,可以手动执行命令同步:${Font}${Yellow}ntpdate time.nist.gov${Font}"
fi
fi
}
profileInit() {
#配置V2ray初始环境
cp /usr/local/multi-v2ray/v2ray /usr/local/bin
chmod +x /usr/local/bin/v2ray
#加入multi-v2ray模块搜索路径
[[ -z $(grep multi-v2ray ~/.bashrc) ]] && echo "export PYTHONPATH=$PYTHONPATH:/usr/local/multi-v2ray" >> ~/.bashrc && source ~/.bashrc
#解决Python3中文显示问题
[[ -z $(grep PYTHONIOENCODING=utf-8 ~/.bashrc) ]] && echo "export PYTHONIOENCODING=utf-8" >> ~/.bashrc && source ~/.bashrc
#全新安装的新配置
if [[ "${INSTARLL_WAY}" == "0" ]];then
rm -rf /etc/v2ray/config.json
cp /usr/local/multi-v2ray/json_template/server.json /etc/v2ray/config.json
#产生随机uuid
UUID=$(cat /proc/sys/kernel/random/uuid)
sed -i "s/cc4f8d5b-967b-4557-a4b6-bde92965bc27/${UUID}/g" /etc/v2ray/config.json
#产生随机端口
D_PORT=$(shuf -i 1000-65535 -n 1)
sed -i "s/999999999/${D_PORT}/g" /etc/v2ray/config.json
#产生默认配置mkcp+随机3种伪装类型type
python3 /usr/local/multi-v2ray/base_util/random_stream.py
python3 /usr/local/multi-v2ray/base_util/gen_client.py
python3 /usr/local/multi-v2ray/base_util/open_port.py
fi
}
installFinish() {
#回到原点
cd ${BEGIN_PATH}
[[ ${INSTARLL_WAY} == "0" ]] && way="安装" || way="更新"
colorEcho ${GREEN} "multi-v2ray ${way}成功!\n"
clear
echo "V2ray配置信息:"
#安装完后显示v2ray的配置信息,用于快速部署
python3 /usr/local/multi-v2ray/server_info.py
echo -e "输入 v2ray 回车即可进行服务管理\n"
}
main() {
[[ ${HELP} == "1" ]] && help && return
[[ ${REMOVE} == "1" ]] && removeV2Ray && return
[[ ${INSTARLL_WAY} == "0" ]] && colorEcho ${BLUE} "当前为全新安装\n"
if [[ ${INSTARLL_WAY} != "2" ]];then
checkSys
installDependent
closeSELinux
timeSync
#设置定时任务
[[ -z $(crontab -l|grep v2ray) ]] && planUpdate
fi
updateProject
profileInit
service v2ray restart
installFinish
}
main