CentOS7下防火牆相關命令

2022-03-12 07:58:48 字數 468 閱讀 3942

聽群友說是service iptables stop比systemctl disable firewalld的許可權更高,當時也確實是stop之後才把防火牆真正給關閉的。

1:檢視防火狀態

systemctl status firewalld

service iptables status

2:暫時關閉防火牆

systemctl stop firewalld

service iptables stop

3:永久關閉防火牆

systemctl disable firewalld

chkconfig iptables off

4:重啟防火牆

systemctl enable firewalld

service iptables restart

5:永久關閉後重啟(未測試)

chkconfig iptables on

CentOS7 防火牆相關命令

centos 7.0預設使用的是firewall作為防火牆,代替了原來centos6的iptables。firewall cmd state 或者 systemctl status firewall 開啟 systemctl start firewalld.service 關閉 systemctl ...

Centos7防火牆相關

在新安裝的linux系統中,防火牆預設是被禁掉的,一般也沒有配置過任何防火牆的策略,所有不存在 etc sysconfig iptables檔案。解決辦法 1.新建立此檔案 vim etc sysconfig iptables root localhost vim etc sysconfig ipt...

centos7 防火牆等相關命令

centos centos7 預設使用firewall systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall 開機啟動 firewall cmd state 檢視預設防火牆...