3853N/A/*
3853N/A * Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
3853N/A *
3853N/A * This Source Code Form is subject to the terms of the Mozilla Public
3853N/A * License, v. 2.0. If a copy of the MPL was not distributed with this
3853N/A * file, You can obtain one at http://mozilla.org/MPL/2.0/.
3853N/A */
3853N/A
3853N/A// NS4
3853N/A
3853N/Acontrols { /* empty */ };
3853N/A
3853N/Aoptions {
3853N/A query-source address 10.53.0.4;
3853N/A notify-source 10.53.0.4;
3853N/A transfer-source 10.53.0.4;
3853N/A port 5300;
3853N/A pid-file "named.pid";
3853N/A listen-on { 10.53.0.4; };
3853N/A listen-on-v6 { none; };
3853N/A};
3853N/A
3853N/Akey rndc_key {
3853N/A secret "1234abcd8765";
3853N/A algorithm hmac-sha256;
3853N/A};
3853N/A
3853N/Acontrols {
3853N/A inet 10.53.0.4 port 9953 allow { any; } keys { rndc_key; };
3853N/A};
3853N/A
3853N/Akey auth {
3853N/A secret "1234abcd8765";
3853N/A algorithm hmac-sha256;
3853N/A};
3853N/A
3853N/Ainclude "trusted.conf";
3853N/A
3853N/Aview rec {
3853N/A match-recursive-only yes;
3853N/A recursion yes;
3853N/A acache-enable yes;
3853N/A dnssec-validation yes;
3853N/A dnssec-accept-expired yes;
3853N/A
3853N/A zone "." {
3853N/A type hint;
3853N/A file "../../common/root.hint";
3853N/A };
3853N/A
3853N/A zone secure.example {
3853N/A type static-stub;
3853N/A server-addresses { 10.53.0.4; };
3853N/A };
3853N/A
3853N/A zone insecure.secure.example {
3853N/A type static-stub;
3853N/A server-addresses { 10.53.0.4; };
3853N/A };
3853N/A};
3853N/A
3853N/Aview auth {
3853N/A recursion no;
3853N/A allow-recursion { none; };
3853N/A
3853N/A zone secure.example {
3853N/A type slave;
3853N/A masters { 10.53.0.3; };
3853N/A };
3853N/A
3853N/A zone insecure.secure.example {
3853N/A type slave;
3853N/A masters { 10.53.0.2; };
3853N/A };
3853N/A};
3853N/A