ca7ee807d5
many found it ugly, and I found that I've made a mistake in old name. there needs to be 4 more "0"s! this commit renames etc/namedb/0000:0000:0000:0000:0000:0000:000 into etc/namedb/loopback.v6. (based on recent discussion I did not use cvsmove)
56 lines
906 B
Plaintext
56 lines
906 B
Plaintext
# $NetBSD: named.conf,v 1.5 2000/03/01 11:06:29 itojun Exp $
|
|
|
|
# boot file for secondary name server
|
|
# Note that there should be one primary entry for each SOA record.
|
|
|
|
options {
|
|
directory "/etc/namedb";
|
|
};
|
|
|
|
zone "." {
|
|
type hint;
|
|
file "root.cache";
|
|
};
|
|
|
|
zone "127.IN-ADDR.ARPA" {
|
|
type master;
|
|
file "127";
|
|
};
|
|
|
|
zone "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.int" {
|
|
type master;
|
|
file "loopback.v6";
|
|
};
|
|
|
|
# example secondary server config:
|
|
#
|
|
# zone "Berkeley.EDU" {
|
|
# type slave;
|
|
# file "berkeley.edu.cache";
|
|
# masters {
|
|
# 128.32.130.11;
|
|
# 128.32.133.1;
|
|
# };
|
|
# };
|
|
|
|
# zone "32.128.IN-ADDR.ARPA" {
|
|
# type slave;
|
|
# file "128.32.cache";
|
|
# masters {
|
|
# 128.32.130.11;
|
|
# 128.32.133.1;
|
|
# };
|
|
# };
|
|
|
|
# example primary server config:
|
|
#
|
|
# zone "Berkeley.EDU" {
|
|
# type master;
|
|
# file "berkeley.edu";
|
|
# };
|
|
|
|
# zone "32.128.IN-ADDR.ARPA" {
|
|
# type master;
|
|
# file "128.32";
|
|
# };
|