From 114d750ec849d9dd9dfea917a2d3c24d36770e43 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 3 Mar 2024 13:30:26 +0100 Subject: [PATCH] Let's see if all this routing for queen is unneeded for the wan, and if it works that way --- modules/nixos/contabo/wan/default.nix | 62 +++++++++++++-------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/modules/nixos/contabo/wan/default.nix b/modules/nixos/contabo/wan/default.nix index 9da2971..e12ddeb 100644 --- a/modules/nixos/contabo/wan/default.nix +++ b/modules/nixos/contabo/wan/default.nix @@ -28,37 +28,37 @@ in { address = cfg.ipAddresses; routes = [ {routeConfig.Gateway = "fe80::1";} - {routeConfig = {Destination = "62.171.160.1";};} - { - routeConfig = { - Gateway = "62.171.160.1"; - GatewayOnLink = true; - }; - } - { - routeConfig = { - Destination = "172.16.0.0/12"; - Type = "unreachable"; - }; - } - { - routeConfig = { - Destination = "192.168.0.0/16"; - Type = "unreachable"; - }; - } - { - routeConfig = { - Destination = "10.0.0.0/8"; - Type = "unreachable"; - }; - } - { - routeConfig = { - Destination = "fc00::/7"; - Type = "unreachable"; - }; - } + # {routeConfig = {Destination = "62.171.160.1";};} + # { + # routeConfig = { + # Gateway = "62.171.160.1"; + # GatewayOnLink = true; + # }; + # } + # { + # routeConfig = { + # Destination = "172.16.0.0/12"; + # Type = "unreachable"; + # }; + # } + # { + # routeConfig = { + # Destination = "192.168.0.0/16"; + # Type = "unreachable"; + # }; + # } + # { + # routeConfig = { + # Destination = "10.0.0.0/8"; + # Type = "unreachable"; + # }; + # } + # { + # routeConfig = { + # Destination = "fc00::/7"; + # Type = "unreachable"; + # }; + # } ]; }; };