常用的防火牆命令總結

2021-10-08 15:57:12 字數 1039 閱讀 5059

為與人方便,也為了自己方便,現將防火牆常用的命令總結如下。

1.檢視防火牆狀態,開啟或者關閉狀態。not running 關閉狀態 running 開啟狀態

//檢視防火牆狀態命令

firewall-cmd --state

如下圖,為未開啟防火牆。

2.開啟防火牆

// 開啟防火牆命令

systemctl start firewalld.service

3.設定防火牆開機自啟

// 設定防火牆開機自啟命令

systemctl enable firewalld.service

4.檢視防火牆開機自啟是否設定成功

// 檢視防火牆開機自啟是否設定成功命令

systemctl is-enabled firewalld.service;echo $?

5.重啟防火牆

// 重啟防火牆命令

systemctl restart firewalld.service

6.檢視版本

// 檢視版本

firewall-cmd --version

7.檢視幫助

// 檢視幫助

firewall-cmd --help

1.永久關閉防火牆

// 永久關閉防火牆

chkconfig iptables off

2.永久關閉後重啟

// 永久關閉後重啟

chkconfig iptables on

防火牆命令

一 防火牆的啟動和關閉 1 防火牆的永久性啟動和關閉 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 防火牆的臨時啟動和關閉 service iptables start 啟動防火牆 stop 關閉防火牆 restart 重啟防火牆 二 ch...

linux centos防火牆常用操作命令

1 檢視防火牆狀態 active是綠的running表示防火牆是開啟的 systemctl status firewalld.service 2 關閉防火牆 systemctl stop firewalld.service 3 開機禁用防火牆自啟命令 systemctl disable firewa...

總結 Linux關閉防火牆命令

1 永久性生效,重啟後不會復原 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後復原 開啟 service iptables start 關閉 service iptables stop 3 在開啟了防火牆時,做如下設定,開啟...