iptables -L查看是否有相應的iptables規則
iptables -F關閉iptables規則
iptables -t nat -F
關閉selinux
getenforce --查看selinux是否開啟
臨時關閉:
[root@localhost ~]# getenforce
Enforcing
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
永久關閉:
[root@localhost ~]# vim /etc/sysconfig/selinux
SELINUX=enforcing 改為 SELINUX=disabled
重啟服務reboot
