在我們使用centos系統的時候,centos防火牆有時是需要改變設定的。centos防火牆預設是開啟的,設定centos防火牆開放埠方法如下:
開啟iptables的配置檔案:vi /etc/sysconfig/iptables
修改centos防火牆時注意:一定要給自己留好後路,留vnc乙個管理埠和ssh的管理埠
下面是乙個iptables的示例:
# firewall configuration written by system-config-securitylevel
# manual customization of this file is not recommended.
*filter
:input accept [0:0]
:forward accept [0:0]
:output accept [0:0]
:rh-firewall-1-input - [0:0]
-a input -j rh-firewall-1-input
-a forward -j rh-firewall-1-input
-a rh-firewall-1-input -i lo -j accept
-a rh-firewall-1-input -p icmp –icmp-type any -j accept
-a rh-firewall-1-input -p 50 -j accept
-a rh-firewall-1-input -p 51 -j accept
-a rh-firewall-1-input -m state –state established,related -j accept
-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 53 -j accept
-a rh-firewall-1-input -m state –state new -m udp -p udp –dport 53 -j accept
-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 22 -j accept
-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 25 -j accept
-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 443 -j accept
-a rh-firewall-1-input -j reject –reject-with icmp-host-prohibited
commit
修改centos防火牆需要注意的是,你必須根據自己伺服器的情況來修改這個檔案。
舉例來說,如果你不希望開放80埠提供web服務,那麼應該相應的刪除這一行:
-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 80 -j accept
全部修改完之後重啟iptables:service iptables restart
你可以驗證一下是否規則都已經生效:iptables -l
這樣,我們就完成了centos防火牆的設定修改。
引自:
設定CentOS防火牆開放埠
在我們使用centos系統的時候,centos防火牆有時是需要改變設定的。centos防火牆預設是開啟的,設定centos防火牆開放埠方法如下 開啟iptables的配置檔案 vi etc sysconfig iptables 修改centos防火牆時注意 一定要給自己留好後路,留vnc乙個管理埠和...
設定CentOS防火牆開放埠
在我們使用centos系統的時候,centos防火牆有時是需要改變設定的。centos防火牆預設是開啟的,設定centos防火牆開放埠方法如下 開啟iptables的配置檔案 vi etc sysconfig iptables 修改centos防火牆時注意 一定要給自己留好後路,留vnc乙個管理埠和...
設定CentOS防火牆開放埠
設定centos防火牆開放埠 在我們使用centos系統的時候,centos防火牆有時是需要改變設定的。centos防火牆預設是開啟的,設定centos防火牆開放埠方法如下 開啟iptables的配置檔案 vi etc sysconfig iptables 修改centos防火牆時注意 一定要給自己...