nixos/wireguard: fix mtu after switching netns.

mtu is set after switching netns and thus the new netns should be used.
This commit is contained in:
SEIAROTg 2023-03-04 17:51:35 +00:00
parent 710635f625
commit 5a4dc2128e
No known key found for this signature in database
GPG Key ID: D021F73D23FAE4F6
2 changed files with 2 additions and 1 deletions

View File

@ -461,7 +461,7 @@ let
${ipPreMove} link add dev "${name}" type wireguard
${optionalString (values.interfaceNamespace != null && values.interfaceNamespace != values.socketNamespace) ''${ipPreMove} link set "${name}" netns "${ns}"''}
${optionalString (values.mtu != null) ''${ipPreMove} link set "${name}" mtu ${toString values.mtu}''}
${optionalString (values.mtu != null) ''${ipPostMove} link set "${name}" mtu ${toString values.mtu}''}
${concatMapStringsSep "\n" (ip:
''${ipPostMove} address add "${ip}" dev "${name}"''

View File

@ -39,6 +39,7 @@ import ../make-test-python.nix ({ pkgs, lib, kernelPackages ? null, ... } : {
preSetup = ''
ip netns add ${interfaceNamespace}
'';
mtu = 1280;
inherit interfaceNamespace;
};
};