1/*
2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0.  If a copy of the MPL was not distributed with this
8 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9 *
10 * See the COPYRIGHT file distributed with this work for additional
11 * information regarding copyright ownership.
12 */
13
14// NS3
15
16options {
17	query-source address 10.53.0.3;
18	notify-source 10.53.0.3;
19	transfer-source 10.53.0.3;
20	port @PORT@;
21	pid-file "named.pid";
22	listen-on { 10.53.0.3; };
23	listen-on-v6 { none; };
24	recursion no;
25	notify yes;
26	dnssec-validation yes;
27};
28
29zone "example" {
30	type primary;
31	allow-update { any; };
32	file "example.db";
33};
34
35zone "nsec3param.test" {
36	type primary;
37	allow-update { any; };
38	file "nsec3param.test.db.signed";
39};
40
41zone "dnskey.test" {
42	type primary;
43	allow-update { any; };
44	file "dnskey.test.db.signed";
45};
46
47zone "many.test" {
48	type secondary;
49	primaries { 10.53.0.1; };
50	allow-update-forwarding { any; };
51	file "many.test.bk";
52};
53
54zone "delegation.test" {
55	type primary;
56	allow-update { any; };
57	file "delegation.test.db.signed";
58};
59
60zone "too-big.test" {
61	type primary;
62	allow-update { any; };
63	max-records 3;
64	file "too-big.test.db";
65};
66
67/* Zone for testing CDS and CDNSKEY updates from other provider */
68zone "multisigner.test" {
69	type primary;
70	allow-update { any; };
71	dnssec-policy "default";
72	file "multisigner.test.db";
73};
74