With the introduction of 'checkds', the 'parent-registration-delay'
option becomes obsolete.
(cherry picked from commit a25f49f153)
128 lines
2.3 KiB
Plaintext
128 lines
2.3 KiB
Plaintext
/*
|
|
* 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.
|
|
*/
|
|
|
|
dnssec-policy "autosign" {
|
|
|
|
signatures-refresh P1W;
|
|
signatures-validity P2W;
|
|
signatures-validity-dnskey P2W;
|
|
|
|
dnskey-ttl 300;
|
|
|
|
keys {
|
|
ksk key-directory lifetime P2Y algorithm 13;
|
|
zsk key-directory lifetime P1Y algorithm 13;
|
|
};
|
|
};
|
|
|
|
dnssec-policy "enable-dnssec" {
|
|
|
|
signatures-refresh P1W;
|
|
signatures-validity P2W;
|
|
signatures-validity-dnskey P2W;
|
|
|
|
dnskey-ttl 300;
|
|
max-zone-ttl PT12H;
|
|
zone-propagation-delay PT5M;
|
|
retire-safety PT20M;
|
|
publish-safety PT5M;
|
|
|
|
parent-propagation-delay 1h;
|
|
parent-ds-ttl 2h;
|
|
|
|
keys {
|
|
csk lifetime unlimited algorithm 13;
|
|
};
|
|
};
|
|
|
|
dnssec-policy "zsk-prepub" {
|
|
|
|
signatures-refresh P1W;
|
|
signatures-validity P2W;
|
|
signatures-validity-dnskey P2W;
|
|
|
|
dnskey-ttl 3600;
|
|
publish-safety P1D;
|
|
retire-safety P2D;
|
|
|
|
keys {
|
|
ksk key-directory lifetime P2Y algorithm 13;
|
|
zsk key-directory lifetime P30D algorithm 13;
|
|
};
|
|
|
|
zone-propagation-delay PT1H;
|
|
max-zone-ttl 1d;
|
|
};
|
|
|
|
dnssec-policy "ksk-doubleksk" {
|
|
|
|
signatures-refresh P1W;
|
|
signatures-validity P2W;
|
|
signatures-validity-dnskey P2W;
|
|
|
|
dnskey-ttl 2h;
|
|
publish-safety P1D;
|
|
retire-safety P2D;
|
|
|
|
keys {
|
|
ksk key-directory lifetime P60D algorithm 13;
|
|
zsk key-directory lifetime P1Y algorithm 13;
|
|
};
|
|
|
|
zone-propagation-delay PT1H;
|
|
max-zone-ttl 1d;
|
|
|
|
parent-ds-ttl 3600;
|
|
parent-propagation-delay PT1H;
|
|
};
|
|
|
|
dnssec-policy "csk-roll" {
|
|
|
|
signatures-refresh P5D;
|
|
signatures-validity 30d;
|
|
signatures-validity-dnskey 30d;
|
|
|
|
dnskey-ttl 1h;
|
|
publish-safety PT1H;
|
|
retire-safety 2h;
|
|
|
|
keys {
|
|
csk key-directory lifetime P6M algorithm 13;
|
|
};
|
|
|
|
zone-propagation-delay 1h;
|
|
max-zone-ttl P1D;
|
|
|
|
parent-ds-ttl 1h;
|
|
parent-propagation-delay 1h;
|
|
};
|
|
|
|
dnssec-policy "csk-roll2" {
|
|
|
|
signatures-refresh 12h;
|
|
signatures-validity P1D;
|
|
signatures-validity-dnskey P1D;
|
|
|
|
dnskey-ttl 1h;
|
|
publish-safety PT1H;
|
|
retire-safety 1h;
|
|
|
|
keys {
|
|
csk key-directory lifetime P6M algorithm 13;
|
|
};
|
|
|
|
zone-propagation-delay PT1H;
|
|
max-zone-ttl 1d;
|
|
|
|
parent-ds-ttl PT1H;
|
|
parent-propagation-delay P1W;
|
|
};
|