]> git.pld-linux.org Git - packages/bind.git/blob - bind-named.conf
- rel 3
[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-validation yes;  # enable DNSSEC validation
14 };
15
16 zone "localhost" IN {
17         type master;
18         file "M/localhost.zone";
19         allow-update { none; };
20         allow-transfer { any; };
21 };
22
23 zone "0.0.127.in-addr.arpa" IN {
24         type master;
25         file "M/127.0.0.zone";
26         allow-update { none; };
27         allow-transfer { any; };
28 };
29
30 zone "." IN {
31         type hint;
32         file "root.hint";
33 };
34
35 //zone "pld-linux.org" IN {
36 //      type slave;
37 //      file "S/pld-linux.org.zone";
38 //      masters {
39 //                  195.116.211.3; 
40 //      };
41 //      allow-query { any; };
42 //      allow-transfer { any; };
43 //};
44
45 logging {
46         channel xfer-log {
47                 file "named.log";
48                 print-category yes;
49                 print-severity yes;
50                 print-time yes;
51                 severity info;
52         };
53         category xfer-in { xfer-log; };
54         category xfer-out { xfer-log; };
55         category notify { xfer-log; };
56 };
57
58 managed-keys {
59     "." initial-key 257 3 8
60         "AwEAAagAIKlVZrpC6Ia7gEzahOR+9W29euxhJhVVLOyQbSEW0O8gcCjF
61          FVQUTf6v58fLjwBd0YI0EzrAcQqBGCzh/RStIoO8g0NfnfL2MTJRkxoX
62          bfDaUeVPQuYEhg37NZWAJQ9VnMVDxP/VHL496M/QZxkjf5/Efucp2gaD
63          X6RS6CXpoY68LsvPVjR0ZSwzz1apAzvN9dlzEheX7ICJBBtuA6G3LQpz
64          W5hOA2hzCTMjJPJ8LbqF6dsV6DoBQzgul0sGIcGOYl7OyQdXfZ57relS
65          Qageu+ipAdTTJ25AsRTAoub8ONGcLmqrAmRLKBP1dfwhYB4N7knNnulq
66          QxA+Uk1ihz0=";
67 };
This page took 0.027797 seconds and 3 git commands to generate.