CentOS 經常使用的防火牆命令

2021-10-23 22:51:26 字數 966 閱讀 9295

安裝防火牆:

yum install firewalld systemd -y

檢視防火牆狀態:

systemctl status firewalld 或 firewall-cmd --state

關閉防火牆:

systemctl stop firewalld 或

開啟防火牆:

systemctl start firewalld

重啟防火牆:

systemctl reload firewalld 或 firewall-cmd --reload

檢視防火牆開機是否啟動:

systemctl is-enabled firewalld

開機禁用防火牆:

systemctl disable firewalld

開放埠:

firewall-cmd --add-port=9300/tcp

永久開放埠:

firewall-cmd --add-port=9300/tcp --permanent

關閉埠:

firewall-cmd --remove-port=9300/tcp

永久關閉埠:

firewall-cmd --remove-port=9300/tcp --permanent

檢視已經開放的埠:

firewall-cmd --list-ports

如果報錯:firewalld is not running 就是防火牆未開啟

CentOS7 firewalld防火牆命令

centos 7.0預設使用的是firewall作為防火牆。下面介紹一些防火牆常用的命令 centos7開始已經放棄iptables,轉而使用firewalld。從本質意義上講,iptables和firewalld是防火牆軟體,實現方式都是呼叫核心netfilter。firewalld提供了乙個動態...

Centos 7 防火牆firewalld命令

一 防火牆的開啟 關閉 禁用命令 1 設定開機啟用防火牆 systemctl enable firewalld.service 2 設定開機禁用防火牆 systemctl disable firewalld.service 3 啟動防火牆 systemctl start firewalld 4 關閉...

centos7關閉防火牆 防火牆的基本使用

檢視防火牆狀態 systemctl status firewalld.service 如圖 綠的running表示防火牆開啟 執行關閉命令 systemctl stop firewalld.service 再次執行檢視防火牆命令 systemctl status firewalld.service ...