xref: /netbsd-src/external/mpl/bind/dist/bin/tests/system/reclimit/ns1/named.conf.in (revision 7bdf38e5b7a28439665f2fdeff81e36913eef7dd)
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	directory ".";
16	query-source address 10.53.0.1;
17	notify-source 10.53.0.1;
18	transfer-source 10.53.0.1;
19	port @PORT@;
20	pid-file "named.pid";
21	listen-on { 10.53.0.1; };
22	listen-on-v6 { none; };
23	recursion no;
24	dnssec-validation no;
25	max-records-per-type 0;
26	max-types-per-name 0;
27};
28
29zone "." { type primary; file "root.db"; };
30
31zone "big." {
32	type primary;
33	file "big.db";
34};
35
36zone "signed." {
37	type primary;
38	file "signed.db.signed";
39};
40