ff18aded714d25f400fda1fe56bd4bf27a994449
[sysconfig/bind.git] / named.conf.local
1 //
2 // Do any local configuration here
3 //
4
5 // Consider adding the 1918 zones here, if they are not used in your
6 // organization
7 //include "/etc/bind/zones.rfc1918";
8
9 # zone "debuntu.foo" {
10 #        type master;
11 #        file "debuntu.foo.db";
12 #        notify no;
13 #};
14
15 acl "transfer-allowed" {
16         localhost;
17         207.29.250.54;  // ???
18         18.4.60.36;     // charon
19         18.49.3.1;      // charon4
20         18.25.131.1;    // charon4
21         74.207.246.137; // arctic
22         66.92.29.156;   // copan
23         18.18.208.12;   // olinda
24         18.25.129.162;  // adehnert3.xvm
25 };
26
27 masters "primary-ns" {
28         18.18.208.12;   // olinda
29 };
30
31 include "/etc/bind/named.conf.per-host";
32
33 zone "dynamic.dehnert.arctic.org" IN {
34         // DNAME to the real, dynamic.dehnerts.com, zone
35         type master;
36         file "/etc/bind/pri/arctic-dynamic.zone";
37         allow-update { none; };
38         allow-transfer { "transfer-allowed"; };
39         allow-query { any; };
40         //notify no;
41 };
42
43 zone "dehnert.arctic.org" IN {
44         type master;
45         file "/etc/bind/pri/combined-dehnerts.zone";
46         allow-update { none; };
47         allow-transfer { "transfer-allowed"; };
48         allow-query { any; };
49         //notify no;
50 };
51 zone "dehnerts.com" IN {
52         type master;
53         file "/etc/bind/pri/combined-dehnerts.zone";
54         #update-policy { grant * selfsub * A TXT;};
55         allow-update { none; };
56         allow-transfer { "transfer-allowed"; };
57         allow-query { any; };
58         //notify no;
59 };
60
61 logging {
62     channel query.log {
63         file "/var/log/named/query.log" versions 10 size 100M;
64         // Set the severity to dynamic to see all the debug messages.
65         severity debug 3;
66         print-category yes;
67         print-severity yes;
68         print-time yes;
69     };
70
71     category queries { query.log; };
72 };