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;
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";
# };
# }
];
};
};