From 699c7acf93c9961fc45d0255aeebca3203d202f2 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Mon, 26 Feb 2024 19:25:43 +0100 Subject: [PATCH] bundles/radvd: increase intervals again --- bundles/radvd/files/radvd.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bundles/radvd/files/radvd.conf b/bundles/radvd/files/radvd.conf index ee7f4b6..c66c08f 100644 --- a/bundles/radvd/files/radvd.conf +++ b/bundles/radvd/files/radvd.conf @@ -2,8 +2,8 @@ interface ${interface} { AdvSendAdvert on; - MinRtrAdvInterval 10; - MaxRtrAdvInterval 30; + MinRtrAdvInterval 60; + MaxRtrAdvInterval 300; MinDelayBetweenRAs 10; prefix ${config.get('prefix', '::/64')} { @@ -14,7 +14,7 @@ interface ${interface} % if config.get('rdnss'): RDNSS ${' '.join(sorted(config['rdnss']))} { - AdvRDNSSLifetime 45; + AdvRDNSSLifetime 900; }; % endif };