28ff6d69e0
Use more friendly value for primary and secondary zones. It used master for ages, but that might have wrong connotation to someone. Use something without problematic history.
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
// named.rfc1912.zones:
|
|
//
|
|
// Provided by Red Hat caching-nameserver package
|
|
//
|
|
// ISC BIND named zone configuration for zones recommended by
|
|
// RFC 1912 section 4.1 : localhost TLDs and address zones
|
|
// and https://tools.ietf.org/html/rfc6303
|
|
// (c)2007 R W Franks
|
|
//
|
|
// See /usr/share/doc/bind*/sample/ for example named configuration files.
|
|
//
|
|
// Note: empty-zones-enable yes; option is default.
|
|
// If private ranges should be forwarded, add
|
|
// disable-empty-zone "."; into options
|
|
//
|
|
|
|
zone "localhost.localdomain" IN {
|
|
type primary;
|
|
file "named.localhost";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "localhost" IN {
|
|
type primary;
|
|
file "named.localhost";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
|
|
type primary;
|
|
file "named.loopback";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "1.0.0.127.in-addr.arpa" IN {
|
|
type primary;
|
|
file "named.loopback";
|
|
allow-update { none; };
|
|
};
|
|
|
|
zone "0.in-addr.arpa" IN {
|
|
type primary;
|
|
file "named.empty";
|
|
allow-update { none; };
|
|
};
|