]> git.pld-linux.org Git - packages/bind.git/blob - bind-named.conf
- md5
[packages/bind.git] / bind-named.conf
1 // This is an exaple configuration file for named ( /etc/named.conf ) 
2 // Przyk³adowy plik konfiguracyjny /etc/named.conf dla serwera nazw `named'
3
4 options {
5         directory "/";
6         pid-file "named.pid";
7         auth-nxdomain yes;
8         datasize default;
9 // Uncoment these to enable IPv6 connections support
10 // IPv4 will still work
11 //      listen-on { none; };
12 //      listen-on-v6 { any; };
13
14         dnssec-validation yes;  # enable DNSSEC validation
15 };
16
17 zone "localhost" IN {
18         type master;
19         file "M/localhost.zone";
20         allow-update { none; };
21         allow-transfer { any; };
22 };
23
24 zone "0.0.127.in-addr.arpa" IN {
25         type master;
26         file "M/127.0.0.zone";
27         allow-update { none; };
28         allow-transfer { any; };
29 };
30
31 zone "." IN {
32         type hint;
33         file "root.hint";
34 };
35
36 //zone "pld-linux.org" IN {
37 //      type slave;
38 //      file "S/pld-linux.org.zone";
39 //      masters {
40 //                  195.116.211.3; 
41 //      };
42 //      allow-query { any; };
43 //      allow-transfer { any; };
44 //};
45
46 logging {
47         channel xfer-log {
48                 file "named.log";
49                 print-category yes;
50                 print-severity yes;
51                 print-time yes;
52                 severity info;
53         };
54         category xfer-in { xfer-log; };
55         category xfer-out { xfer-log; };
56         category notify { xfer-log; };
57 };
58
59 managed-keys {
60     "." initial-key 257 3 8
61         "AwEAAagAIKlVZrpC6Ia7gEzahOR+9W29euxhJhVVLOyQbSEW0O8gcCjF
62          FVQUTf6v58fLjwBd0YI0EzrAcQqBGCzh/RStIoO8g0NfnfL2MTJRkxoX
63          bfDaUeVPQuYEhg37NZWAJQ9VnMVDxP/VHL496M/QZxkjf5/Efucp2gaD
64          X6RS6CXpoY68LsvPVjR0ZSwzz1apAzvN9dlzEheX7ICJBBtuA6G3LQpz
65          W5hOA2hzCTMjJPJ8LbqF6dsV6DoBQzgul0sGIcGOYl7OyQdXfZ57relS
66          Qageu+ipAdTTJ25AsRTAoub8ONGcLmqrAmRLKBP1dfwhYB4N7knNnulq
67          QxA+Uk1ihz0=";
68 };
This page took 0.274859 seconds and 3 git commands to generate.