![]() |
|
|
|
|
|
|
2
4th November 12:34
External User
Posts: 1
|
#---------------------------------------------------------------
# Allow outbound DNS queries from the FW and the replies too # # - Interface eth0 is the internet interface # # Zone transfers use TCP and not UDP. Most home networks # / websites using a single DNS server won't require TCP statements # #--------------------------------------------------------------- /sbin/iptables -A OUTPUT -p udp -o eth0 --dport 53 --sport 1024:65535 -j ACCEPT /sbin/iptables -A INPUT -p udp -i eth0 --sport 53 --dport 1024:65535 -j ACCEPT *** http://www.linuxhomenetworking.com/l...bles-intro.htm |
|
|
|