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
14key "update.example." {
15	algorithm "hmac-md5";
16	secret "c3Ryb25nIGVub3VnaCBmb3IgYSBtYW4gYnV0IG1hZGUgZm9yIGEgd29tYW4K";
17};
18
19options {
20	query-source address 10.53.0.1;
21	notify-source 10.53.0.1;
22	transfer-source 10.53.0.1;
23	port @PORT@;
24	pid-file "named.pid";
25	listen-on { 10.53.0.1; };
26	listen-on-v6 { none; };
27	recursion yes;
28	dnssec-validation no;
29	notify yes;
30};
31
32zone "example" {
33	type primary;
34	file "example.db";
35	allow-update { key update.example.; 10.53.0.3; };
36};
37
38zone "example2" {
39	type primary;
40	file "example2.db";
41	allow-update { key sig0.example2.; };
42};
43