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// NS3
13
14options {
15	query-source address 10.53.0.3 dscp 7;
16	notify-source 10.53.0.3 dscp 8;
17	transfer-source 10.53.0.3 dscp 9;
18	port @PORT@;
19	pid-file "named.pid";
20	listen-on { 10.53.0.3; };
21	listen-on-v6 { none; };
22	recursion no;
23	notify yes;
24	dnssec-enable yes;
25	dnssec-validation yes;
26};
27
28zone "example" {
29	type master;
30	allow-update { any; };
31	file "example.db";
32};
33
34zone "nsec3param.test" {
35	type master;
36	allow-update { any; };
37	file "nsec3param.test.db.signed";
38};
39
40zone "dnskey.test" {
41	type master;
42	allow-update { any; };
43	file "dnskey.test.db.signed";
44};
45
46zone "many.test" {
47	type slave;
48	masters { 10.53.0.1; };
49	allow-update-forwarding { any; };
50	file "many.test.bk";
51};
52
53zone "delegation.test" {
54	type master;
55	allow-update { any; };
56	file "delegation.test.db.signed";
57};
58
59zone "too-big.test" {
60	type master;
61	allow-update { any; };
62	max-records 3;
63	file "too-big.test.db";
64};
65