Rev | Line | |
---|
[4074] | 1 | include "rndc.conf";
|
---|
| 2 |
|
---|
| 3 | options {
|
---|
| 4 | directory "/etc/namedb";
|
---|
| 5 | pid-file "/var/run/named/pid";
|
---|
| 6 | dump-file "/var/dump/named_dump.db";
|
---|
| 7 | statistics-file "/var/statslave/named.stats";
|
---|
| 8 |
|
---|
| 9 | // forward only;
|
---|
| 10 | forwarders {
|
---|
| 11 | /-- nearest nameservers of daemon --/
|
---|
| 12 | };
|
---|
| 13 |
|
---|
| 14 | query-source address * port 53;
|
---|
| 15 | };
|
---|
| 16 |
|
---|
| 17 | view "wleiden" {
|
---|
| 18 | match-clients { 172.16.0.0/12; 127.0.0.1/24; };
|
---|
| 19 | recursion yes;
|
---|
| 20 | include "wleiden-slave-int.conf";
|
---|
| 21 | };
|
---|
| 22 |
|
---|
| 23 | view "any" {
|
---|
| 24 | match-clients { 0/0; }
|
---|
| 25 | recursion no;
|
---|
| 26 |
|
---|
| 27 | view "external" {
|
---|
| 28 | match-clients { any; };
|
---|
| 29 | recursion no;
|
---|
| 30 |
|
---|
| 31 | zone "." {
|
---|
| 32 | type hint;
|
---|
| 33 | file "named.root";
|
---|
| 34 | };
|
---|
| 35 |
|
---|
| 36 | zone "0.0.127.IN-ADDR.ARPA" {
|
---|
| 37 | type master;
|
---|
| 38 | file "master/localhost.rev";
|
---|
| 39 | };
|
---|
| 40 | };
|
---|
| 41 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.