Fedora 下防火牆的關閉

2021-04-18 23:58:29 字數 685 閱讀 4873

-------------------------------fedora 下防火牆的關閉-----------------

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

檢視防火牆狀態:

/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一類的語句,上面兩句要放在它的前面

Fedora 下防火牆的關閉

fedora 下防火牆的關閉 fedora 下防火牆的關閉 從配置選單關閉防火牆是不起作用的,索性在安裝的時候就不要裝防火牆 檢視防火牆狀態 etc init.d iptables status 暫時關閉防火牆 etc init.d iptables stop 禁止防火牆在系統啟動時啟動 sbin ...

關閉防火牆

linux系統中,有時候要檢查防火牆是否開啟或者需要關閉,以下是兩種情形。1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service ipta...

關閉防火牆

關閉防火牆 sed ri s selinux selinux disabled g etc selinux config 關閉selinux systemctl stop firewalld 臨時關閉防火牆 systemctl disable firewalld 設定防火牆開機自動關閉 system...