Clarify in the ARM that TTL-style options can also now take ISO 8601 durations. Mention the built-in dnssec policies "default" and "none". Mention that "none" is the default. Add a file documenting the default dnssec-policy configuration options. Fix dnssec-policy syntax in ARM (dnssec-policy.grammar.xml).
27 lines
455 B
Plaintext
27 lines
455 B
Plaintext
dnssec-policy "default" {
|
|
|
|
// Keys
|
|
keys {
|
|
csk key-directory lifetime 0 algorithm 13;
|
|
};
|
|
|
|
// Key timings
|
|
dnskey-ttl 3600;
|
|
publish-safety 1h;
|
|
retire-safety 1h;
|
|
|
|
// Signature timings
|
|
signatures-refresh 5d;
|
|
signatures-validity 14d;
|
|
signatures-validity-dnskey 14d;
|
|
|
|
// Zone parameters
|
|
zone-max-ttl 86400;
|
|
zone-propagation-delay 300;
|
|
|
|
// Parent parameters
|
|
parent-ds-ttl 86400;
|
|
parent-registration-delay 24h;
|
|
parent-propagation-delay 1h;
|
|
};
|