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 include "../../_common/rndc.key"; 15 16 controls { 17 inet 10.53.0.3 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; 18 }; 19 20 options { 21 query-source address 10.53.0.3; 22 notify-source 10.53.0.3; 23 transfer-source 10.53.0.3; 24 port @PORT@; 25 allow-new-zones yes; 26 pid-file "named.pid"; 27 provide-ixfr no; 28 listen-on { 10.53.0.3; }; 29 listen-on-v6 { fd92:7065:b8e:ffff::3; }; 30 allow-transfer { any; }; 31 notify no; 32 notify-delay 0; 33 recursion no; 34 dnssec-validation no; 35 }; 36 37 zone "catalog2.example" { 38 type primary; 39 file "catalog2.example.db"; 40 allow-transfer { any; }; 41 allow-update { any; }; 42 also-notify { 10.53.0.2; }; 43 notify explicit; 44 }; 45 46 zone "dom5.example" { 47 type primary; 48 file "dom5.example.db"; 49 allow-transfer { any; }; 50 allow-update { any; }; 51 notify explicit; 52 }; 53 54 zone "dom6.example" { 55 type primary; 56 file "dom6.example.db"; 57 allow-transfer { any; }; 58 allow-update { any; }; 59 notify explicit; 60 }; 61