/* * Copyright (C) Internet Systems Consortium, Inc. ("ISC") * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * See the COPYRIGHT file distributed with this work for additional * information regarding copyright ownership. */ key rndc_key { secret "1234abcd8765"; algorithm hmac-sha256; }; controls { inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; }; options { query-source address 10.53.0.2; notify-source 10.53.0.2; transfer-source 10.53.0.2; port @PORT@; pid-file "named.pid"; listen-on { 10.53.0.2; }; listen-on-v6 { none; }; recursion no; }; zone "example" { type master; file "example.db.signed"; }; zone "sub.example" { type master; file "sub.example.db.signed"; }; zone "initially-unavailable" { type master; file "initially-unavailable.db.signed"; allow-transfer { 10.53.0.254; }; }; zone "verify-addzone" { type master; file "verify-addzone.db.original.signed"; }; zone "verify-axfr" { type master; file "verify-axfr.db.signed"; }; zone "verify-csk" { type master; file "verify-csk.db.signed"; }; zone "verify-ixfr" { type master; file "verify-ixfr.db.signed"; ixfr-from-differences yes; allow-transfer { 10.53.0.3; }; }; zone "verify-reconfig" { type master; file "verify-reconfig.db.signed"; }; zone "verify-unsigned" { type master; file "verify.db.in"; }; zone "verify-untrusted" { type master; file "verify-untrusted.db.signed"; };