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// NS7
15
16options {
17	query-source address 10.53.0.7;
18	notify-source 10.53.0.7;
19	transfer-source 10.53.0.7;
20	port @PORT@;
21	pid-file "named.pid";
22	listen-on { 10.53.0.7; };
23	listen-on-v6 { fd92:7065:b8e:ffff::7; };
24	recursion yes;
25	dnssec-validation yes;
26	empty-zones-enable yes;
27	disable-empty-zone 20.172.in-addr.arpa;
28	/*
29	 * check prefetch disabled
30	 * check zero ttl not returned
31	 */
32	prefetch 0;
33	querylog yes;
34	edns-udp-size 4096;
35};
36
37key rndc_key {
38	secret "1234abcd8765";
39	algorithm @DEFAULT_HMAC@;
40};
41
42controls {
43	inet 10.53.0.7 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
44};
45
46zone "." {
47	type hint;
48	file "root.hint";
49};
50
51zone "server" {
52	type primary;
53	file "server.db";
54	allow-update { any; };
55};
56
57zone "edns-version.tld" {
58	type primary;
59	file "edns-version.tld.db";
60};
61
62zone "all-cnames" {
63	type primary;
64	file "all-cnames.db";
65};
66
67zone "tld2" {
68	type primary;
69	file "tld2.db";
70};
71
72zone "sub.tld1" {
73	type primary;
74	file "sub.tld1.db";
75};
76