Add an option to enable/disable inline-signing inside the
dnssec-policy clause. The existing inline-signing option that is
set in the zone clause takes priority, but if it is omitted, then the
value that is set in dnssec-policy is taken.
The built-in policies use inline-signing.
This means that if you want to use the default policy without
inline-signing you either have to set it explicitly in the zone
clause:
zone "example" {
...
dnssec-policy default;
inline-signing no;
};
Or create a new policy, only overriding the inline-signing option:
dnssec-policy "default-dynamic" {
inline-signing no;
};
zone "example" {
...
dnssec-policy default-dynamic;
};
This also means that if you are going insecure with a dynamic zone,
the built-in "insecure" policy needs to be accompanied with
"inline-signing no;".
76 lines
1.6 KiB
Plaintext
76 lines
1.6 KiB
Plaintext
/*
|
|
* 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 "dnssec" {
|
|
keys {
|
|
ksk lifetime unlimited algorithm @DEFAULT_ALGORITHM@;
|
|
zsk lifetime unlimited algorithm @DEFAULT_ALGORITHM@;
|
|
};
|
|
};
|
|
|
|
dnssec-policy "manykeys" {
|
|
inline-signing no;
|
|
keys {
|
|
ksk lifetime unlimited algorithm 8;
|
|
zsk lifetime unlimited algorithm 8;
|
|
};
|
|
};
|
|
|
|
zone "example" {
|
|
type primary;
|
|
file "example.db";
|
|
allow-transfer { any; };
|
|
};
|
|
|
|
zone "dnssec" {
|
|
type primary;
|
|
file "dnssec.db.signed";
|
|
allow-update { any; };
|
|
zone-statistics full;
|
|
dnssec-policy "dnssec";
|
|
};
|
|
|
|
zone "manykeys" {
|
|
type primary;
|
|
file "manykeys.db.signed";
|
|
allow-update { any; };
|
|
zone-statistics full;
|
|
dnssec-policy "manykeys";
|
|
};
|