]> git.pld-linux.org Git - packages/bind.git/blame - bind-named.conf
- root.zone update
[packages/bind.git] / bind-named.conf
CommitLineData
6b7ae77d 1// This is an exaple configuration file for named ( /etc/named.conf )
6b7ae77d
AG
2
3options {
4 directory "/";
5 pid-file "named.pid";
6 auth-nxdomain yes;
7 datasize default;
8// Uncoment these to enable IPv6 connections support
9// IPv4 will still work
10// listen-on { none; };
11// listen-on-v6 { any; };
e54964a9 12
93b9b6d6 13 #dnssec-enable yes; # enable DNSSEC, default yes
14 dnssec-validation auto; # enable DNSSEC validation with the key from bind.keys
15 dnssec-lookaside auto; # enable DNSSEC DLV registry check with the key from bind.keys
6b7ae77d
AG
16};
17
18zone "localhost" IN {
19 type master;
20 file "M/localhost.zone";
21 allow-update { none; };
22 allow-transfer { any; };
23};
24
25zone "0.0.127.in-addr.arpa" IN {
26 type master;
27 file "M/127.0.0.zone";
28 allow-update { none; };
29 allow-transfer { any; };
30};
31
32zone "." IN {
33 type hint;
34 file "root.hint";
35};
36
37//zone "pld-linux.org" IN {
38// type slave;
39// file "S/pld-linux.org.zone";
40// masters {
41// 195.116.211.3;
42// };
43// allow-query { any; };
44// allow-transfer { any; };
45//};
46
47logging {
48 channel xfer-log {
49 file "named.log";
50 print-category yes;
51 print-severity yes;
52 print-time yes;
53 severity info;
54 };
55 category xfer-in { xfer-log; };
56 category xfer-out { xfer-log; };
57 category notify { xfer-log; };
58};
This page took 0.0398 seconds and 4 git commands to generate.