Skip to content
Snippets Groups Projects
Commit 66b17f38 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Merge branch 'rrsig_refresh1' into 'master'

dnssec: rrsig-refresh: warn if too low

See merge request !1402
parents 079aae6a bbcb937a
Branches
Tags
1 merge request!1402dnssec: rrsig-refresh: warn if too low
Pipeline #92105 passed with stages
in 11 minutes and 17 seconds
......@@ -137,6 +137,10 @@ int knot_dnssec_zone_sign(zone_update_t *update,
// update policy based on the zone content
update_policy_from_zone(ctx.policy, update->new_cont);
if (ctx.policy->rrsig_refresh_before < ctx.policy->zone_maximal_ttl + ctx.policy->propagation_delay) {
log_zone_warning(zone_name, "DNSSEC, rrsig-refresh too low to prevent expired RRSIGs in resolver caches");
}
// perform key rollover if needed
result = knot_dnssec_key_rollover(&ctx, roll_flags, reschedule);
if (result != KNOT_EOK) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment