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
14include "../../_common/rndc.key";
15
16controls {
17	inet 10.53.0.4 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
18};
19
20options {
21	query-source address 10.53.0.4;
22	notify-source 10.53.0.4;
23	transfer-source 10.53.0.4;
24	port @PORT@;
25	tls-port @TLSPORT@;
26	pid-file "named.pid";
27	listen-on { 10.53.0.4; };
28	listen-on-v6 { fd92:7065:b8e:ffff::4; };
29	notify no;
30	notify-delay 0;
31	recursion no;
32	serial-query-rate 100;
33	ixfr-from-differences yes; // GL #3777
34	dnssec-validation no;
35
36	catalog-zones {
37		zone "catalog-tls.example"
38			min-update-interval 1s
39			default-primaries { 10.53.0.1 key tsig_key tls ephemeral; };
40		zone "catalog-self.example"
41			min-update-interval 1s
42			default-primaries { 10.53.0.4; };
43	};
44};
45
46zone "catalog-tls.example" {
47	type secondary;
48	file "catalog-tls.example.db";
49	primaries { 10.53.0.1 key tsig_key tls ephemeral; };
50};
51
52zone "catalog-self.example" {
53	type primary;
54	file "catalog-self.example.db";
55	notify explicit;
56};
57
58key tsig_key. {
59	secret "LSAnCU+Z";
60	algorithm @DEFAULT_HMAC@;
61};
62
63key next_key. {
64	secret "LaAnCU+Z";
65	algorithm @DEFAULT_HMAC@;
66};
67