關閉
/etc/rc.d/init.d/iptables stop
開啟/etc/rc.d/init.d/iptables start
檢視當前配置:iptables -l
redhat :
chkconfig --level 2345 iptables off
service iptables stop
但是不推薦關閉防火牆
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
關閉或開啟Linux上的防火牆
關閉 etc rc.d init.d iptables stop 開啟 etc rc.d init.d iptables start 檢視當前配置 iptables l redhat chkconfig level 2345 iptables off service iptables stop 但是...
Linux防火牆關閉開啟
今日在linux測試環境上裝了乙個tomcat,在windows本機上訪問無果 在linux 192.168.10.97 機器上,執行wget 能夠正常獲取資料。於是斷定是防火牆開啟了。於是查詢linux防火牆關閉的方法 檢視防火牆狀態 chkconfig iptables list 1 重啟後生效...
Linux配置防火牆 開啟或關閉埠
vi etc sysconfig iptables a input m state state new m tcp p tcp dport 80 j accept 允許80埠通過防火牆 a input m state state new m tcp p tcp dport 3306 j accept...