不同版本的Linux防火牆關閉和開啟

2021-08-22 13:04:13 字數 924 閱讀 4267

ubuntu 的防火牆關閉與啟動。

* 關閉ubuntu的防火牆開機自啟*

ufw disable
* 開啟ubuntu的防火牆開機自啟*

ufw enable
redhat系列包括redhat ,centos 和 fedora不同版本關閉防火牆的方式並不一樣

redhat,centos6及fedora舊的版本關閉防火牆方式

命令作用

service iptables start

開啟防火牆

service iptables stop

關閉防火牆

service iptables status

檢視防火牆狀態

chkconfig iptables on

防火牆開機自啟

chkconfig iptables off

禁止開機自啟

chkconfig iptables status

檢視是否為開機自啟

redhat,centos7及fedora新的版本關閉防火牆方式命令

作用systemctl start firewalld

開啟防火牆

systemctl stop firewalld

關閉防火牆

systemctl status firewalld

檢視防火牆狀態

systemctl enable firewalld

防火牆開機自啟

systemctl disable firewalld

禁止開機自啟

systemctl is-enabled firewalld

檢視是否為開機自啟

CentOS不同版本關閉防火牆

檢視防火牆狀態 root centos6 service iptables status iptables 未執行防火牆。開啟防火牆 root centos6 service iptables start 關閉防火牆 root centos6 service iptables stop檢視防火牆狀態...

linux各個版本的關閉防火牆

service iptables start 開啟防火牆 service iptables stop 關閉防火牆 service iptables status 檢視防火牆狀態 chkconfig iptables on 防火牆開機自啟 chkconfig iptables off 禁止開機自啟 c...

Linux 關閉防火牆

centos 6 中防火牆預設是 iptables,而 centos 7 中防火牆預設是 firewall。a 檢視防火牆狀態 service iptable statusb 臨時關閉防火牆 臨時關閉防火牆 servcie iptables stop 臨時啟動防火牆 service iptables...