Quoting Michelle Konzack <[EMAIL PROTECTED]>: > >What does your routing table look like? What are the outputs from > >"iptables -L -n -v" and "iptables -t nat -L -n -v"? > adsl:~ # iptables -L -n -v > Chain INPUT (policy DROP 16605 packets, 1067K bytes) > pkts bytes target prot opt in out source > destination > > [snip]
INPUT has a "policy DROP" but no ACCEPT targets, therefore no traffic with a destination of this box will ever be accepted (which includes every and all responses to requests originating from the box, like "dig," "apt-get update," etc.). iptables -P INPUT ACCEPT will get you up and running. Then we can think about getting them running as they should. :) mickey

