source: trunk/packs/config/named.conf @ 12929

Revision 12929, 1.6 KB checked in by ghudson, 25 years ago (diff)
Add a stub zone for the hesiod root.
Line 
1//  $Id: named.conf,v 1.4 1999-04-17 02:28:16 ghudson Exp $
2
3// Athena named configuration file
4
5// If you need to make local records, this is how:
6//
7//      * Add a zone entry to the end of this file:
8//
9//              zone "foo.bar.baz" {
10//                      type master;
11//                      file "named.foo";
12//              };
13//
14//        where foo.bar.baz is the local record you want to override
15//        and named.foo is a filename.  For example:
16//
17//              zone "zephyr.sloc.ns.athena.mit.edu" {
18//                      type master;
19//                      file "named.zephyr";
20//              };
21//
22//      * In /etc/named.foo, put:
23//
24//        @     IN      SOA     yourhostname.mit.edu. yourusername.mit.edu. (
25//                                      1       ; Serial
26//                                      3600    ; Refresh 1 hour
27//                                      300     ; Retry 5 minutes
28//                                      2419200 ; Expire 28 days
29//                                      3600000 ; Minimum 1000 hours
30//                                      )
31//                      NS      yourhostname.mit.edu.
32//
33//        substituting your hostname for "yourhostname" and your
34//        username for "yourusername".  Make sure there is no
35//        whitespace before the '@'.  After the SOA record, put the
36//        local record(s) themselves, without specifying the name,
37//        e.g.:
38//
39//                      TXT     "erato.mit.edu"
40//                      TXT     "arilinn.mit.edu"
41//
42//      * Run "ndc reload".
43
44options {
45        directory "/etc";
46        pid-file "/var/athena/named.pid";
47        dump-file "/var/athena/named_dump.db";
48};
49
50zone "." {
51        type hint;
52        file "named.root";
53};
54
55zone "." hs {
56        type stub;
57        masters {
58                18.72.0.3;
59                18.70.0.160;
60                18.71.0.151;
61        };
62        file "/var/athena/named.hs";
63};
64
65zone "mit.edu" {
66        type stub;
67        masters {
68                18.72.0.3;
69                18.70.0.160;
70                18.71.0.151;
71        };
72        file "/var/athena/named.mit";
73};
74
75zone "localhost" {
76        type master;
77        file "named.localhost";
78};
79
80zone "1.0.0.127.in-addr.arpa" {
81        type master;
82        file "named.localhost.rev";
83};
84
Note: See TracBrowser for help on using the repository browser.