]> git.pld-linux.org Git - packages/bind.git/blob - bind-named.conf
- updated
[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
15 zone "localhost" IN {
16         type master;
17         file "M/localhost.zone";
18         allow-update { none; };
19         allow-transfer { any; };
20 };
21
22 zone "0.0.127.in-addr.arpa" IN {
23         type master;
24         file "M/127.0.0.zone";
25         allow-update { none; };
26         allow-transfer { any; };
27 };
28
29 zone "." IN {
30         type hint;
31         file "root.hint";
32 };
33
34 //zone "pld-linux.org" IN {
35 //      type slave;
36 //      file "S/pld-linux.org.zone";
37 //      masters {
38 //                  195.116.211.3; 
39 //      };
40 //      allow-query { any; };
41 //      allow-transfer { any; };
42 //};
43
44 logging {
45         channel xfer-log {
46                 file "named.log";
47                 print-category yes;
48                 print-severity yes;
49                 print-time yes;
50                 severity info;
51         };
52         category xfer-in { xfer-log; };
53         category xfer-out { xfer-log; };
54         category notify { xfer-log; };
55 };
56
This page took 0.027559 seconds and 3 git commands to generate.