碰到这个问题基本就是防火墙没有关闭
首先要搞清楚自己centos版本,本人就没搞清楚 一直service iptables off 提示没有这个命令,这个命令只能在centos 7以下的版本才能使用。
如果是centOS7 就要使用下面这个命令来关闭
systemctl stop firewalld.service
查看防火墙状态是
firewall-cmd --state
如果是CentOS6版本的就可以直接使用
service iptables off
来关闭防火墙