zone forwarding
(2013-03-28)
Problem
I want to tell a BIND server that a particular DNS zone can be resolved at some arbitrary DNS server. I do not want to forward all requests through this arbitrary DNS server.
Solution
In /etc/named.conf:
zone "myzone.local" {
type forward;
forwarders { ip.of.ad.server; ip.of.ad.backup; };
};