From 34c0b6a8463eed465a7bbc4f96dfa49777f10b86 Mon Sep 17 00:00:00 2001 From: ElXreno Date: Mon, 16 Nov 2020 23:59:00 +0300 Subject: [PATCH] Revert "Fix client subnet mask" This commit accidentally breaks IPv6 when several clients are connected at the same time, and it is more correct to use /24 and /64 subnets as it is used in WireGuard examples (for example, Basic Usage [1]). [1]: https://www.wireguard.com/papers/wireguard.pdf. This reverts commit 0d65a008444b1dd5037f4d0e5da3f14930ea15dd. Signed-off-by: ElXreno --- wireguard-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 9e09caa..cb8012c 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -286,7 +286,7 @@ function newClient() { # Create client file and add the server as a peer echo "[Interface] PrivateKey = ${CLIENT_PRIV_KEY} -Address = ${CLIENT_WG_IPV4}/32,${CLIENT_WG_IPV6}/128 +Address = ${CLIENT_WG_IPV4}/24,${CLIENT_WG_IPV6}/64 DNS = ${CLIENT_DNS_1},${CLIENT_DNS_2} [Peer]