From 0d65a008444b1dd5037f4d0e5da3f14930ea15dd Mon Sep 17 00:00:00 2001 From: randomshell Date: Sat, 4 Jul 2020 22:30:05 +0000 Subject: [PATCH] Fix client subnet mask The server configuration has `$CLIENT_WG_IPV4/32,$CLIENT_WG_IPV6/128` and it is inconsistent with the client configuration `$CLIENT_WG_IPV4/24,$CLIENT_WG_IPV6/64`. We only want 1 IP for the peer, so the fix is changing clients subnets to /32 and /128. --- wireguard-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 4102ae8..5067f4f 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -240,7 +240,7 @@ function newClient() { # Create client file and add the server as a peer echo "[Interface] PrivateKey = ${CLIENT_PRIV_KEY} -Address = ${CLIENT_WG_IPV4}/24,${CLIENT_WG_IPV6}/64 +Address = ${CLIENT_WG_IPV4}/32,${CLIENT_WG_IPV6}/128 DNS = ${CLIENT_DNS_1},${CLIENT_DNS_2} [Peer]