core-01: fix ipv4 routing issue
This commit is contained in:
parent
3f2e795b0e
commit
deffb8e1fc
1 changed files with 8 additions and 1 deletions
|
@ -29,8 +29,15 @@ in
|
||||||
"10-ens20" = {
|
"10-ens20" = {
|
||||||
name = "ens20";
|
name = "ens20";
|
||||||
address = my.ipv4InternalFull;
|
address = my.ipv4InternalFull;
|
||||||
|
|
||||||
DHCP = "ipv4";
|
DHCP = "ipv4";
|
||||||
|
dhcpV4Config.RouteMetric = 2048;
|
||||||
|
routes = [
|
||||||
|
{
|
||||||
|
routeConfig = {
|
||||||
|
Destination = "10.0.0.0/8";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue