1. 程式人生 > >Centos 7 之service iptables save 指令使用失敗的結局方案

Centos 7 之service iptables save 指令使用失敗的結局方案

今天我儲存轉發規則的時候,發現service iptables save 無效,而且報錯 
[[email protected] bin]# service iptables save 
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.,產生這個問題的原因是iptables的服務沒有安裝

安裝iptables服務
安裝完成iptables後,在使用service iptables save方法就沒有問題了

#安裝或更新服務
yum install iptables-services 

#啟用iptables
systemctl enable iptables 

#啟動iptables
systemctl start iptables 開啟iptables
--------------------- 

關閉防火牆
 #停止firewall
systemctl stop firewalld.service

#禁止firewall開機啟動
systemctl disable firewalld.service 

#檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)
firewall-cmd --state 


原文:https://blog.csdn.net/yelllowcong/article/details/78229862