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