|
首先任意运行一条iptables防火墙规则配置命令如开通80端口:
6 h9 p s" _" a& q; K% M" N
iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT 4 O+ d- {: y* n( o
然后对iptables服务进行保存: 4 _5 d% e# V, U! l) p/ [
service iptables save 4 X2 N5 a# \5 }8 [$ \
如果失败报出: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 G8 a: R* t/ ]/ s
解决方法:
. l8 D0 P' d d7 lsystemctl stop firewalld 关闭防火墙 % x" Q9 y, B" ^( z$ s
yum install iptables-services 安装或更新服务
& Y2 V% P/ I. x再使用systemctl enable iptables 启动iptables
8 w/ V; s4 Q1 A- M' h( _: S# `
最后 systemctl start iptables 打开iptables
. |2 H. E9 a; H
再执行service iptables save
- |& k9 B- ?( t
然后重启iptables服务: 3 k2 t% m/ |" c" e
service iptables restart $ q8 F8 h& q$ Y
执行完毕之后/etc/syscofig/iptables文件就有了
4 x# g& \1 h y |