mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
45 lines
907 B
Text
45 lines
907 B
Text
|
// 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
|
||
|
//
|
||
|
// See /usr/share/doc/bind*/sample/ for example named configuration files.
|
||
|
//
|
||
|
zone "localdomain" IN {
|
||
|
type master;
|
||
|
file "localdomain.zone";
|
||
|
allow-update { none; };
|
||
|
};
|
||
|
|
||
|
zone "localhost" IN {
|
||
|
type master;
|
||
|
file "localhost.zone";
|
||
|
allow-update { none; };
|
||
|
};
|
||
|
|
||
|
zone "0.0.127.in-addr.arpa" IN {
|
||
|
type master;
|
||
|
file "named.local";
|
||
|
allow-update { none; };
|
||
|
};
|
||
|
|
||
|
zone "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 master;
|
||
|
file "named.ip6.local";
|
||
|
allow-update { none; };
|
||
|
};
|
||
|
|
||
|
zone "255.in-addr.arpa" IN {
|
||
|
type master;
|
||
|
file "named.broadcast";
|
||
|
allow-update { none; };
|
||
|
};
|
||
|
|
||
|
zone "0.in-addr.arpa" IN {
|
||
|
type master;
|
||
|
file "named.zero";
|
||
|
allow-update { none; };
|
||
|
};
|