linux系統中關閉 開啟防火牆詳解

2021-08-20 02:34:58 字數 1021 閱讀 6822

從配置選單關閉防火牆是不起作用的,索性在安裝的時候就不要裝防火牆

檢視防火牆狀態:

/etc/init.d/iptables status

暫時關閉防火牆:

/etc/init.d/iptables stop

禁止防火牆在系統啟動時啟動

/sbin/chkconfig --level 2345 iptables off

重啟iptables:

/etc/init.d/iptables restart

題外話:

bt或者騾子速度慢用不著關防火牆,只要把相應埠開放就可以了

在檔案/etc/sysconfig/iptables

在系統原始配置的:rh-firewall-1-input規則鏈增加類似這樣的行:

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

-a rh-firewall-1-input -m state --state new -m udp -p udp --dport 39764 -j accept

如果發現原有-j reject一類的語句,上面兩句要放在它的前面

重啟後生效 

開啟: chkconfig iptables on 

關閉: chkconfig iptables off 或者 /sbin/chkconfig --level 2345 iptables off

2) 即時生效,重啟後失效

service 方式

開啟: service iptables start 

關閉: service iptables stop

iptables方式

檢視防火牆狀態:

/etc/init.d/iptables status

暫時關閉防火牆:

/etc/init.d/iptables stop

重啟iptables:

/etc/init.d/iptables restart

Linux防火牆關閉開啟

今日在linux測試環境上裝了乙個tomcat,在windows本機上訪問無果 在linux 192.168.10.97 機器上,執行wget 能夠正常獲取資料。於是斷定是防火牆開啟了。於是查詢linux防火牆關閉的方法 檢視防火牆狀態 chkconfig iptables list 1 重啟後生效...

Linux關閉 開啟防火牆命令

linux還是比較常用的,於是我研究了一下linux關閉防火牆命令,在這裡拿出來和大家分享一下,希望你能學會linux關閉防火牆命令 1 永久性生效,重啟後不會復原 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後復原 開啟 ...

Linux下關閉開啟防火牆

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令...