CentOS6關閉防火牆使用以下命令

2021-08-29 00:15:44 字數 663 閱讀 3513

cmd命令關閉防火牆

net stop mpssvc

centos6關閉防火牆使用以下命令,

//臨時關閉

service iptables stop

//禁止開機啟動

chkconfig iptables off

centos7中若使用同樣的命令會報錯,

stop  iptables.service

failed to stop iptables.service: unit iptables.service not loaded.

這是因為centos7版本後防火牆預設使用firewalld,因此在centos7中關閉防火牆使用以下命令,

//臨時關閉

systemctl stop firewalld

//禁止開機啟動

systemctl disable firewalld

removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.

removed symlink /etc/systemd/system/dbus-org.fedoraproject.firewalld1.service.

當然,如果安裝了iptables-service,也可以使用下面的命令,

centos6關閉selinux和防火牆

vi etc selinux config 將檔案裡標紅的部分改為disabled this file controls the state of selinux on the system.selinux can take one of these three values enforcing s...

centos 6 防火牆 配置

1 基本操作 檢視防火牆狀態 service iptables status 停止防火牆 service iptables stop 啟動防火牆 service iptables start 重啟防火牆 service iptables restart 永久關閉防火牆 chkconfig iptab...

centos 6和centos7關閉防火牆的方法

centos 6 關閉命令 service iptables stop 永久關閉防火牆 chkconfig iptables off 兩個命令同時執行,執行完成後檢視防火牆關閉狀態 service iptables status centos7 的防火牆配置跟以前版本有很大區別,經過大量嘗試,終於找...