ebc4f17aee6a470afd14996c5c13666d9b9f97bd
[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 include "/etc/bind/named.conf.per-host";
28
29 zone "dynamic.dehnert.arctic.org" IN {
30         // DNAME to the real, dynamic.dehnerts.com, zone
31         type master;
32         file "/etc/bind/pri/arctic-dynamic.zone";
33         allow-update { none; };
34         allow-transfer { "transfer-allowed"; };
35         allow-query { any; };
36         //notify no;
37 };
38
39 zone "dehnert.arctic.org" IN {
40         type master;
41         file "/etc/bind/pri/combined-dehnerts.zone";
42         allow-update { none; };
43         allow-transfer { "transfer-allowed"; };
44         allow-query { any; };
45         //notify no;
46 };
47 zone "dehnerts.com" IN {
48         type master;
49         file "/etc/bind/pri/combined-dehnerts.zone";
50         #update-policy { grant * selfsub * A TXT;};
51         allow-update { none; };
52         allow-transfer { "transfer-allowed"; };
53         allow-query { any; };
54         //notify no;
55 };
56
57 logging {
58     channel query.log {
59         file "/var/log/named/query.log" versions 10 size 100M;
60         // Set the severity to dynamic to see all the debug messages.
61         severity debug 3;
62         print-category yes;
63         print-severity yes;
64         print-time yes;
65     };
66
67     category queries { query.log; };
68 };