named1.conf.in revision 1.1.1.4
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 dscp 13;
18	notify-source 10.53.0.7 dscp 14;
19	transfer-source 10.53.0.7 dscp 15;
20	port @PORT@;
21	pid-file "named.pid";
22	listen-on { 10.53.0.7; };
23	listen-on-v6 { none; };
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};
35
36key rndc_key {
37	secret "1234abcd8765";
38	algorithm hmac-sha256;
39};
40
41controls {
42	inet 10.53.0.7 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
43};
44
45zone "." {
46	type hint;
47	file "root.hint";
48};
49
50zone "server" {
51	type primary;
52	file "server.db";
53	allow-update { any; };
54};
55
56zone "edns-version.tld" {
57	type primary;
58	file "edns-version.tld.db";
59};
60
61zone "all-cnames" {
62	type primary;
63	file "all-cnames.db";
64};
65