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# common configuration
15include "named.conf.header";
16
17view "recursive" {
18    zone "." {
19	type hint;
20	file "root.hint";
21    };
22
23    # policy configuration to be tested
24    response-policy {
25	zone "invalidprefixlength";
26    };
27
28    # policy zones to be tested
29    zone "invalidprefixlength" { type primary; file "db.invalidprefixlength"; };
30};
31