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.3;
14	notify-source 10.53.0.3;
15	transfer-source 10.53.0.3;
16	port @PORT@;
17	pid-file "named.pid";
18	listen-on { 10.53.0.3; };
19	listen-on-v6 { none; };
20	forwarders { 10.53.0.2; };
21	forward first;
22};
23
24zone "." {
25	type hint;
26	file "root.db";
27};
28
29zone "example1." {
30	type forward;
31	forward first;
32	forwarders { 10.53.0.2; };
33};
34
35zone "example2." {
36	type forward;
37	forward first;
38	forwarders { };
39};
40
41zone "example3." {
42	type forward;
43	forward only;
44	forwarders { };
45};
46
47zone "example7." {
48	type forward;
49	forward first;
50	forwarders { 10.53.0.6; };
51};
52