|
首先任意运行一条iptables防火墙规则配置命令如开通80端口: % h. P! _! `+ J; H
iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT ' \( _1 E( e7 |( c8 ?
然后对iptables服务进行保存:
. J( }7 [) |+ U/ ~4 W3 J
service iptables save 9 V; e3 z& m& l
如果失败报出: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. 3 }# x# X P7 h" G6 @% }- S
解决方法:) n4 q* I9 q# _" K) q& h8 m
systemctl stop firewalld 关闭防火墙 ! O' g$ F" ?1 m
yum install iptables-services 安装或更新服务
& \2 j# I8 h2 Q$ M5 w* l再使用systemctl enable iptables 启动iptables
! J9 R( _" F' J5 y; e$ K; c
最后 systemctl start iptables 打开iptables
: r) W, f0 O- F& H, c' X
再执行service iptables save
/ E5 _( N/ y# ~4 A( `
然后重启iptables服务: 0 R' I9 O8 G* \
service iptables restart 9 s0 m7 Y- v) J' u2 |& B# b
执行完毕之后/etc/syscofig/iptables文件就有了
: F2 V, O8 n3 _% ]4 E |