centos8 常用的防火牆命令 MARK一下

2021-10-24 08:34:45 字數 553 閱讀 2077

一、防火牆常用命令

(1)設定開機啟用防火牆:systemctl enable firewalld.service

(2)設定開機禁用防火牆:systemctl disable firewalld.service

(3)啟動防火牆:systemctl start firewalld

(4)關閉防火牆:systemctl stop firewalld

(5)檢查防火牆狀態:systemctl status firewalld

二、使用firewall-cmd配置埠

(1)檢視防火牆狀態:firewall-cmd --state

(3)檢視開放的埠:firewall-cmd --list-ports

(4)開啟防火牆埠:firewall-cmd --zone=public --add-port=9200/tcp --permanent

命令含義:

–zone #作用域

–add-port=9200/tcp #新增埠,格式為:埠/通訊協議

–permanent #永久生效,沒有此引數重啟後失效

centos8 防火牆常用操作

檢視防火牆狀態 方法1 firewall cmd state 方法2 systemctl status firewalld停止防火牆 systemctl stop firewalld開啟防火牆 systemctl start firewalld設定防火牆開機啟動 systemctl enable f...

centos8 防火牆常用命令

1 安裝 yum install iptables services 安裝iptables 2 systemctl使用 systemctl unmask firewalld 執行命令,即可實現取消服務的鎖定 systemctl mask firewalld 下次需要鎖定該服務時執行 systemct...

centos8防火牆配置

1 安裝 yum install iptables services 安裝iptables 2 systemctl使用 systemctl unmask firewalld 執行命令,即可實現取消服務的鎖定 systemctl mask firewalld 下次需要鎖定該服務時執行 systemct...