]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/named/files/common/named.conf.options
some class reshuffling
[dsa-puppet.git] / modules / named / files / common / named.conf.options
1 //
2 // THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 // USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 //
5
6 options {
7         directory "/var/cache/bind";
8
9         // If there is a firewall between you and nameservers you want
10         // to talk to, you may need to fix the firewall to allow multiple
11         // ports to talk.  See http://www.kb.cert.org/vuls/id/800113
12
13         // If your ISP provided one or more IP addresses for stable 
14         // nameservers, you probably want to use them as forwarders.  
15         // Uncomment the following block, and insert the addresses replacing 
16         // the all-0's placeholder.
17
18         // forwarders {
19         //      0.0.0.0;
20         // };
21
22         auth-nxdomain no;    # conform to RFC1035
23         listen-on-v6 { any; };
24         allow-query { any; };
25         allow-update { none; };
26         allow-transfer { none; };
27         allow-recursion { Nagios; };
28 };
29
30 logging {
31
32         channel queries {
33                 file "/var/log/bind9/geoip-query.log" versions 4 size 40m;
34                 print-time yes;
35                 print-category yes;
36         };
37         category queries { queries; };
38         category lame-servers { null; };
39
40 };
41
42