33 lines
971 B
Plaintext
Executable File
33 lines
971 B
Plaintext
Executable File
// This is the primary configuration file for the BIND DNS server named.
|
|
//
|
|
// Please read /usr/share/doc/bind9/README.Debian for information on the
|
|
// structure of BIND configuration files in Debian, *BEFORE* you customize
|
|
// this configuration file.
|
|
//
|
|
// If you are just adding zones, please do that in /etc/bind/named.conf.local
|
|
|
|
include "/etc/bind/named.conf.options";
|
|
include "/etc/bind/named.conf.local";
|
|
include "/etc/bind/named.conf.default-zones";
|
|
|
|
logging {
|
|
channel bind.log {
|
|
file "/var/log/bind/bind.log" versions 10 size 20m;
|
|
severity info;
|
|
print-category yes;
|
|
print-severity yes;
|
|
print-time yes;
|
|
};
|
|
channel "query" {
|
|
file "/var/log/bind/query.log" versions 10 size 4m;
|
|
severity warning;
|
|
print-time yes;
|
|
print-severity yes;
|
|
print-category yes;
|
|
};
|
|
|
|
category queries { query; };
|
|
category default { bind.log; };
|
|
category config { bind.log; };
|
|
};
|