On Mon, Jan 06, 2003 at 11:20:53PM +0100, Wiroth Didier wrote:
> Hey,
> I would like to run bind as a caching only server (v 8.3.3
> from 4.7-release). I would also like that it only listens
> on port 127.0.0.1, but how? I tried this entry in
> named.conf, but it didn't work:
> query-source address 127.0.0.1 port 53;
>
> It still listens on the real ip address?
> sockstat -4 shows:
> root named 296 20 udp4 192.168.0.2:53
>
> root named 296 21 tcp4 192.168.0.2:53
> root named 296 22 udp4 127.0.0.1:53
>
>
> What do I have to change so it named only listens to
> 127.0.0.1?
>
'man named.conf', and look for the 'listen-on' directive.
options {
// Your options
listen-on {
127.0.0.1;
};
};
// Other BIND directives
Cheers,
-Wes
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message