|
首先任意运行一条iptables防火墙规则配置命令如开通80端口: 6 s% }6 W$ j8 P1 ?( S' o0 E0 `: G' l
iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT
E6 e) F3 i- b, i+ }! j3 U
然后对iptables服务进行保存: 3 z0 o$ W; i' b' w2 D
service iptables save
! [& X( }! p2 q0 r# I/ u7 G
如果失败报出:The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl. + v9 b6 T: G! M# ~6 T6 p4 d
解决方法:
2 X2 j3 G. E3 r! t& {7 ]2 |0 @systemctl stop firewalld 关闭防火墙 ' b+ N6 M0 ^$ \+ c: G% @
yum install iptables-services 安装或更新服务
- ^6 q: a: {8 G再使用systemctl enable iptables 启动iptables
. V) |, u% a. a最后 systemctl start iptables 打开iptables
2 {6 H) P( K9 N8 e5 M0 l8 H
再执行service iptables save " G! Y8 d3 T" H2 Y
然后重启iptables服务: ( a/ {* j# x- L) j' Y) T. W U/ a$ s
service iptables restart
& ` i2 M8 ]& J, S0 M# Q( C
执行完毕之后/etc/syscofig/iptables文件就有了
6 C$ v: ~/ E+ n' H F |