From dc8846f0f143687310a9870308a327aef35ed7d8 Mon Sep 17 00:00:00 2001 From: randomshell Date: Wed, 1 Jul 2020 11:27:13 +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 40c08ce..34ab651 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -38,7 +38,7 @@ function addClient() { # 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]