linux 防火牆管理

2021-08-30 21:18:23 字數 384 閱讀 2706

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 accep

防火牆管理

防火牆管理是指對防火牆具有管理許可權的管理員行為和防火牆執行狀態的管理,管理員的行為主要包括 通過防火牆的身份鑑別,編寫防火牆的安全規則,配置防火牆的安全引數,檢視防火牆的日誌等。防火牆的管理一般分為本地管理 遠端管理和集中管理等。本地管理 是指管理員通過防火牆的console口或防火牆提供的鍵盤和...

linux防火牆管理大全

檢視防火狀態 systemctl status firewalld 檢視防火狀態 service iptables status 暫時關閉防火牆 systemctl stop firewalld 暫時關閉防火牆 service iptables stop 永久關閉防火牆 systemctl disa...

linux防火牆管理及使用

檢視防火牆狀態 systemctl status firewalld firewall cmd state開啟 關閉防火牆 systemctl start firewalld systemctl stop firewalld重啟防火牆 systemctl restart firewalld開啟啟動防...