Linux防火牆(iptables)的開啓與關閉 .tcp
Linux中的防火牆主要是對iptables的設置和管理.code
1. Linux防火牆(Iptables)重啓系統生效xml
開啓: chkconfig iptables onip
關閉: chkconfig iptables off table
2.Linux防火牆(Iptables) 即時生效,重啓後失效class
開啓: service iptables start iptables
關閉: service iptables stopservice
須要說明的是對於Linux下的其它服務均可以用以上命令執行開啓和關閉操做。防火牆
在開啓了Linux防火牆(Iptables)時,作以下設置,開啓25和110端口,top
修改/etc/sysconfig/iptables 文件,添加如下內容:
-A RH-Firewall-1-INPUT -m state --state NEW -p tcp -m tcp --dport 25 --syn -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -p tcp -m tcp --dport 110 --syn -j ACCEPT