David A. Ranch <[EMAIL PROTECTED]> wrote:
>
> >How can I make named use the nameserver dhcpcd indicates in
> >resolv.conf as a forward dns server?
>
> I beleive you are looking for the "SLAVE" directive.  But, to be
> honest, I would NOT recommend this unless you need a split-DNS setup.

Named will not read /etc/resolv.conf to figure out where to send
queries.  But you can set forwarding server(s) in /etc/named.boot:

    forwarders  198.199.200.201  132.131.130.129
    slave  # query only forwarders, don't bypass when not responding

Or in the newer BIND versions, in /etc/named.conf:

    options {
        forwarders {
            198.199.200.201
            132.131.130.129
        };
        forward only;
    }

-- 
   [EMAIL PROTECTED] (Fuzzy Fox)      || "Nothing takes the taste out of peanut
sometimes known as David DeSimone  ||  butter quite like unrequited love."
  http://www.dallas.net/~fox/      ||                       -- Charlie Brown
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For daily digest info, email [EMAIL PROTECTED]

Reply via email to