Skip to content

Instantly share code, notes, and snippets.

@hgdeoro
Created February 9, 2012 19:10
Show Gist options
  • Save hgdeoro/1782153 to your computer and use it in GitHub Desktop.
Save hgdeoro/1782153 to your computer and use it in GitHub Desktop.
Configuracion basica para Bind 9.8
options {
listen-on port 53 { 127.0.0.1; };
listen-on-v6 port 53 { ::1; };
directory "/opt/bind-9.8.1-P1/var/named";
dump-file "/opt/bind-9.8.1-P1/var/named/data/cache_dump.db";
statistics-file "/opt/bind-9.8.1-P1/var/named/data/named_stats.txt";
memstatistics-file "/opt/bind-9.8.1-P1/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 "/opt/bind-9.8.1-P1/etc/named.iscdlv.key";
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
zone "." IN {
type hint;
file "named.ca";
};
include "/opt/bind-9.8.1-P1/etc/named.rfc1912.zones";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment