CentOS關閉防火牆及相關命令

2021-07-30 23:47:45 字數 749 閱讀 8666

centos預設的防火牆為firewalld,在一些非生產環境中防火牆管理並不是我們關注的重點,至此我們需要將其關閉。

systemctl start firewalld
systemctl stop firewalld
systemctl status firewalld
systemctl disable firewalld
systemctl enable firewalld
注:以上命令需要以管理員使用者執行

systemctl disable firewalld.service
至此防火牆關閉成功!!

CentOS 關閉防火牆

centos 6 1 永久性生效,重啟後不會復原 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後復原 開啟 service iptables start 關閉 service iptables stop centos 7 s...

centos 關閉防火牆及 selinux

1 檢視防火牆狀態 firewall cmd state 2 停止firewall systemctl stop firewalld.service 3 禁止firewall開機啟動 systemctl disable firewalld.service 4 關閉selinux vi etc sel...

centos防火牆關閉操作

centos防火牆關閉操作 cnetos 6.5之前的版本 sudo service firewalld stop 停止服務 sudo service firewalld start 啟動服務 sudo service firewalld status 檢視狀態 centos7 sudo syste...