BIND: Stop Recursion DNS Under Linux / UNIX

by on August 26, 2008 · 1 comment· last updated at August 26, 2008

Q. How do I stop recursion (recursive query) under BIND 9 DNS server?

A. A DNS query may be either a recursive query or a non-recursive query. If recursion is set to 'yes' (the default) the server will always provide recursive query behaviour if requested by the client (resolver). If set to 'no' the server will only provide iterative query behaviour. If the answer to the query already exists in the cache it will be returned irrespective of the value of this statement. This statement essentially controls caching behaviour in the server.

Open named.conf file and make sure following settings exists under Options { ... } settings:
recursion no;
Save and close the file. Reload named:
# service named restart



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 1 comment… read it below or add one }

1 Nilesh August 26, 2008 at 4:55 pm

Hey this was a simple one…

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , , , ,

Previous Faq:

Next Faq: