summaryrefslogtreecommitdiff
blob: c1adafb6dc6aa4062e8714068a66471a81ee19d9 (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
30
31
32
33
options {
	directory "/var/bind";

	// uncomment the following lines to turn on DNS forwarding,
	// and change the forwarind ip address(es) :
	//forward first;
	//forwarders {
	//	123.123.123.123
	//	123,123.123.123;
	//};


	// to allow only specific hosts to use the DNS server:
	//allow-query {
	//	127.0.0.1;
	//};

	// if you have problems and are behind a firewall:
	//query-source address * port 53;
	pid-file "/var/run/named/named.pid";
};

zone "." IN {
	type hint;
	file "named.ca";
};

zone "0.0.127.in-addr.arpa" IN {
	type master;
	file "pri/127.0.0";
	allow-update { none; };
	notify no;
};