blob: 6b13d53a5be5bbbf37bbcb8c126d753e1433efc9 [file] [log] [blame]
Ales Komarek882ac7b2014-07-14 10:47:56 +02001// prime the server with knowledge of the root servers
2zone "." {
3 type hint;
4 file "/etc/bind/db.root";
5};
6
7// be authoritative for the localhost forward and reverse zones, and for
8// broadcast zones as per RFC 1912
9
10zone "localhost" {
11 type master;
12 file "/etc/bind/db.local";
13};
14
15zone "127.in-addr.arpa" {
16 type master;
17 file "/etc/bind/db.127";
18};
19
20zone "0.in-addr.arpa" {
21 type master;
22 file "/etc/bind/db.0";
23};
24
25zone "255.in-addr.arpa" {
26 type master;
27 file "/etc/bind/db.255";
28};