How do you do separate authoritative and resolving

Jakob Schlyter jakob at crt.se
Thu Jan 2 11:48:15 UTC 2003


On Thu, 2 Jan 2003 phil-news-nospam at ipal.net wrote:

> It is not obvious how to make it be recursive only on one IP address
> and be authoritative only on another IP address.

try something like this:

view "recursive" {
	match-destinations { recursive-ip-address; };
	allow-query { your-client-acl; };
	recursion yes;

	...
};

view "authoritative" {
	match-destinations { authoritative-ip-address; };
	recursion no;
	additional-from-auth no;
	additional-from-cache no;

	...
};


	jakob


More information about the bind-users mailing list