Let's see if all this routing for queen is unneeded for the wan, and if it works that way

This commit is contained in:
Lillian Violet 2024-03-03 13:30:26 +01:00
parent 9ce95d17f4
commit 114d750ec8

View file

@ -28,37 +28,37 @@ in {
address = cfg.ipAddresses; address = cfg.ipAddresses;
routes = [ routes = [
{routeConfig.Gateway = "fe80::1";} {routeConfig.Gateway = "fe80::1";}
{routeConfig = {Destination = "62.171.160.1";};} # {routeConfig = {Destination = "62.171.160.1";};}
{ # {
routeConfig = { # routeConfig = {
Gateway = "62.171.160.1"; # Gateway = "62.171.160.1";
GatewayOnLink = true; # GatewayOnLink = true;
}; # };
} # }
{ # {
routeConfig = { # routeConfig = {
Destination = "172.16.0.0/12"; # Destination = "172.16.0.0/12";
Type = "unreachable"; # Type = "unreachable";
}; # };
} # }
{ # {
routeConfig = { # routeConfig = {
Destination = "192.168.0.0/16"; # Destination = "192.168.0.0/16";
Type = "unreachable"; # Type = "unreachable";
}; # };
} # }
{ # {
routeConfig = { # routeConfig = {
Destination = "10.0.0.0/8"; # Destination = "10.0.0.0/8";
Type = "unreachable"; # Type = "unreachable";
}; # };
} # }
{ # {
routeConfig = { # routeConfig = {
Destination = "fc00::/7"; # Destination = "fc00::/7";
Type = "unreachable"; # Type = "unreachable";
}; # };
} # }
]; ];
}; };
}; };