1169691Skan/*
2132720Skan * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3132720Skan *
4132720Skan * SPDX-License-Identifier: MPL-2.0
5132720Skan *
6132720Skan * This Source Code Form is subject to the terms of the Mozilla Public
7132720Skan * License, v. 2.0.  If a copy of the MPL was not distributed with this
8132720Skan * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9132720Skan *
10132720Skan * See the COPYRIGHT file distributed with this work for additional
11132720Skan * information regarding copyright ownership.
12132720Skan */
13132720Skan
14132720Skanoptions {
15132720Skan	directory ".";
16132720Skan	query-source address 10.53.0.7;
17169691Skan	notify-source 10.53.0.7;
18132720Skan	transfer-source 10.53.0.7;
19132720Skan	port @PORT@;
20132720Skan	pid-file "named.pid";
21132720Skan	listen-on { 10.53.0.7; };
22132720Skan	listen-on-v6 { fd92:7065:b8e:ffff::7; };
23132720Skan	recursion yes;
24132720Skan	allow-recursion { any; };
25132720Skan	dnssec-validation yes;
26132720Skan	deny-answer-aliases {
27132720Skan		"example";
28132720Skan	} except-from {
29132720Skan		"example";
30132720Skan	};
31132720Skan};
32132720Skan
33132720Skankey rndc_key {
34132720Skan	secret "1234abcd8765";
35169691Skan	algorithm @DEFAULT_HMAC@;
36132720Skan};
37169691Skan
38132720Skancontrols {
39169691Skan	inet 10.53.0.7 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
40169691Skan};
41169691Skan
42169691Skanzone "." {
43169691Skan	type hint;
44169691Skan	file "root.hint";
45132720Skan};
46169691Skan