From ca52025b9500f5639784239359942c46c17eb153 Mon Sep 17 00:00:00 2001 From: randomshell Date: Wed, 1 Jul 2020 17:58:34 +0000 Subject: [PATCH] Use $SERVER_WG_IPV4 when suggesting the client IP --- wireguard-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 331960e..2276f18 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -14,10 +14,10 @@ function addClient() { # count peers and increment the suggested client IP peersCount=$(grep -c 'Peer' /etc/wireguard/"$SERVER_WG_NIC".conf) - CLIENT_WG_IPV4="10.66.66.$((peersCount+2))" + CLIENT_WG_IPV4="${SERVER_WG_IPV4: : -1}$((peersCount+2))" read -rp "Client's WireGuard IPv4 " -e -i "$CLIENT_WG_IPV4" CLIENT_WG_IPV4 - CLIENT_WG_IPV6="fd42:42:42::$((peersCount+2))" + CLIENT_WG_IPV6="${SERVER_WG_IPV6: : -1}$((peersCount+2))" read -rp "Client's WireGuard IPv6 " -e -i "$CLIENT_WG_IPV6" CLIENT_WG_IPV6 # Adguard DNS by default