如何使这个网络服务器只能访问您的机器和server1.example.com?

时间:2015-05-30 09:13:37

标签: linux web-services centos

我设置了默认配置网络服务器。现在,我无法访问我的机器和server1.example.com。

# chkconfig httpd on
# service httpd start
echo “This is a test.? > /var/www/html/index.html
# iptables -I INPUT -m state –state NEW -m tcp port 80 -j ACCEPT

我的剧本出了点问题。

1 个答案:

答案 0 :(得分:1)

你错过了脚本中的tcp和-dport:

# iptables -I INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT

你需要试试这个:

SaveChanges();