iptables 引起的网络连接问题

举报
fancanny 发表于 2019/01/18 09:33:09 2019/01/18
【摘要】 iptables 造成 Oracle Linux 6.5 上的数据库服务、Web 等服务无法正常连接

Oracle Linux 6.5 安装了 ebs 12.2.0 后,数据库始终无法连接,即使使用 tnsping , 也出现 TNS-12535: TNS: 操作超时

这个问题困扰了很久,从数据库端查原因,想了很多办法都一直无法解决,后来查了很多资料,才发现是 iptables 这个防火墙在搞鬼

使用命令 iptables -L 在 Linux 6.5 上显示:

[root@fxsljit202 ~]# iptables -L

Chain INPUT (policy ACCEPT)

target     prot opt source               destination

ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED

ACCEPT     icmp --  anywhere             anywhere

ACCEPT     all  --  anywhere             anywhere

ACCEPT     tcp  --  anywhere             anywhere            state NEW tcp dpt:ssh

REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited


Chain FORWARD (policy ACCEPT)

target     prot opt source               destination

REJECT     all  --  anywhere             anywhere            reject-with icmp-host-prohibited


Chain OUTPUT (policy ACCEPT)

target     prot opt source               destination


而使用命令 iptables -L 在 Oracle Linux 5.10 上显示:

[root@fxsljit04 jit]# iptables -L

Chain INPUT (policy ACCEPT)

target     prot opt source               destination


Chain FORWARD (policy ACCEPT)

target     prot opt source               destination


Chain OUTPUT (policy ACCEPT)

target     prot opt source               destination


也就是说,Oracle Linux 5.10 上,iptables 默认是不开启的,但到Oracle Linux 6.5上默认开启了 iptables 服务,造成很多服务都无法连接

找到原因,就可以解决了。可以停止 iptables 这个服务

[root@fxsljit202 ~]# service iptables stop

iptables: Setting chains to policy ACCEPT: filter          [  OK  ]

iptables: Flushing firewall rules:                         [  OK  ]

iptables: Unloading modules:                               [  OK  ]

[root@fxsljit202 ~]# iptables -L

Chain INPUT (policy ACCEPT)

target     prot opt source               destination


Chain FORWARD (policy ACCEPT)

target     prot opt source               destination


Chain OUTPUT (policy ACCEPT)

target     prot opt source               destination

可以清楚的看到防火墙被关闭了;

再使用tnsping 命令,可以正常ping 通了,问题成功解决!!!

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。