diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/yggdrasil-wg/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/yggdrasil-wg/default.nix b/modules/yggdrasil-wg/default.nix index 16f8d3a9..cab1276a 100644 --- a/modules/yggdrasil-wg/default.nix +++ b/modules/yggdrasil-wg/default.nix | |||
@@ -208,19 +208,22 @@ in { | |||
208 | routes = [ | 208 | routes = [ |
209 | { routeConfig = { | 209 | { routeConfig = { |
210 | Destination = "${batSubnet}::/${toString batSubnetLength}"; | 210 | Destination = "${batSubnet}::/${toString batSubnetLength}"; |
211 | GatewayOnLink = true; | ||
211 | }; | 212 | }; |
212 | } | 213 | } |
213 | { routeConfig = { | 214 | { routeConfig = { |
214 | Destination = "${batSubnet}::/${toString batSubnetLength}"; | 215 | Destination = "${batSubnet}::/${toString batSubnetLength}"; |
216 | GatewayOnLink = true; | ||
215 | Table = "yggdrasil"; | 217 | Table = "yggdrasil"; |
216 | }; | 218 | }; |
217 | } | 219 | } |
218 | { routeConfig = { | 220 | { routeConfig = { |
219 | Destination = batHostIPs.${hostName}; | 221 | Destination = batHostIPs.${hostName}; |
222 | GatewayOnLink = true; | ||
220 | Table = "yggdrasil"; | 223 | Table = "yggdrasil"; |
221 | }; | 224 | }; |
222 | } | 225 | } |
223 | ] ++ (concatMap (router: map (rAddr: { routeConfig = { Destination = "::/0"; Gateway = stripSubnet rAddr; Table = "yggdrasil"; }; }) batHostIPs.${router}) routers); | 226 | ] ++ (concatMap (router: map (rAddr: { routeConfig = { Destination = "::/0"; Gateway = stripSubnet rAddr; GatewayOnLink = true; Table = "yggdrasil"; }; }) batHostIPs.${router}) routers); |
224 | routingPolicyRules = map (addr: { routingPolicyRuleConfig = { Table = "yggdrasil"; From = stripSubnet addr; Priority = 1; }; }) batHostIPs.${hostName}; | 227 | routingPolicyRules = map (addr: { routingPolicyRuleConfig = { Table = "yggdrasil"; From = stripSubnet addr; Priority = 1; }; }) batHostIPs.${hostName}; |
225 | linkConfig = { | 228 | linkConfig = { |
226 | MACAddress = "${batHostMACs.${hostName}}"; | 229 | MACAddress = "${batHostMACs.${hostName}}"; |