# HG changeset patch # User Franz Glasner # Date 1670429603 -3600 # Node ID 9d6b19f72ee577191de4631469ab53b296b5c96f # Parent 738fe7206eab2c387e568a0f2770e478d0ecbd9f Do not use the pre-defined anticongestion but a short random sleep diff -r 738fe7206eab -r 9d6b19f72ee5 etc/periodic/daily/800.local-ipv6-refresh --- a/etc/periodic/daily/800.local-ipv6-refresh Wed Dec 07 17:03:46 2022 +0100 +++ b/etc/periodic/daily/800.local-ipv6-refresh Wed Dec 07 17:13:23 2022 +0100 @@ -54,10 +54,13 @@ echo 1>&2 "$0: WARNING: \$ipv6_defaultrouter has an unexpected empty value" ;; *) - if type anticongestion >/dev/null 2>&1; then - anticongestion_sleeptime=60 - anticongestion - fi + #if type anticongestion >/dev/null 2>&1; then + # anticongestion_sleeptime=60 + # anticongestion + #fi + + # Wait up to 10 seconds to avoid router congestion + /bin/sleep $(/usr/bin/jot -r 1 0 10) /usr/sbin/traceroute6 ${daily_local_ipv6_refresh_flags} "${daily_local_ipv6_refresh_target}" rc=$? ;;