199a5d
// named.rfc1912.zones:
199a5d
//
199a5d
// Provided by Red Hat caching-nameserver package 
199a5d
//
199a5d
// ISC BIND named zone configuration for zones recommended by
199a5d
// RFC 1912 section 4.1 : localhost TLDs and address zones
199a5d
// and https://tools.ietf.org/html/rfc6303
199a5d
// (c)2007 R W Franks
199a5d
// 
199a5d
// See /usr/share/doc/bind*/sample/ for example named configuration files.
199a5d
//
199a5d
// Note: empty-zones-enable yes; option is default.
199a5d
// If private ranges should be forwarded, add 
199a5d
// disable-empty-zone "."; into options
199a5d
// 
199a5d
199a5d
zone "localhost.localdomain" IN {
199a5d
	type master;
199a5d
	file "named.localhost";
199a5d
	allow-update { none; };
199a5d
};
199a5d
199a5d
zone "localhost" IN {
199a5d
	type master;
199a5d
	file "named.localhost";
199a5d
	allow-update { none; };
199a5d
};
199a5d
199a5d
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 {
199a5d
	type master;
199a5d
	file "named.loopback";
199a5d
	allow-update { none; };
199a5d
};
199a5d
199a5d
zone "1.0.0.127.in-addr.arpa" IN {
199a5d
	type master;
199a5d
	file "named.loopback";
199a5d
	allow-update { none; };
199a5d
};
199a5d
199a5d
zone "0.in-addr.arpa" IN {
199a5d
	type master;
199a5d
	file "named.empty";
199a5d
	allow-update { none; };
199a5d
};