/* * Copyright (C) Internet Systems Consortium, Inc. ("ISC") * * SPDX-License-Identifier: MPL-2.0 * * 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 https://mozilla.org/MPL/2.0/. * * See the COPYRIGHT file distributed with this work for additional * information regarding copyright ownership. */ 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; dnssec-validation no; notify no; minimal-responses no; version none; // make statistics independent of the version number }; statistics-channels { inet 10.53.0.2 port @EXTRAPORT1@ allow { localhost; }; }; key rndc_key { secret "1234abcd8765"; algorithm @DEFAULT_HMAC@; }; controls { inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; }; dnssec-policy "manykeys" { keys { ksk lifetime unlimited algorithm 8; zsk lifetime unlimited algorithm 8; ksk lifetime unlimited algorithm 13; zsk lifetime unlimited algorithm 13; ksk lifetime unlimited algorithm 14; zsk lifetime unlimited algorithm 14; }; }; zone "example" { type primary; file "example.db"; allow-transfer { any; }; }; zone "dnssec" { type primary; file "dnssec.db.signed"; auto-dnssec maintain; allow-update { any; }; zone-statistics full; dnssec-dnskey-kskonly yes; update-check-ksk yes; }; zone "manykeys" { type primary; file "manykeys.db.signed"; allow-update { any; }; zone-statistics full; dnssec-policy "manykeys"; };