Add new charon4 IP
[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 };
25
26 zone "dehnert.arctic.org" IN {
27         type master;
28         file "/etc/bind/pri/combined-dehnerts.zone";
29         allow-update { none; };
30         allow-transfer { "transfer-allowed"; };
31         allow-query { any; };
32         //notify no;
33 };
34 zone "dehnerts.com" IN {
35         type master;
36         file "/etc/bind/pri/combined-dehnerts.zone";
37         allow-update { none; };
38         allow-transfer { "transfer-allowed"; };
39         allow-query { any; };
40         //notify no;
41 };
42
43 logging {
44     channel query.log {
45         file "/var/log/named/query.log" versions 10 size 100M;
46         // Set the severity to dynamic to see all the debug messages.
47         severity debug 3;
48         print-category yes;
49         print-severity yes;
50         print-time yes;
51     };
52
53     category queries { query.log; };
54 };