named.conf.in revision 1.1.1.3
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// NS4
13
14options {
15	query-source address 10.53.0.4 dscp 4;
16	notify-source 10.53.0.4 dscp 5;
17	transfer-source 10.53.0.4 dscp 6;
18	port @PORT@;
19	pid-file "named.pid";
20	listen-on { 10.53.0.4; };
21	listen-on-v6 { none; };
22	recursion no;
23	dnssec-validation no;
24	/* test that named loads with root-delegation-only */
25	root-delegation-only;
26};
27
28zone "." {
29	type master;
30	file "root.db";
31};
32
33zone "moves" {
34	type master;
35	file "moves.db";
36};
37
38zone "child.server" {
39	type master;
40	file "child.server.db";
41};
42
43zone "tld" {
44	type master;
45	file "tld.db";
46};
47
48zone "broken" {
49	type master;
50	file "broken.db";
51};
52
53zone "sourcens" {
54    type master;
55    file "sourcens.db";
56};
57
58key rndc_key {
59	secret "1234abcd8765";
60	algorithm hmac-sha256;
61};
62
63controls {
64	inet 10.53.0.4 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
65};
66