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 // NS4 15 16 include "../kasp.conf"; 17 18 options { 19 query-source address 10.53.0.4; 20 notify-source 10.53.0.4; 21 transfer-source 10.53.0.4; 22 port @PORT@; 23 pid-file "named.pid"; 24 listen-on { 10.53.0.4; }; 25 listen-on-v6 { none; }; 26 allow-transfer { any; }; 27 recursion no; 28 key-directory "."; 29 dnssec-validation no; 30 }; 31 32 key rndc_key { 33 secret "1234abcd8765"; 34 algorithm @DEFAULT_HMAC@; 35 }; 36 37 controls { 38 inet 10.53.0.4 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; 39 }; 40 41 zone "model2.multisigner." { 42 type primary; 43 allow-update { any; }; 44 file "model2.multisigner.db"; 45 dnssec-policy model2; 46 inline-signing yes; 47 }; 48 49 zone "model2.secondary." { 50 type secondary; 51 primaries { 10.53.0.5; }; 52 file "model2.secondary.db"; 53 dnssec-policy model2; 54 inline-signing yes; 55 }; 56