]> git.pld-linux.org Git - packages/bind.git/blob - named.conf
- BR openssl 0.9.7 -> 0.9.6i
[packages/bind.git] / 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 "/var/lib/named";
6         check-names master fail;        
7 //      check-names slave warn;         
8         check-names response ignore;
9         datasize default;
10         deallocate-on-exit no;
11         host-statistics no;
12         fake-iquery no; 
13 };
14
15 controls {
16         unix "/var/run/ndc" perm 0600 owner 0 group 0;  
17 };
18
19
20 zone "localhost" IN {
21         type master;
22         file "M/localhost.zone";
23         check-names fail;
24         allow-update { none; };
25         allow-transfer { any; };
26 };
27
28 zone "0.0.127.in-addr.arpa" IN {
29         type master;
30         file "M/127.0.0.zone";
31         check-names fail;
32         allow-update { none; };
33         allow-transfer { any; };
34 };
35
36 zone "." IN {
37         type hint;
38         file "root.hint";
39 };
40
41 //zone "pld.org.pl" IN {
42 //      type slave;
43 //      file "S/pld.org.pl.zone";
44 //      masters {
45 //                  195.116.211.3; 
46 //      };
47 //      check-names warn;
48 //      allow-query { any; };
49 //      allow-transfer { any; };
50 // };
51
52 logging {
53         channel xfer-log {
54                 file "/var/log/named";
55                 print-category yes;
56                 print-severity yes;
57                 print-time yes;
58                 severity info;
59         };
60         category xfer-in { xfer-log; };
61         category xfer-out { xfer-log; };
62         category notify { xfer-log; };
63         category load { xfer-log; };
64 };
65
This page took 0.035556 seconds and 3 git commands to generate.