#3 2008-12-12 10:45:41
Re: 請教打開80端口的問題
web界面裏的防火牆未打開,另外的就是post-firewall的配置,還有什麽步驟嗎?
post-firewall語句如下:
iptables -D INPUT -j DROP
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 22 -j DNAT --to-destination
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 80 -j DNAT --to-destination
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 21 -j DNAT --to-destination
iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 8080 -j DNAT --to-destination
iptables -A INPUT -p tcp --dport 8081 -j ACCEPT
iptables -t nat -A PREROUTING -i $1 -p tcp --dport 8081 -j DNAT --to-destination
離線