From b714d9a6e30a2406de8a20668da3f6481247f6af Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 11 Apr 2021 19:12:27 +0900 Subject: [PATCH] network: dhcp4: also set route MTU to prefix route and DNS routes --- src/network/networkd-dhcp4.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/network/networkd-dhcp4.c b/src/network/networkd-dhcp4.c index 9856f397c2..0c856720e9 100644 --- a/src/network/networkd-dhcp4.c +++ b/src/network/networkd-dhcp4.c @@ -215,6 +215,7 @@ static int link_set_dhcp_prefix_route(Link *link) { route->scope = RT_SCOPE_LINK; route->protocol = RTPROT_DHCP; route->table = link_get_dhcp_route_table(link); + route->mtu = link->network->dhcp_route_mtu; return dhcp_route_configure(route, link); } @@ -445,6 +446,7 @@ static int link_set_dns_routes(Link *link) { route->protocol = RTPROT_DHCP; route->priority = link->network->dhcp_route_metric; route->table = link_get_dhcp_route_table(link); + route->mtu = link->network->dhcp_route_mtu; for (int i = 0; i < n; i ++) { route->dst.in = dns[i];