CentOS 6.* 防火墙放行端口

刚玩centos那会儿,菠萝遇到端口不通的问题通常的处理办法是

service iptables stop

现在想来实在是太简单粗暴了,还是根据需要开放适量的端口比较合适。

开放指定端口,以22端口为例

执行命令放行指定端口

/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT

保存端口配置

/etc/rc.d/init.d/iptables save

重启防火墙

/etc/rc.d/init.d/iptables restart

查看端口是否开放

/etc/init.d/iptables status