Last change
on this file was
ebc5ae5,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
upgraded dhcpd to 4.3.6 for better ipv6 support
|
-
Property mode set to
100644
|
File size:
681 bytes
|
Rev | Line | |
---|
[c5c522c] | 1 | options { |
---|
| 2 | directory "/var/named"; |
---|
| 3 | /* |
---|
| 4 | * If there is a firewall between you and nameservers you want |
---|
| 5 | * to talk to, you might need to uncomment the query-source |
---|
| 6 | * directive below. Previous versions of BIND always asked |
---|
| 7 | * questions using port 53, but BIND 8.1 uses an unprivileged |
---|
| 8 | * port by default. |
---|
| 9 | */ |
---|
| 10 | // query-source address * port 53; |
---|
| 11 | }; |
---|
| 12 | |
---|
| 13 | // |
---|
| 14 | // a caching only nameserver config |
---|
| 15 | // |
---|
| 16 | zone "." IN { |
---|
| 17 | type hint; |
---|
[ebc5ae5] | 18 | file "caching-example/named.root"; |
---|
[c5c522c] | 19 | }; |
---|
| 20 | |
---|
| 21 | zone "localhost" IN { |
---|
| 22 | type master; |
---|
| 23 | file "caching-example/localhost.zone"; |
---|
| 24 | allow-update { none; }; |
---|
| 25 | }; |
---|
| 26 | |
---|
| 27 | zone "0.0.127.in-addr.arpa" IN { |
---|
| 28 | type master; |
---|
| 29 | file "caching-example/named.local"; |
---|
| 30 | allow-update { none; }; |
---|
| 31 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.