27 Feb
2002
27 Feb
'02
13:58
spiekey wrote:
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 ---8<---
Try 'OUTPUT' in combination with 'dport' and 'INPUT' with 'sport'... Martin