No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / bind / dist / bin / tests / system / dnssec / ns3 / named.conf
blobace70ebb6cb174514f3034d7192753b228170326
1 /*
2  * Copyright (C) 2004, 2006-2009  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2000-2002  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
18 /* Id: named.conf,v 1.35 2009/10/27 23:47:44 tbox Exp */
20 // NS3
22 controls { /* empty */ };
24 options {
25         query-source address 10.53.0.3;
26         notify-source 10.53.0.3;
27         transfer-source 10.53.0.3;
28         port 5300;
29         pid-file "named.pid";
30         listen-on { 10.53.0.3; };
31         listen-on-v6 { none; };
32         recursion no;
33         notify yes;
34         dnssec-enable yes;
35         dnssec-validation yes;
38 zone "." {
39         type hint;
40         file "../../common/root.hint";
43 zone "example" {
44         type slave;
45         masters { 10.53.0.2; };
46         file "example.bk";
49 zone "secure.example" {
50         type master;
51         file "secure.example.db.signed";
52         allow-update { any; };
55 zone "bogus.example" {
56         type master;
57         file "bogus.example.db.signed";
58         allow-update { any; };
61 zone "dynamic.example" {
62         type master;
63         file "dynamic.example.db.signed";
64         allow-update { any; };
67 zone "insecure.example" {
68         type master;
69         file "insecure.example.db";
70         allow-update { any; };
73 zone "insecure.nsec3.example" {
74         type master;
75         file "insecure.nsec3.example.db";
76         allow-update { any; };
79 zone "insecure.optout.example" {
80         type master;
81         file "insecure.optout.example.db";
82         allow-update { any; };
85 zone "keyless.example" {
86         type master;
87         file "keyless.example.db.signed";
90 zone "nsec3.example" {
91         type master;
92         file "nsec3.example.db.signed";
95 zone "optout.nsec3.example" {
96         type master;
97         file "optout.nsec3.example.db.signed";
100 zone "nsec3.nsec3.example" {
101         type master;
102         file "nsec3.nsec3.example.db.signed";
105 zone "secure.nsec3.example" {
106         type master;
107         file "secure.nsec3.example.db.signed";
110 zone "optout.example" {
111         type master;
112         file "optout.example.db.signed";
115 zone "secure.optout.example" {
116         type master;
117         file "secure.optout.example.db.signed";
120 zone "nsec3.optout.example" {
121         type master;
122         file "nsec3.optout.example.db.signed";
125 zone "optout.optout.example" {
126         type master;
127         file "optout.optout.example.db.signed";
130 zone "nsec3-unknown.example" {
131         type master;
132         nsec3-test-zone yes;
133         file "nsec3-unknown.example.db.signed";
136 zone "optout-unknown.example" {
137         type master;
138         nsec3-test-zone yes;
139         file "optout-unknown.example.db.signed";
142 zone "multiple.example" {
143         type master;
144         file "multiple.example.db.signed";
145         allow-update { any; };
148 zone "mustbesecure.example" {
149         type master;
150         file "mustbesecure.example.db";
153 zone "rfc2335.example" {
154         type slave;
155         masters { 10.53.0.2; };
156         file "rfc2335.example.bk";
159 zone "rsasha256.example" {
160         type master;
161         file "rsasha256.example.db.signed";
164 zone "rsasha512.example" {
165         type master;
166         file "rsasha512.example.db.signed";
169 include "trusted.conf";