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
12key rndc_key {
13	secret "1234abcd8765";
14	algorithm hmac-sha256;
15};
16
17controls {
18	inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
19};
20
21options {
22	query-source address 10.53.0.2;
23	notify-source 10.53.0.2;
24	transfer-source 10.53.0.2;
25	port @PORT@;
26	pid-file "named.pid";
27	listen-on { 10.53.0.2; };
28	listen-on-v6 { none; };
29	recursion no;
30};
31
32zone "example" {
33	type master;
34	file "example.db.signed";
35};
36
37zone "sub.example" {
38	type master;
39	file "sub.example.db.signed";
40};
41
42zone "initially-unavailable" {
43	type master;
44	file "initially-unavailable.db.signed";
45	allow-transfer { 10.53.0.254; };
46};
47
48zone "verify-addzone" {
49	type master;
50	file "verify-addzone.db.original.signed";
51};
52
53zone "verify-axfr" {
54	type master;
55	file "verify-axfr.db.signed";
56};
57
58zone "verify-csk" {
59	type master;
60	file "verify-csk.db.signed";
61};
62
63zone "verify-ixfr" {
64	type master;
65	file "verify-ixfr.db.signed";
66	ixfr-from-differences yes;
67	allow-transfer { 10.53.0.3; };
68};
69
70zone "verify-reconfig" {
71	type master;
72	file "verify-reconfig.db.signed";
73};
74
75zone "verify-unsigned" {
76	type master;
77	file "verify.db.in";
78};
79
80zone "verify-untrusted" {
81	type master;
82	file "verify-untrusted.db.signed";
83};
84