From b910dbb9ec20142d6b7c2b3ffefe68a4b422407b Mon Sep 17 00:00:00 2001 From: jtbr Date: Tue, 10 May 2016 22:50:58 +0000 Subject: [PATCH] clarify that the external address can be either an IP or a domain name --- openvpn-install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index a0b58ae..7b33f04 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -430,9 +430,10 @@ tls-auth tls-auth.key 0" >> /etc/openvpn/server.conf echo "" echo "Looks like your server is behind a NAT!" echo "" - echo "If your server is NATed (e.g. LowEndSpirit, Scaleway), I need to know the external IP" - echo "If that's not the case, just ignore this and leave the next field blank" - read -p "External IP: " -e USEREXTERNALIP + echo "If your server is NATed (e.g. LowEndSpirit, Scaleway, or behind a router)," + echo "then I need to know the address that can be used to access it from outside." + echo "If that's not the case, just ignore this and leave the next field blank" + read -p "External IP or domain name: " -e USEREXTERNALIP if [[ "$USEREXTERNALIP" != "" ]]; then IP=$USEREXTERNALIP fi