linux關閉防火牆命令

2022-04-26 06:09:43 字數 647 閱讀 3134

linux關閉防火牆命令

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

開啟:chkconfig iptables on

關閉:chkconfig iptables off

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

開啟:service iptables start

關閉:service iptables stop

3)在開啟了防火牆時,做如下設定,開啟相關埠,

修改/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

4)檢視防火牆命令

/etc/init.d/iptables status 若有很多提示則代表沒有關閉防火牆

firewalld is off 這個提示表示防火牆已經關閉

5)在根使用者下輸入setup,進入乙個圖形介面,選擇firewall configuration,進入下一介面,選擇security level為disabled,儲存。重啟即可。

Linux關閉防火牆命令

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

Linux關閉防火牆命令

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

Linux關閉防火牆命令

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