CentOS 7 - 在操作系统启动时加载 iptables 设置
我想iptables使用 bash 脚本在操作系统启动时加载 CentOS 7 上的以下设置。 我怎样才能做到这一点? #!/bin/bash iptables -I OUTPUT -d 0.0.0.0/0 -j ACCEPT iptables -I FORWARD -d 0.0.0.0/0 -j ACCEPT iptables -I INPUT -d 0.0.0.0/0 -j ACCEPT iptables -t nat -I PREROUTING -d 0.0.0.0/0 -p tcp --dport 222 -j DNAT --to-destin...