我设置了默认配置网络服务器。现在,我无法访问我的机器和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
我的剧本出了点问题。
答案 0 :(得分:1)
你错过了脚本中的tcp和-dport:
# iptables -I INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
你需要试试这个:
SaveChanges();