1/*
2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0.  If a copy of the MPL was not distributed with this
8 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9 *
10 * See the COPYRIGHT file distributed with this work for additional
11 * information regarding copyright ownership.
12 */
13
14options {
15	query-source address 10.53.0.2;
16	query-source-v6 address fd92:7065:b8e:ffff::2;
17	notify-source 10.53.0.2;
18	notify-source-v6 fd92:7065:b8e:ffff::2;
19	transfer-source 10.53.0.2;
20	transfer-source-v6 fd92:7065:b8e:ffff::2;
21	port @PORT@;
22	pid-file "named.pid";
23	listen-on { 10.53.0.2; };
24	listen-on-v6 { fd92:7065:b8e:ffff::2; };
25	recursion no;
26	dnssec-validation no;
27};
28
29zone "." {
30	type hint;
31	file "root.db";
32};
33
34zone "example1." {
35	type primary;
36	file "example.db";
37};
38
39zone "example2." {
40	type primary;
41	file "example.db";
42};
43
44zone "example3." {
45	type primary;
46	file "example.db";
47};
48
49zone "example4." {
50	type primary;
51	file "example.db";
52};
53
54zone "example7." {
55	type primary;
56	file "example.db";
57};
58
59zone "grafted." {
60	type primary;
61	file "example.db";
62};
63
64zone "1.0.10.in-addr.arpa." {
65	type primary;
66	file "example.db";
67};
68
69zone "tld" {
70	type primary;
71	file "tld.db";
72};
73