From: Yu Watanabe Date: Thu, 14 Oct 2021 21:00:22 +0000 (+0900) Subject: network: dhcp6: explicitly specify metric for unreachable route X-Git-Tag: v250-rc1~465^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10ab5ed5a859e0c7a8f43fd80611ee5efe6bd61d;p=thirdparty%2Fsystemd.git network: dhcp6: explicitly specify metric for unreachable route For static IPv6 routes without metric is specified, then we use 1024. But such an adjustment is not performed to dynamic routes. So, let's specify the metric explicitly. Otherwise, configured routes will be handled as foreign. --- diff --git a/src/network/networkd-dhcp6.c b/src/network/networkd-dhcp6.c index 0795ebdd467..2bbad4edbbc 100644 --- a/src/network/networkd-dhcp6.c +++ b/src/network/networkd-dhcp6.c @@ -777,6 +777,7 @@ static int dhcp6_request_unreachable_route(Link *link, const struct in6_addr *ad route->table = link_get_dhcp6_route_table(link); route->type = RTN_UNREACHABLE; route->protocol = RTPROT_DHCP; + route->priority = DHCP_ROUTE_METRIC; route->lifetime = usec_add(timestamp_usec, lifetime_sec * USEC_PER_SEC); if (route_get(link->manager, NULL, route, &existing) < 0)