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
14options {
15	query-source address 10.53.0.1;
16	notify-source 10.53.0.1;
17	transfer-source 10.53.0.1;
18	port @PORT@;
19	session-keyfile "session.key";
20	pid-file "named.pid";
21	listen-on { 10.53.0.1; };
22	listen-on-v6 { none; };
23	dnssec-validation yes;
24	minimal-responses no;
25	recursion no;
26	notify yes;
27};
28
29key rndc_key {
30	secret "1234abcd8765";
31	algorithm @DEFAULT_HMAC@;
32};
33
34controls {
35	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
36};
37
38zone changed {
39	type primary;
40	update-policy local;
41	file "changed.db";
42};
43
44zone unchanged {
45	type primary;
46	update-policy local;
47	file "unchanged.db";
48};
49
50zone changed2 {
51	type primary;
52	update-policy local;
53	file "changed2.db";
54};
55
56zone unchanged2 {
57	type primary;
58	update-policy local;
59	file "unchanged2.db";
60};
61
62zone hdr1d1d2d1d2 {
63	type primary;
64	update-policy local;
65	file "d1212.db";
66};
67
68zone hdr1d2d1d2d1 {
69	type primary;
70	update-policy local;
71	file "d2121.db";
72};
73
74zone ixfr {
75	type primary;
76	ixfr-from-differences yes;
77	file "ixfr.db";
78};
79
80zone maxjournal {
81	type primary;
82	max-journal-size 1k;
83	update-policy local;
84	file "maxjournal.db";
85};
86
87zone maxjournal2 {
88	type primary;
89	max-journal-size 1k;
90	update-policy local;
91	file "maxjournal2.db";
92};
93