1
1
mirror of https://github.com/angristan/wireguard-install.git synced 2024-06-06 05:20:49 +00:00

Suggest the host bit of IPv4 when asking for the host bit of IPv6

The host bit would surely be the same for both IPv4 and IPv6.
This commit is contained in:
randomshell 2020-08-23 09:22:11 +00:00
parent 9a68ffa88b
commit 9d600fce15

View File

@ -285,7 +285,7 @@ function newClient() {
until [[ ${IPV6_EXISTS} == '0' ]]; do
until [[ ${CLIENT_DOT_IPV6} =~ ^[a-f0-9]{1,4}$ ]]; do
read -rp "Client's WireGuard IPv6: ${SERVER_WG_IPV6::-1}" -e -i "${CLIENT_DOT_IPV6}" CLIENT_DOT_IPV6
read -rp "Client's WireGuard IPv6: ${SERVER_WG_IPV6::-1}" -e -i "${CLIENT_DOT_IPV4}" CLIENT_DOT_IPV6
done
CLIENT_WG_IPV6="${SERVER_WG_IPV6::-1}${CLIENT_DOT_IPV6}"
IPV6_EXISTS=$(grep -c "${CLIENT_WG_IPV6}" "/etc/wireguard/${SERVER_WG_NIC}.conf")