nixos/tests/systemd-networkd-vrf: fix build

For this round of ZHF: #230712
Failing Hydra build: https://hydra.nixos.org/build/219234565

Not sure why this a problem now and not in the past, but routes to
the corresponding `/24`-subnet are only configured if addresses are
specified with the correct CIDR.
This commit is contained in:
Maximilian Bosch 2023-05-11 11:04:56 +02:00
parent ec715ab9a1
commit 8ccfd7a659
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -54,7 +54,7 @@ in {
linkConfig.RequiredForOnline = "no"; linkConfig.RequiredForOnline = "no";
networkConfig = { networkConfig = {
VRF = "vrf1"; VRF = "vrf1";
Address = "192.168.1.1"; Address = "192.168.1.1/24";
IPForward = "yes"; IPForward = "yes";
}; };
}; };
@ -63,7 +63,7 @@ in {
linkConfig.RequiredForOnline = "no"; linkConfig.RequiredForOnline = "no";
networkConfig = { networkConfig = {
VRF = "vrf2"; VRF = "vrf2";
Address = "192.168.2.1"; Address = "192.168.2.1/24";
IPForward = "yes"; IPForward = "yes";
}; };
}; };
@ -87,7 +87,7 @@ in {
matchConfig.Name = "eth1"; matchConfig.Name = "eth1";
linkConfig.RequiredForOnline = "no"; linkConfig.RequiredForOnline = "no";
networkConfig = { networkConfig = {
Address = "192.168.1.2"; Address = "192.168.1.2/24";
IPForward = "yes"; IPForward = "yes";
}; };
}; };
@ -108,7 +108,7 @@ in {
matchConfig.Name = "eth2"; matchConfig.Name = "eth2";
linkConfig.RequiredForOnline = "no"; linkConfig.RequiredForOnline = "no";
networkConfig = { networkConfig = {
Address = "192.168.2.3"; Address = "192.168.2.3/24";
IPForward = "yes"; IPForward = "yes";
}; };
}; };
@ -129,7 +129,7 @@ in {
matchConfig.Name = "eth2"; matchConfig.Name = "eth2";
linkConfig.RequiredForOnline = "no"; linkConfig.RequiredForOnline = "no";
networkConfig = { networkConfig = {
Address = "192.168.2.4"; Address = "192.168.2.4/24";
IPForward = "yes"; IPForward = "yes";
}; };
}; };