xref: /netbsd-src/external/mpl/bind/dist/bin/tests/system/xfer/ns8/named.conf.in (revision cef8759bd76c1b621f8eab8faa6f208faabc2e15)
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 http://mozilla.org/MPL/2.0/.
7 *
8 * See the COPYRIGHT file distributed with this work for additional
9 * information regarding copyright ownership.
10 */
11
12include "../../common/rndc.key";
13
14controls {
15	inet 10.53.0.8 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
16};
17
18options {
19	query-source address 10.53.0.8;
20	notify-source 10.53.0.8;
21	transfer-source 10.53.0.8;
22	port @PORT@;
23	pid-file "named.pid";
24	listen-on { 10.53.0.8; };
25	listen-on-v6 { none; };
26	recursion no;
27	notify no;
28	transfer-message-size 1024;
29};
30
31key key1. {
32	algorithm hmac-md5;
33	secret "1234abcd8765";
34};
35
36acl tzkey {
37	key key1.;
38};
39
40zone "example." {
41	type master;
42	file "example.db";
43	allow-transfer { tzkey; };
44};
45