On Sunday 23 June 2002 10:26 am, Joe de Vera wrote: > > From: Antony Stone <[EMAIL PROTECTED]> > > > > Okay - the answer is simple, then. You have no rule allowing udp packets > > into the machine on port 53.
> oic... so now how will i going to add that udp packets allow to my ruleset? > what parameter that i supposed to put on my iptables command... In the middle of your listing earlier was: ACCEPT � � tcp �-- �0.0.0.0/0 � � � � � �0.0.0.0/0 � � � � �tcp dpt:53 state NEW which must be from a rule something like: iptables -A INPUT -p tcp --dport 53 -m state --state NEW -j ACCEPT find that rule, copy it, and change the tcp for a udp: iptables -A INPUT -p udp --dport 53 -m state --state NEW -j ACCEPT Antony.
