]> git.pld-linux.org Git - packages/bind.git/blob - bind-named.conf
- up to 9.9.4 P1 (fixes CVE-2013-4854, CVE-2013-3919)
[packages/bind.git] / bind-named.conf
1 // This is an exaple configuration file for named ( /etc/named.conf ) 
2
3 options {
4         directory "/";
5         pid-file "named.pid";
6         auth-nxdomain yes;
7         datasize default;
8 // Uncoment these to enable IPv6 connections support
9 // IPv4 will still work
10 //      listen-on { none; };
11 //      listen-on-v6 { any; };
12
13         #dnssec-enable yes;      # enable DNSSEC, default yes
14         dnssec-validation auto;  # enable DNSSEC validation with the key from bind.keys
15         dnssec-lookaside auto;   # enable DNSSEC DLV registry check with the key from bind.keys
16 };
17
18 zone "localhost" IN {
19         type master;
20         file "M/localhost.zone";
21         allow-update { none; };
22         allow-transfer { any; };
23 };
24
25 zone "0.0.127.in-addr.arpa" IN {
26         type master;
27         file "M/127.0.0.zone";
28         allow-update { none; };
29         allow-transfer { any; };
30 };
31
32 zone "." IN {
33         type hint;
34         file "root.hint";
35 };
36
37 //zone "pld-linux.org" IN {
38 //      type slave;
39 //      file "S/pld-linux.org.zone";
40 //      masters {
41 //                  195.116.211.3; 
42 //      };
43 //      allow-query { any; };
44 //      allow-transfer { any; };
45 //};
46
47 logging {
48         channel xfer-log {
49                 file "named.log";
50                 print-category yes;
51                 print-severity yes;
52                 print-time yes;
53                 severity info;
54         };
55         category xfer-in { xfer-log; };
56         category xfer-out { xfer-log; };
57         category notify { xfer-log; };
58 };
This page took 0.079384 seconds and 3 git commands to generate.