Use DA as main DNS, 2 others as slave

webunity

Verified User
Joined
Sep 23, 2014
Messages
50
This is my current "named.conf" contents. I would like DA (e.g. Bind) to be the main DNS server and to use 2 other fallback DNS servers.
However, i do not know entirely how to set this up. I think i have to add the other 2 nameservers to named.conf with respect to notify and transfer settings, but i don't exactly now how :)

This is my current setup, can anybody help me with adding the 2 'slave' DNS servers;
- ns5.be = 80.69.69.70
- ns11.net = 37.97.255.54

And should i then add my own NS as primary, and the NS5 as secondary and NS11.net as third nameserver?

Code:
options {
        //listen-on port 53 { 127.0.0.1; };
        //listen-on-v6 port 53 { ::1; };
        directory       "/var/named";
        dump-file       "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
        //allow-query     { localhost; };
        //recursion yes;

        dnssec-enable yes;
        dnssec-validation yes;
        dnssec-lookaside auto;

        /* Path to ISC DLV key */
        bindkeys-file "/etc/named.iscdlv.key";

        managed-keys-directory "/var/named/dynamic";
};

logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};

zone "." IN {
        type hint;
        file "named.ca";
};

include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

...zone files...
 
Back
Top