linux防火牆檢視

2021-07-17 00:23:25 字數 788 閱讀 3036

linux下檢視、關閉及開啟防火牆命令

1)永久性生效,重啟後不會復原 

開啟: chkconfig iptables on 關閉: chkconfig iptables off 

2)即時生效,重啟後復原 

開啟: service iptables start 關閉: service iptables stop 

需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。 

在開啟了防火牆時,做如下設定,開啟相關埠, 修改/etc/sysconfig/iptables 檔案,新增以下內容: 

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept 

-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept

3)檢視防火牆狀態

chkconfig iptables --list

linux檢視防火牆

centos7 的防火牆配置跟以前版本有很大區別,centos7這個版本的防火牆預設使用的是firewall,與之前的版本centos 6.x使用iptables不一樣 一 iptables防火牆 1 基本操作 service iptables status service iptables sto...

linux 防火牆檢視firewall

1 基本操作 檢視防火牆狀態 service iptables status 停止防火牆 service iptables stop 啟動防火牆 service iptables start 重啟防火牆 service iptables restart 永久關閉防火牆 chkconfig iptab...

檢視防火牆狀態

1 檢視firewall服務狀態 systemctl status firewalld 出現active active running 切高亮顯示則表示是啟動狀態。出現 active inactive dead 灰色表示停止,看單詞也行。2 檢視firewall的狀態 firewall cmd st...