From d3dd02206d2af9d5e3331dcbcd9f50404140cbb7 Mon Sep 17 00:00:00 2001 From: Johan Date: Mon, 17 Feb 2025 10:12:45 +0100 Subject: [PATCH] Update VPN IP range in Wireguard installation --- BashScripts/install-wireguard-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BashScripts/install-wireguard-server.sh b/BashScripts/install-wireguard-server.sh index 236e137..ddeacf0 100644 --- a/BashScripts/install-wireguard-server.sh +++ b/BashScripts/install-wireguard-server.sh @@ -5,7 +5,7 @@ if [[ $EUID -ne 0 ]]; then exec sudo /bin/bash "$0" "$@" fi read -e -p "Enter lan NIC: " -i $(ip route | grep default | sed -e 's/^.*dev.//' -e 's/.proto.*//') NIC_NAME -read -e -p "Enter VPN subnet: " -i "192.168.200" VPN_SUBNET +read -e -p "Enter VPN subnet: " -i "172.19.100" VPN_SUBNET read -e -p "Enter LAN subnet: " -i "192.168.0" LAN_SUBNET read -e -p "Enter VPN public hostname: " -i "home.myspace.nu" VPN_PUBLIC_HOST read -e -p "Enter VPN public portnumber: " -i "51820" VPN_PUBLIC_PORT