db-move: moved gnome-font-viewer from [testing] to [extra] (x86_64)
[arch-packages.git] / bind / trunk / named.conf
blob2ac668d4c38fe4e24734eeab1415efcecb11361a
1 // vim:set ts=4 sw=4 et:
3 options {
4     directory "/var/named";
5     pid-file "/run/named/named.pid";
7     // Uncomment these to enable IPv6 connections support
8     // IPv4 will still work:
9     //  listen-on-v6 { any; };
10     // Add this for no IPv4:
11     //  listen-on { none; };
13     allow-recursion { 127.0.0.1; };
14     allow-transfer { none; };
15     allow-update { none; };
17     version none;
18     hostname none;
19     server-id none;
22 zone "localhost" IN {
23     type master;
24     file "localhost.zone";
27 zone "0.0.127.in-addr.arpa" IN {
28     type master;
29     file "127.0.0.zone";
32 zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" {
33     type master;
34     file "localhost.ip6.zone";
37 //zone "example.org" IN {
38 //    type slave;
39 //    file "example.zone";
40 //    masters {
41 //        192.168.1.100;
42 //    };
43 //    allow-query { any; };
44 //    allow-transfer { any; };
45 //};
47 //logging {
48 //    channel xfer-log {
49 //        file "/var/log/named.log";
50 //            print-category yes;
51 //            print-severity yes;
52 //            severity info;
53 //        };
54 //        category xfer-in { xfer-log; };
55 //        category xfer-out { xfer-log; };
56 //        category notify { xfer-log; };
57 //};