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// NS1
15
16acl allowed {
17	! 10.53.0.5;
18	any;
19};
20
21options {
22	query-source address 10.53.0.1;
23	notify-source 10.53.0.1;
24	transfer-source 10.53.0.1;
25	port @PORT@;
26	pid-file "named.pid";
27	listen-on { 10.53.0.1; };
28	listen-on-v6 { none; };
29	recursion no;
30	notify no;
31	dnssec-validation yes;
32	allow-query { allowed; };
33};
34
35key rndc_key {
36	secret "1234abcd8765";
37	algorithm @DEFAULT_HMAC@;
38};
39
40controls {
41	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
42};
43
44zone "." {
45	type primary;
46	file "root.db.signed";
47};
48
49zone "tld" {
50	type primary;
51	file "tld.db.signed";
52};
53
54zone "sub.tld" {
55	type primary;
56	file "sub.tld.db.signed";
57};
58