mirror of
https://github.com/Nyr/openvpn-install.git
synced 2024-11-27 15:36:07 +03:00
Improve NAT detection
Cleaner and better: - Not relying in an external service - Avoids a false positive when the server has multiple public IPv4 addresses and the user selects one which is not the default gateway
This commit is contained in:
parent
ff254aeb1e
commit
83234ddae4
@ -175,13 +175,11 @@ else
|
|||||||
# Autodetect IP address and pre-fill for the user
|
# Autodetect IP address and pre-fill for the user
|
||||||
IP=$(ip addr | grep 'inet' | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | head -1)
|
IP=$(ip addr | grep 'inet' | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | head -1)
|
||||||
read -p "IP address: " -e -i $IP IP
|
read -p "IP address: " -e -i $IP IP
|
||||||
# Try to detect a NATed connection and ask the user about it
|
# If $IP is a private IP address, the server must be behind NAT
|
||||||
EXTERNALIP=$(wget -4qO- "http://whatismyip.akamai.com/" 2>/dev/null || curl -4s "http://whatismyip.akamai.com/")
|
if echo "$IP" | grep -qE '^(10\.|172\.1[6789]\.|172\.2[0-9]\.|172\.3[01]\.|192\.168)'; then
|
||||||
if [[ "$IP" != "$EXTERNALIP" ]]; then
|
|
||||||
echo
|
echo
|
||||||
echo "If your server is behind NAT, please provide the public IP address or hostname."
|
echo "This server is behind NAT. What is the public IPv4 address or hostname?"
|
||||||
echo "If that's not the case, just ignore this and leave the next field blank."
|
read -p "Public IP address / hostname: " -e PUBLICIP
|
||||||
read -p "Public IP address / Hostname: " -e PUBLICIP
|
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
echo "Which protocol do you want for OpenVPN connections?"
|
echo "Which protocol do you want for OpenVPN connections?"
|
||||||
|
Loading…
Reference in New Issue
Block a user