[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] IPChains Help
- Subject: Re: [cobalt-users] IPChains Help
- From: "Wim Dieke" <w.dieke@xxxxxxxxx>
- Date: Sat Apr 26 00:48:01 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
> I am in the process of setting up my firewall and I am having one
> problem and it involves dns. When I test my rule set DNS doesn't
> work. DNS still resolves outside of the box but when I am on the box
> and dig another domain outside of the box I get timeout. Can someone
> please help.
>
> Here is my ruleset for DNS
>
> ipchains -A input -i eth0 -p udp --source Primary IP 53 -j ACCEPT
> ipchains -A input -i eth0 -p udp --source Secondary IP 53 -j ACCEPT
>
> Thanks
> --Todd
Hi Todd,
I would add the following rule. This allows traffic to go remote
ipchains -A input -i eth0 -p udp --destination-port 53 -j ACCEPT
Your rules only define incoming traffic.
maybe this helps.
Regards, Wim.