linux 防火墙怎么开放端口命令

如题所述

以oracle的1521端口为例
阻止所有服务器访问1521端口
iptables -I INPUT -p tcp --dport 1521 -j DROP
2
放行172.17.79.4
iptables -I INPUT -s 172.17.79.4 -p tcp --dport 1521 -j ACCEPT
3
保存配置
service iptables save
4
重启防火墙
service iptables restart
5
后续如果想继续添加ip,执行2、3、4步骤即可。
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答