From 8973df5c42a292d36e3828c35104c9cd03711f4a Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 13 Aug 2020 18:55:06 +0900 Subject: [PATCH] network: set default priority for IPv6 routes See inet6_rtm_newroute() in kernel's net/ipv6/route.c. --- src/network/networkd-route.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index 659fecbf2e..1b725c1a2d 100644 --- a/src/network/networkd-route.c +++ b/src/network/networkd-route.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ #include +#include #include "alloc-util.h" #include "netlink-util.h" @@ -2200,6 +2201,9 @@ static int route_section_verify(Route *route, Network *network) { route->scope = RT_SCOPE_LINK; } + if (route->family == AF_INET6 && route->priority == 0) + route->priority = IP6_RT_PRIO_USER; + if (ordered_hashmap_isempty(network->addresses_by_section) && in_addr_is_null(route->family, &route->gw) == 0 && route->gateway_onlink < 0) {