summaryrefslogtreecommitdiffstats
path: root/bin/tests/system/dnssec/ns3/named.conf
blob: 38f4ad022d51dd77be7fa1893ee6b11596576443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
 * Copyright (C) 2004, 2006-2008  Internet Systems Consortium, Inc. ("ISC")
 * Copyright (C) 2000-2002  Internet Software Consortium.
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 */

/* $Id: named.conf,v 1.33 2008/09/25 04:02:38 tbox Exp $ */

// NS3

controls { /* empty */ };

options {
	query-source address 10.53.0.3;
	notify-source 10.53.0.3;
	transfer-source 10.53.0.3;
	port 5300;
	pid-file "named.pid";
	listen-on { 10.53.0.3; };
	listen-on-v6 { none; };
	recursion no;
	notify yes;
	dnssec-enable yes;
	dnssec-validation yes;
};

zone "." {
	type hint;
	file "../../common/root.hint";
};

zone "example" {
	type slave;
	masters { 10.53.0.2; };
	file "example.bk";
};

zone "secure.example" {
	type master;
	file "secure.example.db.signed";
	allow-update { any; };
};

zone "bogus.example" {
	type master;
	file "bogus.example.db.signed";
	allow-update { any; };
};

zone "dynamic.example" {
	type master;
	file "dynamic.example.db.signed";
	allow-update { any; };
};

zone "insecure.example" {
	type master;
	file "insecure.example.db";
	allow-update { any; };
};

zone "insecure.nsec3.example" {
	type master;
	file "insecure.nsec3.example.db";
	allow-update { any; };
};

zone "insecure.optout.example" {
	type master;
	file "insecure.optout.example.db";
	allow-update { any; };
};

zone "keyless.example" {
	type master;
	file "keyless.example.db.signed";
};

zone "nsec3.example" {
	type master;
	file "nsec3.example.db.signed";
};

zone "optout.nsec3.example" {
	type master;
	file "optout.nsec3.example.db.signed";
};

zone "nsec3.nsec3.example" {
	type master;
	file "nsec3.nsec3.example.db.signed";
};

zone "secure.nsec3.example" {
	type master;
	file "secure.nsec3.example.db.signed";
};

zone "optout.example" {
	type master;
	file "optout.example.db.signed";
};

zone "secure.optout.example" {
	type master;
	file "secure.optout.example.db.signed";
};

zone "nsec3.optout.example" {
	type master;
	file "nsec3.optout.example.db.signed";
};

zone "optout.optout.example" {
	type master;
	file "optout.optout.example.db.signed";
};

zone "nsec3-unknown.example" {
	type master;
	nsec3-test-zone yes;
	file "nsec3-unknown.example.db.signed";
};

zone "optout-unknown.example" {
	type master;
	nsec3-test-zone yes;
	file "optout-unknown.example.db.signed";
};

zone "multiple.example" {
	type master;
	file "multiple.example.db.signed";
	allow-update { any; };
};

zone "mustbesecure.example" {
	type master;
	file "mustbesecure.example.db";
};

zone "rfc2335.example" {
	type slave;
	masters { 10.53.0.2; };
	file "rfc2335.example.bk";
};

include "trusted.conf";