Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
// named.rfc1912.zones:
2
//
3
// Provided by Red Hat caching-nameserver package
4
//
5
// ISC BIND named zone configuration for zones recommended by
6
// RFC 1912 section 4.1 : localhost TLDs and address zones
7
// and https://tools.ietf.org/html/rfc6303
8
// (c)2007 R W Franks
9
//
10
// See /usr/share/doc/bind*/sample/ for example named configuration files.
11
//
12
// Note: empty-zones-enable yes; option is default.
13
// If private ranges should be forwarded, add
14
// disable-empty-zone "."; into options
15
//
16
 
17
zone "localhost.localdomain" IN {
18
	type master;
19
	file "named.localhost";
20
	allow-update { none; };
21
};
22
 
23
zone "localhost" IN {
24
	type master;
25
	file "named.localhost";
26
	allow-update { none; };
27
};
28
 
29
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 {
30
	type master;
31
	file "named.loopback";
32
	allow-update { none; };
33
};
34
 
35
zone "1.0.0.127.in-addr.arpa" IN {
36
	type master;
37
	file "named.loopback";
38
	allow-update { none; };
39
};
40
 
41
zone "0.in-addr.arpa" IN {
42
	type master;
43
	file "named.empty";
44
	allow-update { none; };
45
};