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