Don't like ads? PRO users don't see any ads ;-)

linuxajuda

By: dyegoborges on Jun 14th, 2012  |  syntax: None  |  size: 0.62 KB  |  hits: 65  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. options {
  2.         listen-on port 53 { any; };
  3.         listen-on-v6 port 53 { any; };
  4.         directory       "/var/named";
  5.         dump-file       "/var/named/data/cache_dump.db";
  6.         statistics-file "/var/named/data/named_stats.txt";
  7.         memstatistics-file "/var/named/data/named_mem_stats.txt";
  8.         allow-query     { localhost; };
  9.         recursion yes;
  10.         allow-recursion { any; };
  11.         dnssec-enable yes;
  12.         dnssec-validation yes;
  13.         dnssec-lookaside auto;
  14.         forwarders { 8.8.8.8; 8.8.4.4; };
  15.         /* Path to ISC DLV key */
  16.         bindkeys-file "/etc/named.iscdlv.key";
  17. };