Hello! For some reason i can´t get my mail from my gmx pop account, this is my IPTABLES script: ---SNIP--- #Default DROP policy. I set the other eth+ on Accept, to make sure its not their fault! iptables -P INPUT DROP iptables -P FORWARD ACCEPT iptables -P OUTPUT DROP IFACE="ppp0" ---SNIP--- # POP # Allow POP, i tried everything to get is workins, as u can see ;) iptables -A INPUT -i $IFACE -p tcp --dport 110 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A OUTPUT -o $IFACE -p tcp --sport 110 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A INPUT -i $IFACE -p tcp --dport pop3 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A OUTPUT -o $IFACE -p tcp --sport pop3 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A INPUT -i $IFACE -p udp --dport 110 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A OUTPUT -o $IFACE -p udp --sport 110 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A INPUT -i $IFACE -p udp --dport pop3 -m state --state NEW,ESTABLISHED -j ACCEPT iptables -A OUTPUT -o $IFACE -p udp --sport pop3 -m state --state NEW,ESTABLISHED -j ACCEPT ---SNIP--- Anyone any idea what i did wrong? Cheers, Spiekey
participants (2)
-
Martin Peikert
-
spiekey