]> git.pld-linux.org Git - packages/bind.git/blob - named.conf
- idn patch updated,
[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 logging {
42         channel xfer-log {
43                 file "/var/log/named";
44                 print-category yes;
45                 print-severity yes;
46                 print-time yes;
47                 severity info;
48         };
49         category xfer-in { xfer-log; };
50         category xfer-out { xfer-log; };
51         category notify { xfer-log; };
52         category load { xfer-log; };
53 };
54
This page took 0.0422 seconds and 3 git commands to generate.