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
12key rndc_key {
13	secret "1234abcd8765";
14	algorithm hmac-sha256;
15};
16
17controls {
18	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
19};
20
21options {
22	port @PORT@;
23	pid-file "named.pid";
24	listen-on { 10.53.0.1; };
25	listen-on-v6 { none; };
26	allow-query { any; };
27	allow-new-zones yes;
28	recursion no;
29};
30
31zone "." {
32	type hint;
33	file "../../common/root.hint";
34};
35
36zone "inlineslave.example" {
37	type master;
38	file "inlineslave.db";
39};
40
41zone "." {
42	type redirect;
43	file "redirect.db";
44};
45