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