forked from hongwenjun/vps_setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
safe_iptables.sh
313 lines (270 loc) · 9.36 KB
/
safe_iptables.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
#!/usr/bin/env bash
# IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB 特别感谢 TaterLi 指导
# wget -qO safe_iptables.sh https://git.io/fhUSe && bash safe_iptables.sh
# 初始化安全防火墙规则预设端口; 可以个性修改脚本; 或者 指定INPUT Chain 设置删除
tcp_port="80,443"
udp_port="9999,8000"
# 保存防火墙规则文件路径 /etc/iptables/rules.v4 禁用ipv6
mkdir -p /etc/iptables
# 定义文字颜色
Green="\033[32m" && Red="\033[31m" && GreenBG="\033[42;37m" && RedBG="\033[41;37m" && Font="\033[0m"
# 检查系统
check_sys(){
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
fi
bit=`uname -m`
}
# 保存防火墙规则
save_iptables(){
if [[ ${release} == "centos" ]]; then
service iptables save
else
iptables-save > /etc/iptables/rules.v4
fi
}
# 设置防火墙规则,下次开机也生效
set_iptables(){
if [[ ${release} == "centos" ]]; then
service iptables save
chkconfig --level 2345 iptables on >/dev/null 2>&1
systemctl enable iptables
else
iptables-save > /etc/iptables/rules.v4
echo -e '#!/bin/bash\n/sbin/iptables-restore < /etc/iptables/rules.v4' > /etc/network/if-pre-up.d/iptables
chmod +x /etc/network/if-pre-up.d/iptables
fi
}
# 禁止网卡IPV6功能,简易管理
disable_ipv6(){
ni=$(ls /sys/class/net | awk {print} | grep -e eth. -e ens. -e venet.)
echo 1 > /proc/sys/net/ipv6/conf/${ni}/disable_ipv6
}
no_use_passwd(){
# 禁用密码登陆
sed -i "s/PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config
sed -i "s/#PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config
# 只能SSH2访问,这个安全性高.
sed -i '/Protocol/d' /etc/ssh/sshd_config
echo "Protocol 2" >> /etc/ssh/sshd_config
# 重启ssh服务
systemctl restart ssh
}
srgb18_ga_ddns(){
# 下载 IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB
wget -qO safe_iptables.sh https://git.io/fhUSe
echo -e "${Red} 浏览器 HE.NET 动态DDNS更新IP示例: ${Font}"
echo -e "${Green}https://srgb18.ga:[email protected]/nic/update?hostname=srgb18.ga&myip=35.235.96.85 ${Font}"
curl -4 "srgb18.ga:[email protected]/nic/update?hostname=srgb18.ga"
echo
}
# 隐藏的防火墙设置功能菜单 88
hide_menu(){
echo
echo -e "${RedBG} 隐藏的高级防火墙设置功能 By 蘭雅sRGB ${Font}"
echo -e "${Green}> 1. ss_kcp_speed_udp2raw 端口开放 防火墙规则"
echo -e "> 2. ss brook 电报代理端口开放 防火墙规则"
echo -e "> 3. frps_iptables 防火墙规则"
echo -e "> 4. 菜单项1-2-3全功能开放"
echo -e "> 5. 使用临时${GreenBG} srgb18.ga ${Font}${Green}域名(更新脚本)"
echo -e "> 6. ${RedBG}禁止使用密码远程SSH登陆${Font}"
echo
read -p "请输入数字(1-6):" num_x
case "$num_x" in
1)
ss_kcp_speed_udp2raw
;;
2)
ss_bk_tg
;;
3)
frps_iptables
;;
4)
ss_bk_tg_frps_iptables
ss_kcp_speed_udp2raw
;;
5)
srgb18_ga_ddns
;;
6)
no_use_passwd
;;
*)
;;
esac
}
# ss_kcp_speed_udp2raw 端口防火墙规则
ss_kcp_speed_udp2raw(){
# ss+kcp+udp2raw 和 # wg+speed+udp2raw 环路设置
iptables -I INPUT -s 127.0.0.1 -p tcp --dport 40000 -j ACCEPT
iptables -I INPUT -s 127.0.0.1 -p udp -m multiport --dport 4000,8888,9999 -j ACCEPT
# udp2raw 转接端口 1999 和 2999
iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
tcp_port="80,443,1999,2999"
iptables -I INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
RELATED_ESTABLISHED
wg-quick down wg0 >/dev/null 2>&1
save_iptables
# 重启 WireGuard
wg-quick up wg0 >/dev/null 2>&1
}
# ss brook 电报代理端口开放 防火墙规则
ss_bk_tg(){
ss_bk_tg="2018,7731,7979"
iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${ss_bk_tg} -j ACCEPT
RELATED_ESTABLISHED
save_iptables
}
# frps_iptables 防火墙规则
frps_iptables(){
frps_port="7000,7500,8080,4443,11122,2222"
iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${frps_port} -j ACCEPT
RELATED_ESTABLISHED
save_iptables
}
# 菜单项1-2-3全功能开放
ss_bk_tg_frps_iptables(){
ss_bk_tg="2018,7731,7979"
frps_port="7000,7500,8080,4443,11122,2222"
iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
tcp_port="80,443,1999,2999"
iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${ss_bk_tg},${frps_port} -j ACCEPT
RELATED_ESTABLISHED
save_iptables
}
# 安全防火墙规则: 只能Ping和SSH
safe_iptables(){
iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
ssh_port=$(cat /etc/ssh/sshd_config | grep -e 'Port ' | awk '{print $2}')
if [ ${ssh_port} != '22' ]; then
iptables -A INPUT -p tcp -m tcp --dport ${ssh_port} -j ACCEPT
fi
iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
iptables -A INPUT -j DROP
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT
}
# 建立相关链接的优先
RELATED_ESTABLISHED(){
iptables -D INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
}
# 初始化安全防火墙规则
init_iptables(){
# 清除防火墙规则
iptables -F
disable_ipv6
# 添加 预置 tcp 和 udp端口
iptables -I INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT
iptables -I INPUT -p udp -m multiport --dport ${udp_port} -j ACCEPT
safe_iptables
set_iptables
}
add_tcp_chain(){
echo -e "${GreenBG} 追加TCP端口段到 Chain INPUT ( multiport dports) ${Font}"
read -p "请输入TCP端口段(示例: 7000,7500:7510 ): " port
iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${port} -j ACCEPT
RELATED_ESTABLISHED
save_iptables
}
add_udp_chain(){
echo -e "${GreenBG} 追加UDP端口段到 Chain INPUT ( multiport dports) ${Font}"
read -p "请输入UDP端口段(示例: 7000,7500:7510 ): " port
iptables -D INPUT -p udp -m multiport --dport ${udp_port} -j ACCEPT >/dev/null 2>&1
iptables -I INPUT -p udp -m multiport --dport ${udp_port},${port} -j ACCEPT
RELATED_ESTABLISHED
save_iptables
}
# 删除指定INPUT Chain 序号行
del_chain(){
iptables -nvL --line
echo -e "${RedBG} 删除指定INPUT Chain 序号行 ${Font}"
read -p "请检查INPUT Chain序号行,输入序号(2-X): " no_x
if [[ ${no_x} -ge 2 ]] && [[ ${no_x} -le 20 ]]; then
iptables -D INPUT ${no_x}
else
echo -e "${RedBG}:: INPUT Chain序号行选择错误,没有删除!${Font}"
fi
save_iptables
}
# 禁止ICMP,禁止Ping服务器
no_ping(){
iptables -D INPUT -p icmp --icmp-type echo-request -j ACCEPT
}
no_iptables(){
# Debian 和 Centos 关闭防火墙命令分别是
iptables -F && iptables-save > /etc/iptables/rules.v4 >/dev/null 2>&1
iptables -F && service iptables save >/dev/null 2>&1
}
# 设置菜单
start_menu(){
echo
echo -e "${GreenBG} IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB 特别感谢 TaterLi 指导 ${Font}"
echo -e "${RedBG} 原则: 规则不宜超过10条,3-5条最好,每增加规则系统都忙很多。 ${Font}"
echo -e "${Green}> 1. 追加 TCP 多端口到防火墙规则"
echo -e "> 2. 追加 UDP 多端口到防火墙规则"
echo -e "> 3. 删除指定INPUT Chain 序号行(原则: 精简规则)"
echo -e "> 4. 禁止ICMP,禁止Ping服务器"
echo -e "> 5. 重置初始化安全防火墙规则(首次需运行)"
echo -e "> 6. 退出设置"
echo "------------------------------------------------------------"
echo -e "> 7. 关闭 IPTABLES 防火墙"
echo -e "> 8. ${RedBG} 小白一键设置防火墙 ${Font}"
echo
read -p "请输入数字(1-8):" num
case "$num" in
1)
add_tcp_chain
;;
2)
add_udp_chain
;;
3)
del_chain
;;
4)
no_ping
;;
5)
init_iptables
;;
6)
netstat -ltup
exit 1
;;
7)
no_iptables
;;
8)
init_iptables
ss_kcp_speed_udp2raw
;;
88)
hide_menu
;;
*)
echo
;;
esac
iptables -nvL --line
}
clear
check_sys
start_menu