summaryrefslogtreecommitdiffstats
path: root/bin/tests/system/kasp/ns5/named.conf.in
blob: 44855b92d56901869a22ccd129ecda311f67ea4b (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
/*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * SPDX-License-Identifier: MPL-2.0
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0.  If a copy of the MPL was not distributed with this
 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

// NS5

key rndc_key {
	secret "1234abcd8765";
	algorithm @DEFAULT_HMAC@;
};

controls {
	inet 10.53.0.5 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};

key "sha1" {
	algorithm "hmac-sha1";
	secret "FrSt77yPTFx6hTs4i2tKLB9LmE0=";
};

key "sha224" {
	algorithm "hmac-sha224";
	secret "hXfwwwiag2QGqblopofai9NuW28q/1rH4CaTnA==";
};

key "sha256" {
	algorithm "hmac-sha256";
	secret "R16NojROxtxH/xbDl//ehDsHm5DjWTQ2YXV+hGC2iBY=";
};

dnssec-policy "test" {
	keys {
		csk key-directory lifetime 0 algorithm 14;
	};
};

options {
	query-source address 10.53.0.5;
	port @PORT@;
	pid-file "named.pid";
	listen-on { 10.53.0.5; };
	listen-on-v6 { none; };
	recursion no;
	dnssec-policy "none";
	dnssec-validation no;
};

view "inherit" {
	match-clients { key "sha1"; };

	/* Inherit dnssec-policy 'none' */
	zone "inherit.inherit.unsigned" {
		type primary;
		file "inherit.inherit.unsigned.db";
	};

	/* Override dnssec-policy */
	zone "override.inherit.unsigned" {
		type primary;
		file "override.inherit.unsigned.db";
		inline-signing yes;
		dnssec-policy "default";
	};

	/* Unset dnssec-policy */
	zone "none.inherit.unsigned" {
		type primary;
		file "none.inherit.unsigned.db";
		dnssec-policy "none";
	};
};

view "override" {
	match-clients { key "sha224"; };
	dnssec-policy "default";

	/* Inherit dnssec-policy 'default' */
	zone "inherit.override.unsigned" {
		type primary;
		file "inherit.override.unsigned.db";
		inline-signing yes;
	};

	/* Override dnssec-policy */
	zone "override.override.unsigned" {
		type primary;
		file "override.override.unsigned.db";
		inline-signing yes;
		dnssec-policy "test";
	};

	/* Unset dnssec-policy */
	zone "none.override.unsigned" {
		type primary;
		file "none.override.unsigned.db";
		dnssec-policy "none";
	};
};

view "none" {
	match-clients { key "sha256"; };
	dnssec-policy "none";

	/* Inherit dnssec-policy 'none' */
	zone "inherit.none.unsigned" {
		type primary;
		file "inherit.none.unsigned.db";
	};

	/* Override dnssec-policy */
	zone "override.none.unsigned" {
		type primary;
		file "override.none.unsigned.db";
		inline-signing yes;
		dnssec-policy "test";
	};

	/* Unset dnssec-policy */
	zone "none.none.unsigned" {
		type primary;
		file "none.none.unsigned.db";
		dnssec-policy "none";
	};
};