summaryrefslogtreecommitdiffstats
path: root/contrib/bind/bin/named/test/named.conf
blob: b852604941145ae7cf7443cceef2637300879745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// This is a configuration file for named (from BIND 8.1 or later).
// It would normally be installed as /etc/named.conf.

options {
//	directory "/var/named";
	check-names master warn;		/* default. */
	datasize 20M;
};

zone "localhost" IN {
	type master;
	file "localhost.zone";
	check-names fail;
	allow-update { none; };
	allow-transfer { any; };
};

zone "0.0.127.in-addr.arpa" IN {
	type master;
	file "127.0.0.zone";
	check-names fail;
	allow-update { none; };
	allow-transfer { any; };
};

zone "." IN {
	type hint;
	file "root.hint";
};
OpenPOWER on IntegriCloud