甲骨文Ubuntu服务器防火墙故障解决
3月份,甲骨文韩国等多地AMD服务器网络故障,导致所有AMD小鸡失联,网络恢复后,我的一台小鸡只有22端口能正常访问,其他端口全部失联,登录机器查看各个服务运行正常。在接近放弃的时候,最终通过防火墙顺利解决。
方法如下:
# 开放所有端口
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F# 删除防火墙
apt-get purge netfilter-persistent && reboot
或 rm -rf /etc/iptables && reboot如果是centos
# 删除多余附件
systemctl stop oracle-cloud-agent
systemctl disable oracle-cloud-agent
systemctl stop oracle-cloud-agent-updater
systemctl disable oracle-cloud-agent-updater# 关闭防火墙并禁止自启动
systemctl stop firewalld.service
systemctl disable firewalld.service
空空如也!