Slave and Caching DNS entries

Slave DNS entries

named.conf for Caching only DNS

zone "Rutgers.EDU" {
        type slave;
        file "rutgers.cache";
        masters {
                 128.6.224.114;
                 128.6.235.187;
                 128.6.216.19;
                };
};

zone "6.128.In-Addr.ARPA" {
        type slave;
        file "ru-inaddr.128.6.cache";
        masters {
                 128.6.224.114;
                 128.6.235.187;
                 128.6.216.19;
                };
};


options {
directory "/var/cache/bind";
  forwarders {
    128.6.238.13;
     };
     forward only;
     auth-nxdomain no;
};

# The zones for localhost below are unnecessary
zone "localhost" {
        type master;
        file "/etc/bind/localhost.zone";
};

zone "0.0.127.in-addr.arpa" {
        type master;
        file "/etc/bind/0.0.127.in-addr.arpa.zone";
};


Previous Pageprevious First Pagetop Next Pagenext