Future proof for ipv6 on Wireguard

This commit is contained in:
Bun 2025-04-16 21:42:18 -04:00
parent 981c065928
commit 08827b5d5d

View file

@ -30,8 +30,9 @@
matchConfig.Name = "wg0"; matchConfig.Name = "wg0";
address = [ "11.0.0.1/8" ]; address = [ "11.0.0.1/8" ];
networkConfig = { networkConfig = {
IPMasquerade = "ipv4"; IPMasquerade = "both";
IPv4Forwarding = true; IPv4Forwarding = true;
IPv6Forwarding = true;
}; };
}; };
}; };