Bind Notes

From Federal Burro of Information
Revision as of 14:35, 8 July 2014 by David (talk | contribs) (Created page with "== config file snippets == === sample 1 === <pre> options { listen-on port 53 { any; }; //listen-on-v6 port 53 { ::1; }; directory "/var/named...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

config file snippets

sample 1

options {
        listen-on port 53 { any; };
        //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; 10.0.0.0/8; };
        allow-recursion    { localhost; 10.0.0.0/8; };
        recursion yes;
        forward only;
        forwarders {
                x.x.x.x;
                y.y.y.y;
        };


//              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";
};