linux學習筆記三:防火牆設定

x_jingxin發表於2018-05-13

請注意:centOS7和7之前的版本在防火牆設定上不同,只有正確的設定防火牆才能實現window下訪問linux中的web應用。

centOS6新增埠:

vi /ets/sysconfig/iptables

在-A INPUT -m state–state NEW -m tcp -p tcp –dport 22 -j ACCEPT下面新增類似的配置

如-A INPUT -m state–state NEW -m tcp -p tcp –dport 8080 -j ACCEPT    #允許外部訪問8080埠

最後重啟防火牆:

service iptables restart/start/stop

 

centOS7新增埠:

firewall-cmd –zone=public –add-port=8080/tcp –permanent        #永久新增8080埠

firewall-cmd –reload                      #重新載入策略配置,以使新配置生效

最後設定防火牆重啟後生效:

chkconfig iptables on

 

相關文章