linux 防火墙开放特定端口
Posted jackylee92
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 防火墙开放特定端口相关的知识,希望对你有一定的参考价值。
vi etc/iptable/sysconfig/iptables
linux 开放固定端口
-A INPUT -m state --state NEW -m tcp -p tcp --dport 1113 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 55151 -j ACCEPT
重启防火墙:service iptables restart
关闭防火墙:service iptables stop
开启防火墙:service iptables start
保存 service iptables save
以上是关于linux 防火墙开放特定端口的主要内容,如果未能解决你的问题,请参考以下文章