network: set scope and protocol for default route

This commit is contained in:
Yu Watanabe 2019-08-29 20:24:27 +09:00
parent 750f919112
commit c697db75de
1 changed files with 3 additions and 0 deletions

View File

@ -877,6 +877,9 @@ int network_add_default_route_on_device(Network *network) {
return r;
n->family = AF_INET;
n->scope = RT_SCOPE_LINK;
n->scope_set = true;
n->protocol = RTPROT_STATIC;
TAKE_PTR(n);
return 0;