42 lines
907 B
Text
42 lines
907 B
Text
/*
|
|
* Refer to the named.conf(5) and named(8) man pages, and the documentation
|
|
* in /usr/share/doc/bind-* for more details.
|
|
* Online versions of the documentation can be found here:
|
|
* https://kb.isc.org/article/AA-01031
|
|
*
|
|
* If you are going to set up an authoritative server, make sure you
|
|
* understand the hairy details of how DNS works. Even with simple mistakes,
|
|
* you can break connectivity for affected parties, or cause huge amounts of
|
|
* useless Internet traffic.
|
|
*/
|
|
|
|
options {
|
|
directory "/var/bind";
|
|
pid-file "/run/named/named.pid";
|
|
|
|
allow-query { any; };
|
|
recursion yes;
|
|
listen-on { any; };
|
|
listen-on-v6 { none; };
|
|
};
|
|
|
|
zone "debu.su" {
|
|
type master;
|
|
file "/etc/bind/db.debu.su";
|
|
};
|
|
|
|
zone "dgit.su" {
|
|
type master;
|
|
file "/etc/bind/db.dgit.su";
|
|
};
|
|
|
|
zone "kpfu.su" {
|
|
type master;
|
|
file "/etc/bind/db.kpfu.su";
|
|
};
|
|
|
|
zone "kompoet.ru" {
|
|
type master;
|
|
file "/etc/bind/db.kompoet.ru";
|
|
};
|
|
|