named.conf.in revision 1.1.1.2
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
12key rndc_key {
13	secret "1234abcd8765";
14	algorithm hmac-sha256;
15};
16
17controls {
18	inet 10.53.0.5 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
19};
20
21options {
22	query-source address 10.53.0.5;
23	notify-source 10.53.0.5;
24	transfer-source 10.53.0.5;
25	port @PORT@;
26	pid-file "named.pid";
27	listen-on { 10.53.0.5; };
28	listen-on-v6 { none; };
29	recursion yes;
30	dnssec-validation yes;
31	cookie-algorithm sha1;
32	cookie-secret "569d36a6cc27d6bf55502183302ba352745255a2";
33	cookie-secret "6b300e27a0db46d4b046e4189790fa7db3c1ffb3";
34	require-server-cookie yes;
35};
36
37zone "." {
38	type hint;
39	file "root.hint";
40};
41