1. 程式人生 > >centos7的一些變化,firewalld替換iptables、systemctl 替換service

centos7的一些變化,firewalld替換iptables、systemctl 替換service


1.防火牆命令用firewalld取代了iptables了。

檢視防火牆狀態   systemctl status firewalld
臨時關閉防火牆命令,reboot之後,防火牆自動起來。   systemctl stop firewalld
永久關閉防火牆命令。reboot之後,防火牆不會自動啟動    systemctl disable firewalld

啟動防火牆命令   systemctl enable firewalld

2.用systemctl 代替了service,不過為了向後相容,centos7中,service還是可以用的。

如使用systemctl關閉防火牆
systemctl stop firewalld.service