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 // NS8 15 16 include "../../_common/rndc.key"; 17 18 controls { 19 inet 10.53.0.8 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; 20 }; 21 22 options { 23 query-source address 10.53.0.8; 24 notify-source 10.53.0.8; 25 transfer-source 10.53.0.8; 26 port @PORT@; 27 pid-file "named.pid"; 28 session-keyfile "session.key"; 29 listen-on { 10.53.0.8; }; 30 listen-on-v6 { none; }; 31 recursion no; 32 notify yes; 33 try-tcp-refresh no; 34 notify-delay 0; 35 allow-new-zones yes; 36 dnssec-validation no; 37 }; 38 39 dnssec-policy "inline" { 40 keys { 41 ksk key-directory lifetime unlimited algorithm @DEFAULT_ALGORITHM@; 42 zsk key-directory lifetime unlimited algorithm @DEFAULT_ALGORITHM@; 43 }; 44 }; 45 46 zone "example01.com" { 47 type primary; 48 inline-signing yes; 49 dnssec-policy inline; 50 file "example01.com.db"; 51 }; 52 53 zone "example02.com" { 54 type primary; 55 inline-signing yes; 56 dnssec-policy inline; 57 file "example02.com.db"; 58 }; 59 60 zone "example03.com" { 61 type primary; 62 inline-signing yes; 63 dnssec-policy inline; 64 file "example03.com.db"; 65 }; 66 67 zone "example04.com" { 68 type primary; 69 inline-signing yes; 70 dnssec-policy inline; 71 file "example04.com.db"; 72 }; 73 74 zone "example05.com" { 75 type primary; 76 inline-signing yes; 77 dnssec-policy inline; 78 file "example05.com.db"; 79 }; 80 81 zone "example06.com" { 82 type primary; 83 inline-signing yes; 84 dnssec-policy inline; 85 file "example06.com.db"; 86 }; 87 88 zone "example07.com" { 89 type primary; 90 inline-signing yes; 91 dnssec-policy inline; 92 file "example07.com.db"; 93 }; 94 95 zone "example08.com" { 96 type primary; 97 inline-signing yes; 98 dnssec-policy inline; 99 file "example08.com.db"; 100 }; 101 102 zone "example09.com" { 103 type primary; 104 inline-signing yes; 105 dnssec-policy inline; 106 file "example09.com.db"; 107 }; 108 109 zone "example10.com" { 110 type primary; 111 inline-signing yes; 112 dnssec-policy inline; 113 file "example10.com.db"; 114 }; 115 116 zone "example11.com" { 117 type primary; 118 inline-signing yes; 119 dnssec-policy inline; 120 file "example11.com.db"; 121 }; 122 123 zone "example12.com" { 124 type primary; 125 inline-signing yes; 126 dnssec-policy inline; 127 file "example12.com.db"; 128 }; 129 130 zone "example13.com" { 131 type primary; 132 inline-signing yes; 133 dnssec-policy inline; 134 file "example13.com.db"; 135 }; 136 137 zone "example14.com" { 138 type primary; 139 inline-signing yes; 140 dnssec-policy inline; 141 file "example14.com.db"; 142 }; 143 144 zone "example15.com" { 145 type primary; 146 inline-signing yes; 147 dnssec-policy inline; 148 file "example15.com.db"; 149 }; 150 151 zone "example16.com" { 152 type primary; 153 inline-signing yes; 154 dnssec-policy inline; 155 file "example16.com.db"; 156 }; 157 158 zone example { 159 type primary; 160 inline-signing yes; 161 dnssec-policy inline; 162 file "example.db"; 163 }; 164 165 zone "unsigned-serial-test" { 166 type primary; 167 inline-signing yes; 168 dnssec-policy inline; 169 file "unsigned-serial-test.db"; 170 }; 171