> ACCEPT tcp -- anywhere anywhere state NEW tcp > dpt:ssh > REJECT all -- anywhere anywhere reject-with > icmp-host-prohibited > ACCEPT tcp -- anywhere anywhere state NEW tcp > dpt:http
It looks like your rule got appended after the REJECT all. You need to use insert instead of append, I think. Try this and see if it works, -I RH-Firewall-1-INPUT 9 -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -- 0 _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
