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.1;
16	notify-source 10.53.0.1;
17	transfer-source 10.53.0.1;
18	port @PORT@;
19	pid-file "named.pid";
20	listen-on { 10.53.0.1; };
21	listen-on-v6 { none; };
22	recursion no;
23	dnssec-validation no;
24	notify no;
25};
26
27view "in" {
28	zone "example." {
29		type primary;
30		file "example-in.db";
31	};
32
33	zone "broken1." {
34		type primary;
35		file "broken1.db";
36	};
37
38	zone "broken2." {
39		type primary;
40		file "broken2.db";
41	};
42
43	zone "broken3." {
44		type primary;
45		file "broken3.db";
46	};
47
48	zone "broken4." {
49		type primary;
50		file "broken4.db";
51	};
52
53	zone "broken5." {
54		type primary;
55		file "broken5.db";
56	};
57};
58
59view "class10" class10 {
60	zone "." class10 {
61		type hint;
62		file "class10.hints";
63	};
64
65	zone "example." class10 {
66		type primary;
67		file "example-class10.db";
68	};
69};
70