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.7 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; 16}; 17 18options { 19 query-source address 10.53.0.7; 20 notify-source 10.53.0.7; 21 transfer-source 10.53.0.7; 22 port @PORT@; 23 pid-file "named.pid"; 24 listen-on { 10.53.0.7; }; 25 listen-on-v6 { none; }; 26 recursion no; 27 notify yes; 28 ixfr-from-differences slave; 29 check-integrity no; 30}; 31 32zone "." { 33 type hint; 34 file "../../common/root.hint"; 35}; 36 37zone "master2" { 38 type master; 39 file "master2.db"; 40}; 41 42zone "slave" { 43 type slave; 44 masters { 10.53.0.1; }; 45 file "slave.bk"; 46}; 47 48zone "edns-expire" { 49 type slave; 50 masters { 10.53.0.6; }; 51 file "edns-expire.bk"; 52}; 53