Why are these iptables rules preventing me from browsing the net?
iptables -A INPUT -i eth0 -p tcp --dport 30000:60000 -m state --state NEW,ESTABLISHED -j DROP
iptables -A OUTPUT -o eth0 -p tcp --sport 30000:60000 -m state --state ESTABLISHED -j DROP
With iptables -F you can clear the iptables rules in case you can not browse the net after trying those rules.
I'm using Ubuntu 12.04 but I see this also on my Debian server.
