forked from herozmy/sing-box-mosdns-fakeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-sing-box.sh
More file actions
355 lines (329 loc) · 12.5 KB
/
Copy pathinstall-sing-box.sh
File metadata and controls
355 lines (329 loc) · 12.5 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
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
#!/bin/bash
################################编译 Sing-Box 的最新版本################################
install_singbox() {
apt update && apt -y upgrade || { echo "更新失败!退出脚本"; exit 1; }
apt install curl wget tar gawk sed cron unzip nano -y || { echo "更新失败!退出脚本"; exit 1; }
echo -e "\n设置时区为Asia/Shanghai"
timedatectl set-timezone Asia/Shanghai || { echo -e "\e[31m时区设置失败!退出脚本\e[0m"; exit 1; }
echo -e "\e[32m时区设置成功\e[0m"
echo -e "编译Sing-Box 最新版本"
sleep 1
apt -y install curl git build-essential libssl-dev libevent-dev zlib1g-dev gcc-mingw-w64
echo -e "开始编译Sing-Box 最新版本"
rm -rf /root/go/bin/*
Go_Version=$(curl https://github.com/golang/go/tags | grep '/releases/tag/go' | head -n 1 | gawk -F/ '{print $6}' | gawk -F\" '{print $1}')
# 判断 CPU 架构
if [[ $(uname -m) == "aarch64" ]]; then
arch="arm64"
elif [[ $(uname -m) == "x86_64" ]]; then
arch="amd64"
else
arch="未知"
exit 0
fi
echo "系统架构是:$arch"
wget -O ${Go_Version}.linux-$arch.tar.gz https://go.dev/dl/${Go_Version}.linux-$arch.tar.gz
tar -C /usr/local -xzf ${Go_Version}.linux-$arch.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' > /etc/profile.d/golang.sh
source /etc/profile.d/golang.sh
if ! go install -v -tags with_quic,with_grpc,with_dhcp,with_wireguard,with_ech,with_utls,with_reality_server,with_clash_api,with_gvisor,with_v2ray_api,with_lwip,with_acme github.com/sagernet/sing-box/cmd/sing-box@latest; then
echo -e "Sing-Box 编译失败!退出脚本"
exit 1
fi
echo -e "编译完成,开始安装"
sleep 1
# 检查是否存在旧版本的 sing-box
if [ -f "/usr/local/bin/sing-box" ]; then
echo "检测到已安装的 sing-box"
read -p "是否替换升级?(y/n): " replace_confirm
if [ "$replace_confirm" = "y" ]; then
echo "正在替换升级 sing-box"
cp "$(go env GOPATH)/bin/sing-box" /usr/local/bin/
echo "正在重启sing-box"
systemctl restart sing-box
echo "=================================================================="
echo -e "\t\t\tSing-Box 内核升级完毕"
echo -e "\t\t\tPowered by www.herozmy.com 2024"
echo -e "\n"
echo -e "温馨提示:\n本脚本仅在 LXC ubuntu22.04 环境下测试,其他环境未经验证,仅供个人使用"
echo -e "本脚本仅适用于学习与研究等个人用途,请勿用于任何违反国家法律的活动!"
echo "=================================================================="
exit 0 # 替换完成后停止脚本运行
else
echo "用户取消了替换升级操作"
fi
else
# 如果不存在旧版本,则直接安装新版本
cp "$(go env GOPATH)/bin/sing-box" /usr/local/bin/
echo -e "Sing-Box 安装完成"
fi
mkdir -p /etc/sing-box
sleep 1
}
################################用户自定义设置################################
customize_settings() {
echo "是否选择生成配置?(y/n)"
echo "生成配置文件需要添加机场订阅,如自建vps请选择n"
read choice
if [ "$choice" = "y" ]; then
read -p "输入订阅连接:" suburl
suburl="${suburl:-https://}"
echo "已设置订阅连接地址:$suburl"
install_config
elif [ "$choice" = "n" ]; then
echo "请手动配置config.json."
fi
}
######### ui
ui_install(){
echo "是否拉取ui源码 y/n"
read choice
if [ "$choice" = "y" ]; then
apt install git
git clone https://github.com/metacubex/metacubexd.git -b gh-pages /etc/sing-box/ui
elif [ "$choice" = "n" ]; then
echo "请手动下载源码并解压至/etc/sing-box/ui."
echo "地址: https://github.com/metacubex/metacubexd"
fi
}
################################开始创建config.json################################
install_config() {
sub_host="https://sub-singbox.herozmy.com"
echo "请选择:"
echo "1. tproxy_fake_ip O大原版 <适用机场多规则分流> 配合O大mosdns食用"
echo "2. tproxy_fake_ip O大原版 <适用VPS自建模式>配合O大mosdns食用"
read -p "请输入选项 [默认: 1]: " choice
# 如果用户没有输入选择,则默认为1
choice=${choice:-1}
if [ $choice -eq 1 ]; then
json_file="&file=https://raw.githubusercontent.com/herozmy/sing-box-mosdns-fakeip/main/config/fake-ip.json"
elif [ $choice -eq 2 ]; then
json_file="&file=https://raw.githubusercontent.com/herozmy/sing-box-mosdns-fakeip/main/fake-ip.json"
else
echo "无效的选择。"
return 1
fi
curl -o config.json "${sub_host}/config/${suburl}${json_file}"
# 检查下载是否成功
if [ $? -eq 0 ]; then
# 移动文件到目标位置
mv config.json /etc/sing-box/config.json
echo "Sing-box配置文件写入成功!"
else
echo "下载文件失败,请检查网络连接或者URL是否正确。"
fi
}
######################启动脚本################################
install_service() {
echo -e "配置系统服务文件"
sleep 1
# 检查服务文件是否存在,如果不存在则创建
sing_box_service_file="/etc/systemd/system/sing-box.service"
if [ ! -f "$sing_box_service_file" ]; then
# 如果服务文件不存在,则创建
cat << EOF > "$sing_box_service_file"
[Unit]
Description=Sing-Box service
Documentation=https://sing-box.sagernet.org
After=network.target nss-lookup.target
[Service]
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
ExecStart=/usr/local/bin/sing-box run -c /etc/sing-box/config.json
Restart=on-failure
RestartSec=1800s
LimitNOFILE=infinity
[Install]
WantedBy=multi-user.target
EOF
echo "sing-box服务创建完成"
else
# 如果服务文件已经存在,则给出警告
echo "警告:sing-box服务文件已存在,无需创建"
fi
sleep 1
systemctl daemon-reload
}
################################安装tproxy################################
install_tproxy() {
if [ -f /etc/os-release ]; then
. /etc/os-release
if [ "$ID" = "debian" ]; then
echo "当前系统为 Debian 系统"
elif [ "$ID" = "ubuntu" ]; then
echo "当前系统为 Ubuntu 系统"
echo "关闭 53 端口监听"
# 确保 DNSStubListener 没有已经被设置为 no
if grep -q "^DNSStubListener=no" /etc/systemd/resolved.conf; then
echo "DNSStubListener 已经设置为 no, 无需修改"
else
sed -i '/^#*DNSStubListener/s/#*DNSStubListener=yes/DNSStubListener=no/' /etc/systemd/resolved.conf
echo "DNSStubListener 已被设置为 no"
systemctl restart systemd-resolved.service
sleep 1
fi
else
echo "当前系统不是 Debian 或 Ubuntu. 请更换系统"
exit 0
fi
else
echo "无法识别系统,请更换 Ubuntu 或 Debian"
exit 0
fi
echo "创建系统转发"
# 判断是否已存在 net.ipv4.ip_forward=1
if ! grep -q '^net.ipv4.ip_forward=1$' /etc/sysctl.conf; then
echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf
fi
# 判断是否已存在 net.ipv6.conf.all.forwarding = 1
if ! grep -q '^net.ipv6.conf.all.forwarding = 1$' /etc/sysctl.conf; then
echo 'net.ipv6.conf.all.forwarding = 1' >> /etc/sysctl.conf
fi
echo "系统转发创建完成"
sleep 1
echo "开始创建nftables tproxy转发"
apt install nftables -y
# 写入tproxy rule
# 判断文件是否存在
if [ ! -f "/etc/systemd/system/sing-box-router.service" ]; then
cat <<EOF > "/etc/systemd/system/sing-box-router.service"
[Unit]
Description=sing-box TProxy Rules
After=network.target
Wants=network.target
[Service]
User=root
Type=oneshot
RemainAfterExit=yes
# there must be spaces before and after semicolons
ExecStart=/sbin/ip rule add fwmark 1 table 100 ; /sbin/ip route add local default dev lo table 100 ; /sbin/ip -6 rule add fwmark 1 table 101 ; /sbin/ip -6 route add local ::/0 dev lo table 101
ExecStop=/sbin/ip rule del fwmark 1 table 100 ; /sbin/ip route del local default dev lo table 100 ; /sbin/ip -6 rule del fwmark 1 table 101 ; /sbin/ip -6 route del local ::/0 dev lo table 101
[Install]
WantedBy=multi-user.target
EOF
echo "sing-box-router 服务创建完成"
else
echo "警告:sing-box-router 服务文件已存在,无需创建"
fi
################################写入nftables################################
check_interfaces
echo "" > "/etc/nftables.conf"
cat <<EOF > "/etc/nftables.conf"
#!/usr/sbin/nft -f
flush ruleset
table inet singbox {
set local_ipv4 {
type ipv4_addr
flags interval
elements = {
10.0.0.0/8,
127.0.0.0/8,
169.254.0.0/16,
172.16.0.0/12,
192.168.0.0/16,
240.0.0.0/4
}
}
set local_ipv6 {
type ipv6_addr
flags interval
elements = {
::ffff:0.0.0.0/96,
64:ff9b::/96,
100::/64,
2001::/32,
2001:10::/28,
2001:20::/28,
2001:db8::/32,
2002::/16,
fc00::/7,
fe80::/10
}
}
chain singbox-tproxy {
fib daddr type { unspec, local, anycast, multicast } return
ip daddr @local_ipv4 return
ip6 daddr @local_ipv6 return
udp dport { 123 } return
meta l4proto { tcp, udp } meta mark set 1 tproxy to :7896 accept
}
chain singbox-mark {
fib daddr type { unspec, local, anycast, multicast } return
ip daddr @local_ipv4 return
ip6 daddr @local_ipv6 return
udp dport { 123 } return
meta mark set 1
}
chain mangle-output {
type route hook output priority mangle; policy accept;
meta l4proto { tcp, udp } skgid != 1 ct direction original goto singbox-mark
}
chain mangle-prerouting {
type filter hook prerouting priority mangle; policy accept;
iifname { wg0, lo, $selected_interface } meta l4proto { tcp, udp } ct direction original goto singbox-tproxy
}
}
EOF
echo "nftables规则写入完成"
echo "清空 nftalbes 规则"
nft flush ruleset
sleep 1
echo "新规则生效"
sleep 1
nft -f /etc/nftables.conf
install_over
}
################################sing-box安装结束################################
install_over() {
echo "启用相关服务"
systemctl enable --now nftables
systemctl enable --now sing-box-router
systemctl enable --now sing-box
}
#####################################获取网卡################################
check_interfaces() {
interfaces=$(ip -o link show | awk -F': ' '{print $2}')
# 输出物理网卡名称
for interface in $interfaces; do
# 检查是否为物理网卡(不包含虚拟、回环等),并排除@符号及其后面的内容
if [[ $interface =~ ^(en|eth).* ]]; then
interface_name=$(echo "$interface" | awk -F'@' '{print $1}') # 去掉@符号及其后面的内容
echo "您的网卡是:$interface_name"
valid_interfaces+=("$interface_name") # 存储有效的网卡名称
fi
done
# 提示用户选择
read -p "脚本自行检测的是否是您要的网卡?(y/n): " confirm_interface
if [ "$confirm_interface" = "y" ]; then
selected_interface="$interface_name"
echo "您选择的网卡是: $selected_interface"
elif [ "$confirm_interface" = "n" ]; then
read -p "请自行输入您的网卡名称: " selected_interface
echo "您输入的网卡名称是: $selected_interface"
else
echo "无效的选择"
fi
}
################################sing-box安装结束################################
install_sing_box_over() {
echo "=================================================================="
echo -e "\t\t\tSing-Box 安装完毕"
echo -e "\t\t\tPowered by www.herozmy.com 2024"
echo -e "\n"
echo -e "singbox运行目录为/etc/sing-box"
echo -e "singbox WebUI地址:http://ip:9090"
echo -e "singbox快捷指令: fake "
echo -e "Mosdns配置脚本: wget https://raw.githubusercontent.com/herozmy/sing-box-mosdns-fakeip/main/mosdns-o.sh && bash mosdns-o.sh"
echo -e "温馨提示:\n本脚本仅在 LXC ubuntu22.04 环境下测试,其他环境未经验证,仅供个人使用"
echo -e "本脚本仅适用于学习与研究等个人用途,请勿用于任何违反国家法律的活动!"
echo "=================================================================="
}
main() {
install_singbox
customize_settings
ui_install
install_service
install_tproxy
install_sing_box_over
}
main