Update systemd route configuration

This commit is contained in:
Erwin Boskma 2024-06-03 11:12:33 +02:00
parent 2d7e2e9150
commit 766712f7e7
Signed by: erwin
SSH key fingerprint: SHA256:/Wk1WZdLg+vQHs3in9qq7PsIp8SMzwGSk/RLZ5zPuZk
2 changed files with 14 additions and 26 deletions

View file

@ -64,18 +64,14 @@
routes = [ routes = [
{ {
routeConfig = {
Destination = "172.31.1.1/32"; Destination = "172.31.1.1/32";
Scope = "link"; Scope = "link";
Protocol = "static"; Protocol = "static";
};
} }
{ {
routeConfig = {
Destination = "fe80::1/128"; Destination = "fe80::1/128";
Scope = "link"; Scope = "link";
Protocol = "static"; Protocol = "static";
};
} }
]; ];
}; };

View file

@ -307,28 +307,20 @@
routes = [ routes = [
{ {
routeConfig = {
Destination = "192.168.4.0/23"; Destination = "192.168.4.0/23";
Scope = "link"; Scope = "link";
};
} }
{ {
routeConfig = {
Destination = "192.168.6.0/24"; Destination = "192.168.6.0/24";
Scope = "link"; Scope = "link";
};
} }
{ {
routeConfig = {
Destination = "192.168.7.0/24"; Destination = "192.168.7.0/24";
Scope = "link"; Scope = "link";
};
} }
{ {
routeConfig = {
Destination = "192.168.8.0/24"; Destination = "192.168.8.0/24";
Scope = "link"; Scope = "link";
};
} }
]; ];
}; };