From 77fa7897561ec01548d4a90b9b06923a39ab61c7 Mon Sep 17 00:00:00 2001 From: Felix Albrigtsen Date: Mon, 29 Jul 2024 15:22:47 +0200 Subject: [PATCH] Openstack: fix broken ntnu-internal route --- values.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/values.nix b/values.nix index d16694d..2e11f4f 100644 --- a/values.nix +++ b/values.nix @@ -89,7 +89,7 @@ in rec { # Only use this network for link-local networking, not global/default routes dhcpV4Config.UseRoutes = "no"; routes = [ - { routeConfig.Destination = "10.0.0.0/8"; } + { routeConfig = { Destination = "10.0.0.0/8"; Gateway = "_dhcp4"; }; } ]; linkConfig.RequiredForOnline = "no";