關閉防火牆

2021-07-27 04:38:23 字數 516 閱讀 2609

linux系統中,有時候要檢查防火牆是否開啟或者需要關閉,以下是兩種情形。

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

關閉防火牆

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

關閉防火牆

下面是red hat centos7關閉防火牆的命令 1 檢視防火狀態 systemctl status firewalld service iptables status 2 暫時關閉防火牆 systemctl stop firewalld service iptables stop 3 永久關閉...

ubutun關閉防火牆

1.關閉ubuntu的防火牆 ufw disable 2.解除安裝了iptables apt get remove iptables 1.用iptables f這個命令來關閉防火牆,但是使用這個命令前,千萬記得用iptables l檢視一下你的系統中所有鏈的預設target,iptables f這個...