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// NS2
15
16include "../../_common/rndc.key";
17
18controls {
19	inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
20};
21
22options {
23	query-source address 10.53.0.2;
24	notify-source 10.53.0.2;
25	transfer-source 10.53.0.2;
26	port @PORT@;
27	pid-file "named.pid";
28	listen-on { 10.53.0.2; };
29	listen-on-v6 { none; };
30	recursion no;
31	notify yes;
32	notify-delay 0;
33	allow-new-zones yes;
34	dnssec-validation no;
35};
36
37zone "bits" {
38	type primary;
39	file "bits.db";
40	allow-update { any; };
41};
42
43zone "retransfer" {
44	type primary;
45	file "retransfer.db";
46	allow-update { any; };
47	notify no;
48};
49
50zone "retransfer3" {
51	type primary;
52	file "retransfer3.db";
53	allow-update { any; };
54	allow-transfer { none; };	// changed dynamically by tests.sh
55	notify no;
56};
57
58zone "nsec3-loop" {
59	type primary;
60	file "nsec3-loop.db";
61	notify no;
62};
63
64zone "inactiveksk" {
65	type primary;
66	file "inactiveksk.db";
67	allow-update { any; };
68};
69
70zone "inactivezsk" {
71	type primary;
72	file "inactivezsk.db";
73	allow-update { any; };
74};
75
76zone "nokeys" {
77	type primary;
78	file "nokeys.db";
79	allow-update { any; };
80};
81
82zone "removedkeys-secondary" {
83	type primary;
84	file "removedkeys-secondary.db";
85	allow-update { any; };
86};
87