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
14// NS2
15
16options {
17	pid-file "named.pid";
18	listen-on port @PORT@ { 10.53.0.2; };
19	listen-on-v6 { none; };
20	port @PORT@;
21	recursion no;
22	notify no;
23	servfail-ttl 0;
24	dnssec-validation no;
25};
26
27zone "example" {
28	type primary;
29	file "example.db";
30};
31
32zone "transfer1" {
33	type secondary;
34	primaries { 10.53.0.1; };
35	file "transfer.db.raw";
36};
37
38zone "transfer2" {
39	type secondary;
40	primaries { 10.53.0.1; };
41	masterfile-format text;
42	file "transfer.db.txt";
43};
44
45zone "transfer3" {
46	type secondary;
47	primaries { 10.53.0.1; };
48	file "formerly-text.db";
49};
50
51zone "transfer4" {
52	type secondary;
53	primaries { 10.53.0.1; };
54	masterfile-format text;
55	masterfile-style full;
56	file "transfer.db.full";
57};
58
59zone "large" {
60	type secondary;
61	primaries { 10.53.0.1; };
62	masterfile-format raw;
63	file "large.bk";
64};
65