safe_iptables.sh 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. # 重启ssh服务
  60. systemctl restart ssh
  61. }
  62. srgb18_ga_ddns(){
  63. # 下载 IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB
  64. wget -qO safe_iptables.sh https://git.io/fhUSe
  65. echo -e "${Red} 浏览器 HE.NET 动态DDNS更新IP示例: ${Font}"
  66. echo -e "${Green}https://srgb18.ga:[email protected]/nic/update?hostname=srgb18.ga&myip=35.235.96.85 ${Font}"
  67. curl -4 "srgb18.ga:[email protected]/nic/update?hostname=srgb18.ga"
  68. echo
  69. }
  70. # 隐藏的防火墙设置功能菜单 88
  71. hide_menu(){
  72. echo
  73. echo -e "${RedBG} 隐藏的高级防火墙设置功能 By 蘭雅sRGB ${Font}"
  74. echo -e "${Green}> 1. ss_kcp_speed_udp2raw 端口开放 防火墙规则"
  75. echo -e "> 2. ss brook 电报代理端口开放 防火墙规则"
  76. echo -e "> 3. frps_iptables 防火墙规则"
  77. echo -e "> 4. 菜单项1-2-3全功能开放"
  78. echo -e "> 5. 使用临时${GreenBG} srgb18.ga ${Font}${Green}域名(更新脚本)"
  79. echo -e "> 6. ${RedBG}禁止使用密码远程SSH登陆${Font}"
  80. echo
  81. read -p "请输入数字(1-6):" num_x
  82. case "$num_x" in
  83. 1)
  84. ss_kcp_speed_udp2raw
  85. ;;
  86. 2)
  87. ss_bk_tg
  88. ;;
  89. 3)
  90. frps_iptables
  91. ;;
  92. 4)
  93. ss_bk_tg_frps_iptables
  94. ss_kcp_speed_udp2raw
  95. ;;
  96. 5)
  97. srgb18_ga_ddns
  98. ;;
  99. 6)
  100. no_use_passwd
  101. ;;
  102. *)
  103. ;;
  104. esac
  105. }
  106. # ss_kcp_speed_udp2raw 端口防火墙规则
  107. ss_kcp_speed_udp2raw(){
  108. # ss+kcp+udp2raw 和 # wg+speed+udp2raw 环路设置
  109. iptables -I INPUT -s 127.0.0.1 -p tcp --dport 40000 -j ACCEPT
  110. iptables -I INPUT -s 127.0.0.1 -p udp -m multiport --dport 4000,8888,9999 -j ACCEPT
  111. # udp2raw 转接端口 1999 和 2999
  112. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  113. tcp_port="80,443,1999,2999"
  114. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  115. RELATED_ESTABLISHED
  116. wg-quick down wg0 >/dev/null 2>&1
  117. save_iptables
  118. # 重启 WireGuard
  119. wg-quick up wg0 >/dev/null 2>&1
  120. }
  121. # ss brook 电报代理端口开放 防火墙规则
  122. ss_bk_tg(){
  123. ss_bk_tg="2018,7731,7979"
  124. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  125. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${ss_bk_tg} -j ACCEPT
  126. RELATED_ESTABLISHED
  127. save_iptables
  128. }
  129. # frps_iptables 防火墙规则
  130. frps_iptables(){
  131. frps_port="7000,7500,8080,4443,11122,2222"
  132. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  133. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${frps_port} -j ACCEPT
  134. RELATED_ESTABLISHED
  135. save_iptables
  136. }
  137. # 菜单项1-2-3全功能开放
  138. ss_bk_tg_frps_iptables(){
  139. ss_bk_tg="2018,7731,7979"
  140. frps_port="7000,7500,8080,4443,11122,2222"
  141. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  142. tcp_port="80,443,1999,2999"
  143. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${ss_bk_tg},${frps_port} -j ACCEPT
  144. RELATED_ESTABLISHED
  145. save_iptables
  146. }
  147. # 安全防火墙规则: 只能Ping和SSH
  148. safe_iptables(){
  149. iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  150. ssh_port=$(cat /etc/ssh/sshd_config | grep -e 'Port ' | awk '{print $2}')
  151. if [ ${ssh_port} != '22' ]; then
  152. iptables -A INPUT -p tcp -m tcp --dport ${ssh_port} -j ACCEPT
  153. fi
  154. iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
  155. iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
  156. iptables -A INPUT -j DROP
  157. iptables -P FORWARD DROP
  158. iptables -P OUTPUT ACCEPT
  159. }
  160. # 建立相关链接的优先
  161. RELATED_ESTABLISHED(){
  162. iptables -D INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  163. iptables -I INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  164. }
  165. # 初始化安全防火墙规则
  166. init_iptables(){
  167. # 清除防火墙规则
  168. iptables -F
  169. disable_ipv6
  170. # 添加 预置 tcp 和 udp端口
  171. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT
  172. iptables -I INPUT -p udp -m multiport --dport ${udp_port} -j ACCEPT
  173. safe_iptables
  174. set_iptables
  175. }
  176. add_tcp_chain(){
  177. echo -e "${GreenBG} 追加TCP端口段到 Chain INPUT ( multiport dports) ${Font}"
  178. read -p "请输入TCP端口段(示例: 7000,7500:7510 ): " port
  179. iptables -D INPUT -p tcp -m multiport --dport ${tcp_port} -j ACCEPT >/dev/null 2>&1
  180. iptables -I INPUT -p tcp -m multiport --dport ${tcp_port},${port} -j ACCEPT
  181. RELATED_ESTABLISHED
  182. save_iptables
  183. }
  184. add_udp_chain(){
  185. echo -e "${GreenBG} 追加UDP端口段到 Chain INPUT ( multiport dports) ${Font}"
  186. read -p "请输入UDP端口段(示例: 7000,7500:7510 ): " port
  187. iptables -D INPUT -p udp -m multiport --dport ${udp_port} -j ACCEPT >/dev/null 2>&1
  188. iptables -I INPUT -p udp -m multiport --dport ${udp_port},${port} -j ACCEPT
  189. RELATED_ESTABLISHED
  190. save_iptables
  191. }
  192. # 删除指定INPUT Chain 序号行
  193. del_chain(){
  194. iptables -nvL --line
  195. echo -e "${RedBG} 删除指定INPUT Chain 序号行 ${Font}"
  196. read -p "请检查INPUT Chain序号行,输入序号(2-X): " no_x
  197. if [[ ${no_x} -ge 2 ]] && [[ ${no_x} -le 20 ]]; then
  198. iptables -D INPUT ${no_x}
  199. else
  200. echo -e "${RedBG}:: INPUT Chain序号行选择错误,没有删除!${Font}"
  201. fi
  202. save_iptables
  203. }
  204. # 禁止ICMP,禁止Ping服务器
  205. no_ping(){
  206. iptables -D INPUT -p icmp --icmp-type echo-request -j ACCEPT
  207. }
  208. no_iptables(){
  209. # Debian 和 Centos 关闭防火墙命令分别是
  210. iptables -F && iptables-save > /etc/iptables/rules.v4 >/dev/null 2>&1
  211. iptables -F && service iptables save >/dev/null 2>&1
  212. }
  213. # 设置菜单
  214. start_menu(){
  215. echo
  216. echo -e "${GreenBG} IPTABLES 设置防火墙规则 脚本 By 蘭雅sRGB 特别感谢 TaterLi 指导 ${Font}"
  217. echo -e "${RedBG} 原则: 规则不宜超过10条,3-5条最好,每增加规则系统都忙很多。 ${Font}"
  218. echo -e "${Green}> 1. 追加 TCP 多端口到防火墙规则"
  219. echo -e "> 2. 追加 UDP 多端口到防火墙规则"
  220. echo -e "> 3. 删除指定INPUT Chain 序号行(原则: 精简规则)"
  221. echo -e "> 4. 禁止ICMP,禁止Ping服务器"
  222. echo -e "> 5. 重置初始化安全防火墙规则(首次需运行)"
  223. echo -e "> 6. 退出设置"
  224. echo "------------------------------------------------------------"
  225. echo -e "> 7. 关闭 IPTABLES 防火墙"
  226. echo -e "> 8. ${RedBG} 小白一键设置防火墙 ${Font}"
  227. echo
  228. read -p "请输入数字(1-8):" num
  229. case "$num" in
  230. 1)
  231. add_tcp_chain
  232. ;;
  233. 2)
  234. add_udp_chain
  235. ;;
  236. 3)
  237. del_chain
  238. ;;
  239. 4)
  240. no_ping
  241. ;;
  242. 5)
  243. init_iptables
  244. ;;
  245. 6)
  246. netstat -ltup
  247. exit 1
  248. ;;
  249. 7)
  250. no_iptables
  251. ;;
  252. 8)
  253. init_iptables
  254. ss_kcp_speed_udp2raw
  255. ;;
  256. 88)
  257. hide_menu
  258. ;;
  259. *)
  260. echo
  261. ;;
  262. esac
  263. iptables -nvL --line
  264. }
  265. clear
  266. check_sys
  267. start_menu