Also known as ISC bind. This import adds utilities such as host(1), dig(1), and nslookup(1), as well as many other tools and libraries. Change-Id: I035ca46e64f1965d57019e773f4ff0ef035e4aa3
112 lines
2.9 KiB
Plaintext
112 lines
2.9 KiB
Plaintext
/*****************************************************************
|
|
**
|
|
** #(@) named.conf (c) 6. May 2004 (hoz)
|
|
**
|
|
*****************************************************************/
|
|
|
|
/*****************************************************************
|
|
** logging options
|
|
*****************************************************************/
|
|
logging {
|
|
channel "named-log" {
|
|
file "/var/log/named" versions 3 size 2m;
|
|
print-time yes;
|
|
print-category yes;
|
|
print-severity yes;
|
|
severity info;
|
|
};
|
|
channel "resolver-log" {
|
|
file "/var/log/named";
|
|
print-time yes;
|
|
print-category yes;
|
|
print-severity yes;
|
|
severity debug 1;
|
|
};
|
|
channel "dnssec-log" {
|
|
# file "/var/log/named-dnssec" ;
|
|
file "/var/log/named" ;
|
|
print-time yes;
|
|
print-category yes;
|
|
print-severity yes;
|
|
severity debug 3;
|
|
};
|
|
category "dnssec" { "dnssec-log"; };
|
|
category "default" { "named-log"; };
|
|
category "resolver" { "resolver-log"; };
|
|
category "client" { "resolver-log"; };
|
|
category "queries" { "resolver-log"; };
|
|
};
|
|
|
|
/*****************************************************************
|
|
** name server options
|
|
*****************************************************************/
|
|
options {
|
|
directory ".";
|
|
|
|
dump-file "/var/log/named_dump.db";
|
|
statistics-file "/var/log/named.stats";
|
|
|
|
listen-on-v6 { any; };
|
|
|
|
query-source address * port 53;
|
|
transfer-source * port 53;
|
|
notify-source * port 53;
|
|
|
|
recursion yes;
|
|
dnssec-enable yes;
|
|
edns-udp-size 4096;
|
|
|
|
# dnssec-lookaside "." trust-anchor "trusted-keys.de.";
|
|
|
|
querylog yes;
|
|
|
|
};
|
|
|
|
/*****************************************************************
|
|
** include shared secrets...
|
|
*****************************************************************/
|
|
/** for control sessions ... **/
|
|
controls {
|
|
inet 127.0.0.1
|
|
allow { localhost; };
|
|
inet ::1
|
|
allow { localhost; };
|
|
};
|
|
|
|
/*****************************************************************
|
|
** ... and trusted_keys
|
|
*****************************************************************/
|
|
# include "trusted-keys.conf" ;
|
|
|
|
/*****************************************************************
|
|
** root server hints and required 127 stuff
|
|
*****************************************************************/
|
|
zone "." in {
|
|
type hint;
|
|
file "root.hint";
|
|
};
|
|
|
|
zone "localhost" in {
|
|
type master;
|
|
file "localhost.zone";
|
|
};
|
|
|
|
zone "0.0.127.in-addr.ARPA" in {
|
|
type master;
|
|
file "127.0.0.zone";
|
|
};
|
|
|
|
#include "zone.conf";
|
|
|
|
zone "example.NET." in {
|
|
type master;
|
|
file "example.net/zone.db.signed";
|
|
zone-statistics yes;
|
|
};
|
|
|
|
zone "sub.example.NET." in {
|
|
type master;
|
|
file "sub.example.net/zone.db.signed";
|
|
zone-statistics no;
|
|
};
|