centos8下防火牆控制相關操作

2021-10-04 06:31:30 字數 845 閱讀 3630

//防火牆服務 firewalld

systemctl unmask firewalld                    #執行命令,即可實現取消服務的鎖定

systemctl mask firewalld                    # 下次需要鎖定該服務時執行

systemctl start firewalld.service               #啟動防火牆  

systemctl stop firewalld.service                #停止防火牆  

systemctl reloadt firewalld.service             #過載配置

systemctl restart firewalld.service             #重啟服務

systemctl status firewalld.service              #顯示服務的狀態

systemctl enable firewalld.service              #在開機時啟用服務

systemctl disable firewalld.service             #在開機時禁用服務

systemctl is-enabled firewalld.service          #檢視服務是否開機啟動

systemctl list-unit-files|grep enabled          #檢視已啟動的服務列表

systemctl --failed                                     #檢視啟動失敗的服務列表

其它服務如mysqld等基本也是這種操作方式。

centos8防火牆配置

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

CentOS8防火牆配置

1.檢視防火牆 firewalld 服務的狀態 systemctl status firewalld firewalld.service firewalld dynamic firewall daemon loaded loaded usr lib systemd system firewalld....

centos8禁用防火牆

輸入 systemctl status firewalld.service檢視防火牆狀態 框中 active running 顯示防火牆處於啟用狀態 輸入 systemctl stop firewalld.service執行停止執行防火牆命令 輸入 systemctl status firewall...