Why am I unable to turn off recursion in ISC BIND?
Posted
by nbolton
on Server Fault
See other posts from Server Fault
or by nbolton
Published on 2010-02-13T16:48:23Z
Indexed on
2010/04/05
16:03 UTC
Read the original article
Hit count: 367
bind
Here's my named.conf.options
file:
options {
directory "/var/cache/bind";
dnssec-enable yes;
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
# disable recursion
recursion no;
};
I've tried adding allow-recursion { "none"; }
before recursion
but this also has no effect; I'm testing it by using nslookup
on Windows, and using google.com.
as the query (and it returns an IP, so I assume recursion is on). This issue occurs on two servers with similar setups.
© Server Fault or respective owner