mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Use $SERVER_WG_IPV4 when suggesting the client IP
This commit is contained in:
parent
7c719b2bc2
commit
ca52025b95
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue