safe_iptables.sh 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. #!/usr/bin/env bash
  2. # IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB 特别感谢 TaterLi 指导
  3. # wget -qO safe_iptables.sh https://git.io/fhUSe && bash safe_iptables.sh
  4. # 初始化安全防火墙规则预设端口; 可以个性修改脚本; 或者 指定INPUT Chain 设置删除
  5. tcp_port="80,443"
  6. udp_port="9999,8000"
  7. # 保存防火墙规则文件路径 /etc/iptables/rules.v4 禁用ipv6
  8. mkdir -p /etc/iptables
  9. # 定义文字颜色
  10. Green="\033[32m" && Red="\033[31m" && GreenBG="\033[42;37m" && RedBG="\033[41;37m" && Font="\033[0m"
  11. # 检查系统
  12. check_sys(){
  13. if [[ -f /etc/redhat-release ]]; then
  14. release="centos"
  15. elif cat /etc/issue | grep -q -E -i "debian"; then
  16. release="debian"
  17. elif cat /etc/issue | grep -q -E -i "ubuntu"; then
  18. release="ubuntu"
  19. elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
  20. release="centos"
  21. elif cat /proc/version | grep -q -E -i "debian"; then
  22. release="debian"
  23. elif cat /proc/version | grep -q -E -i "ubuntu"; then
  24. release="ubuntu"
  25. elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
  26. release="centos"
  27. fi
  28. bit=`uname -m`
  29. }
  30. # 保存防火墙规则
  31. save_iptables(){
  32. if [[ ${release} == "centos" ]]; then
  33. service iptables save
  34. else
  35. iptables-save > /etc/iptables/rules.v4
  36. fi
  37. }
  38. # 设置防火墙规则,下次开机也生效
  39. set_iptables(){
  40. if [[ ${release} == "centos" ]]; then
  41. service iptables save
  42. chkconfig --level 2345 iptables on >/dev/null 2>&1
  43. systemctl enable iptables
  44. else
  45. iptables-save > /etc/iptables/rules.v4
  46. echo -e '#!/bin/bash\n/sbin/iptables-restore < /etc/iptables/rules.v4' > /etc/network/if-pre-up.d/iptables
  47. chmod +x /etc/network/if-pre-up.d/iptables
  48. fi
  49. }
  50. # 禁止网卡IPV6功能,简易管理
  51. disable_ipv6(){
  52. ni=$(ls /sys/class/net | awk {print} | grep -e eth. -e ens. -e venet.)
  53. echo 1 > /proc/sys/net/ipv6/conf/${ni}/disable_ipv6
  54. }
  55. no_use_passwd(){
  56. # 禁用密码登陆
  57. sed -i "s/PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config
  58. sed -i "s/#PasswordAuthentication.*/PasswordAuthentication no/g" /etc/ssh/sshd_config
  59. # 只能SSH2访问,这个安全性高.
  60. sed -i '/Protocol/d' /etc/ssh/sshd_config
  61. echo "Protocol 2" >> /etc/ssh/sshd_config
  62. # 重启ssh服务
  63. systemctl restart ssh
  64. }
  65. srgb18_ga_ddns(){
  66. # 下载 IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB
  67. wget -qO safe_iptables.sh https://git.io/fhUSe
  68. echo -e "${Red} 浏览器 HE.NET 动态DDNS更新IP示例: ${Font}"
  69. echo -e "${Green}https://srgb18.ga:[email protected]/nic/update?hostname=srgb18.ga&myip=35.235.96.85 ${Font}"
  70. curl -4 "srgb18.ga:[email protected]/nic/update?hostname=srgb18.ga"
  71. echo
  72. }
  73. # 隐藏的防火墙设置功能菜单 88
  74. hide_menu(){
  75. echo
  76. echo -e "${RedBG} 隐藏的高级防火墙设置功能 By 蘭雅sRGB ${Font}"
  77. echo -e "${Green}> 1. ss_kcp_speed_udp2raw 端口开放 防火墙规则"
  78. echo -e "> 2. ss brook 电报代理端口开放 防火墙规则"
  79. echo -e "> 3. frps_iptables 防火墙规则"
  80. echo -e "> 4. 菜单项1-2-3全功能开放"
  81. echo -e "> 5. 使用临时${GreenBG} srgb18.ga ${Font}${Green}域名(更新脚本)"
  82. echo -e "> 6. ${RedBG}禁止使用密码远程SSH登陆${Font}"
  83. echo
  84. read -p "请输入数字(1-6):" num_x
  85. case "$num_x" in
  86. 1)
  87. ss_kcp_speed_udp2raw
  88. ;;
  89. 2)
  90. ss_bk_tg
  91. ;;
  92. 3)
  93. frps_iptables
  94. ;;
  95. 4)
  96. ss_bk_tg_frps_iptables
  97. ss_kcp_speed_udp2raw
  98. ;;
  99. 5)
  100. srgb18_ga_ddns
  101. ;;
  102. 6)
  103. no_use_passwd
  104. ;;
  105. *)
  106. ;;
  107. esac
  108. }
  109. # ss_kcp_speed_udp2raw 端口防火墙规则
  110. ss_kcp_speed_udp2raw(){
  111. # ss+kcp+udp2raw 和 # wg+speed+udp2raw 环路设置
  112. iptables -I INPUT -s 127.0.0.1 -p tcp --dport 40000 -j ACCEPT
  113. iptables -I INPUT -s 127.0.0.1 -p udp -m multiport --dport 4000,8888,9999 -j ACCEPT
  114. # udp2raw 转接端口 1999 和 2999
  115. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  116. tcp_port="80,443,1999,2999"
  117. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  118. RELATED_ESTABLISHED
  119. wg-quick down wg0 >/dev/null 2>&1
  120. save_iptables
  121. # 重启 WireGuard
  122. wg-quick up wg0 >/dev/null 2>&1
  123. }
  124. # ss brook 电报代理端口开放 防火墙规则
  125. ss_bk_tg(){
  126. ss_bk_tg="2018,7731,7979"
  127. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  128. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${ss_bk_tg} -j ACCEPT
  129. RELATED_ESTABLISHED
  130. save_iptables
  131. }
  132. # frps_iptables 防火墙规则
  133. frps_iptables(){
  134. frps_port="7000,7500,8080,4443,11122,2222"
  135. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  136. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${frps_port} -j ACCEPT
  137. RELATED_ESTABLISHED
  138. save_iptables
  139. }
  140. # 菜单项1-2-3全功能开放
  141. ss_bk_tg_frps_iptables(){
  142. ss_bk_tg="2018,7731,7979"
  143. frps_port="7000,7500,8080,4443,11122,2222"
  144. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  145. tcp_port="80,443,1999,2999"
  146. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${ss_bk_tg},${frps_port} -j ACCEPT
  147. RELATED_ESTABLISHED
  148. save_iptables
  149. }
  150. # 安全防火墙规则: 只能Ping和SSH
  151. safe_iptables(){
  152. iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  153. ssh_port=$(cat /etc/ssh/sshd_config | grep -e 'Port ' | awk '{print $2}')
  154. if [ ${ssh_port} != '22' ]; then
  155. iptables -A INPUT -p tcp -m tcp --dport ${ssh_port} -j ACCEPT
  156. fi
  157. iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
  158. iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
  159. iptables -A INPUT -j DROP
  160. iptables -P FORWARD DROP
  161. iptables -P OUTPUT ACCEPT
  162. }
  163. # 建立相关链接的优先
  164. RELATED_ESTABLISHED(){
  165. iptables -D INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  166. iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  167. }
  168. # 初始化安全防火墙规则
  169. init_iptables(){
  170. # 清除防火墙规则
  171. iptables -F
  172. disable_ipv6
  173. # 添加 预置 tcp 和 udp端口
  174. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT
  175. iptables -I INPUT -p udp -m multiport --dport ${udp_port} -j ACCEPT
  176. safe_iptables
  177. set_iptables
  178. }
  179. add_tcp_chain(){
  180. echo -e "${GreenBG} 追加TCP端口段到 Chain INPUT ( multiport dports) ${Font}"
  181. read -p "请输入TCP端口段(示例: 7000,7500:7510 ): " port
  182. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  183. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${port} -j ACCEPT
  184. RELATED_ESTABLISHED
  185. save_iptables
  186. }
  187. add_udp_chain(){
  188. echo -e "${GreenBG} 追加UDP端口段到 Chain INPUT ( multiport dports) ${Font}"
  189. read -p "请输入UDP端口段(示例: 7000,7500:7510 ): " port
  190. iptables -D INPUT -p udp -m multiport --dport ${udp_port} -j ACCEPT >/dev/null 2>&1
  191. iptables -I INPUT -p udp -m multiport --dport ${udp_port},${port} -j ACCEPT
  192. RELATED_ESTABLISHED
  193. save_iptables
  194. }
  195. # 删除指定INPUT Chain 序号行
  196. del_chain(){
  197. iptables -nvL --line
  198. echo -e "${RedBG} 删除指定INPUT Chain 序号行 ${Font}"
  199. read -p "请检查INPUT Chain序号行,输入序号(2-X): " no_x
  200. if [[ ${no_x} -ge 2 ]] && [[ ${no_x} -le 20 ]]; then
  201. iptables -D INPUT ${no_x}
  202. else
  203. echo -e "${RedBG}:: INPUT Chain序号行选择错误,没有删除!${Font}"
  204. fi
  205. save_iptables
  206. }
  207. # 禁止ICMP,禁止Ping服务器
  208. no_ping(){
  209. iptables -D INPUT -p icmp --icmp-type echo-request -j ACCEPT
  210. }
  211. no_iptables(){
  212. # Debian 和 Centos 关闭防火墙命令分别是
  213. iptables -F && iptables-save > /etc/iptables/rules.v4 >/dev/null 2>&1
  214. iptables -F && service iptables save >/dev/null 2>&1
  215. }
  216. # 设置菜单
  217. start_menu(){
  218. echo
  219. echo -e "${GreenBG} IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB 特别感谢 TaterLi 指导 ${Font}"
  220. echo -e "${RedBG} 原则: 规则不宜超过10条,3-5条最好,每增加规则系统都忙很多。 ${Font}"
  221. echo -e "${Green}> 1. 追加 TCP 多端口到防火墙规则"
  222. echo -e "> 2. 追加 UDP 多端口到防火墙规则"
  223. echo -e "> 3. 删除指定INPUT Chain 序号行(原则: 精简规则)"
  224. echo -e "> 4. 禁止ICMP,禁止Ping服务器"
  225. echo -e "> 5. 重置初始化安全防火墙规则(首次需运行)"
  226. echo -e "> 6. 退出设置"
  227. echo "------------------------------------------------------------"
  228. echo -e "> 7. 关闭 IPTABLES 防火墙"
  229. echo -e "> 8. ${RedBG} 小白一键设置防火墙 ${Font}"
  230. echo
  231. read -p "请输入数字(1-8):" num
  232. case "$num" in
  233. 1)
  234. add_tcp_chain
  235. ;;
  236. 2)
  237. add_udp_chain
  238. ;;
  239. 3)
  240. del_chain
  241. ;;
  242. 4)
  243. no_ping
  244. ;;
  245. 5)
  246. init_iptables
  247. ;;
  248. 6)
  249. netstat -ltup
  250. exit 1
  251. ;;
  252. 7)
  253. no_iptables
  254. ;;
  255. 8)
  256. init_iptables
  257. ss_kcp_speed_udp2raw
  258. ;;
  259. 88)
  260. hide_menu
  261. ;;
  262. *)
  263. echo
  264. ;;
  265. esac
  266. iptables -nvL --line
  267. }
  268. clear
  269. check_sys
  270. start_menu