named.conf.in revision 1.1.1.1
1/*
2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 *
8 * See the COPYRIGHT file distributed with this work for additional
9 * information regarding copyright ownership.
10 */
11
12// NS5
13
14key rndc_key {
15	secret "1234abcd8765";
16	algorithm hmac-sha256;
17};
18
19controls {
20	inet 10.53.0.5 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
21};
22
23
24options {
25	query-source address 10.53.0.5;
26	notify-source 10.53.0.5;
27	transfer-source 10.53.0.5;
28	port @PORT@;
29	directory ".";
30	pid-file "named.pid";
31	listen-on { 10.53.0.5; };
32	listen-on-v6 { none; };
33        tcp-listen-queue 32;
34	recursion yes;
35	notify yes;
36        tcp-clients 17;
37	dnssec-validation no;
38};
39
40zone "." {
41	type hint;
42	file "../../common/root.hint";
43};
44