Allow all IPs for wireguard interface without routing them
ci / test (push) Successful in 1m0s Details
ci / deploy (push) Failing after 2m18s Details

This commit is contained in:
Ciapa 2024-02-04 20:12:00 +01:00
parent cb2ac4c8da
commit bed176c46e
1 changed files with 4 additions and 2 deletions

View File

@ -31,12 +31,14 @@
wg0 = {
ips = [ "10.175.197.82/32" "fd7d:76ee:e68f:a993:f6b2:9dab:ddd3:a02/128" ];
privateKeyFile = "/run/secrets/services/wireguard/airvpn.private";
# allowedIPsAsRoutes = false;
peers = [
{
publicKey = "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=";
presharedKeyFile = "/run/secrets/services/wireguard/airvpn.psk";
allowedIPs = [ "10.128.0.1" ];
allowedIPs = [ "10.128.0.1/8" ];
endpoint = "134.19.179.213:1637";
persistentKeepalive = 25;
}