source: npl/internetserver/bind/caching-example/named.conf @ c5c522c

gcc484ntopperl-5.22
Last change on this file since c5c522c was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100644
File size: 679 bytes
RevLine 
[c5c522c]1options {
2        directory "/var/named";
3        /*
4         * If there is a firewall between you and nameservers you want
5         * to talk to, you might need to uncomment the query-source
6         * directive below.  Previous versions of BIND always asked
7         * questions using port 53, but BIND 8.1 uses an unprivileged
8         * port by default.
9         */
10        // query-source address * port 53;
11};
12
13//
14// a caching only nameserver config
15//
16zone "." IN {
17        type hint;
18        file "caching-example/named.ca";
19};
20
21zone "localhost" IN {
22        type master;
23        file "caching-example/localhost.zone";
24        allow-update { none; };
25};
26
27zone "0.0.127.in-addr.arpa" IN {
28        type master;
29        file "caching-example/named.local";
30        allow-update { none; };
31};
Note: See TracBrowser for help on using the repository browser.