feat(wireguard): expand allowedIPs to include home network subnets

Add 192.168.1.0/24, 10.0.0.0/24, and 10.0.1.0/26 to route traffic
for the full home LAN through the WireGuard tunnel.
This commit is contained in:
2026-04-05 14:09:16 -04:00
parent 8eee1ab82f
commit 64b450bbe7
+1 -1
View File
@@ -182,7 +182,7 @@
peers = [{ peers = [{
publicKey = "VEpzr/CeGdS6Wsy0NDDfmlB/bCYxS55A155HWGCIIzc="; publicKey = "VEpzr/CeGdS6Wsy0NDDfmlB/bCYxS55A155HWGCIIzc=";
endpoint = "vpn.leeworks.dev:51820"; endpoint = "vpn.leeworks.dev:51820";
allowedIPs = [ "10.0.1.64/28" ]; allowedIPs = [ "192.168.1.0/24" "10.0.0.0/24" "10.0.1.0/26" ];
persistentKeepalive = 25; persistentKeepalive = 25;
}]; }];
}; };