Pierre B. Samson wrote: > $IPT -A INPUT -p udp --source-port 53 -j ACCEPT > $IPT -A INPUT -p udp --destination-port 53 -j ACCEPT > $IPT -A INPUT -p tcp --source-port 113 -j ACCEPT > $IPT -A INPUT -p tcp --destination-port 113 -j ACCEPT
hi I think you must add a dns rule for tcp traffic on port 53 This is my configuration and for me it works fine. $IPT -A INPUT -p tcp --dport 53 -j ACCEPT $IPT -A INPUT -p udp --dport 53 -j ACCEPT regards michael
