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 https://mozilla.org/MPL/2.0/.
7 *
8 * See the COPYRIGHT file distributed with this work for additional
9 * information regarding copyright ownership.
10 */
11
12options {
13	query-source address 10.53.0.1;
14	notify-source 10.53.0.1;
15	transfer-source 10.53.0.1;
16	recursion no;
17	additional-from-auth no;
18	port @PORT@;
19	pid-file "named.pid";
20	listen-on { 10.53.0.1; };
21	listen-on-v6 { none; };
22	notify no;
23	minimal-any yes;
24	minimal-responses no-auth;
25};
26
27include "../../common/rndc.key";
28
29controls {
30	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
31};
32
33zone "." {
34	type master;
35	file "root.db";
36};
37
38zone "rt.example" {
39	type master;
40	file "rt.db";
41};
42
43zone "naptr.example" {
44	type master;
45	file "naptr.db";
46};
47
48zone "rt2.example" {
49	type master;
50	file "rt2.db";
51};
52
53zone "naptr2.example" {
54	type master;
55	file "naptr2.db";
56};
57
58zone "nid.example" {
59	type master;
60	file "nid.db";
61};
62