From f6b5cd74d4bb9fe1edde541d1d319ed1c9ed9b95 Mon Sep 17 00:00:00 2001 From: digitalcircuits Date: Fri, 3 Apr 2020 12:48:22 -0400 Subject: [PATCH] The WhatsMyIP service by Akamai has not worked in many months. Switched to a working service (icanhazip.com) --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index d3c3f00..92ee4fd 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -227,7 +227,7 @@ else if echo "$ip" | grep -qE '^(10\.|172\.1[6789]\.|172\.2[0-9]\.|172\.3[01]\.|192\.168)'; then echo echo "This server is behind NAT. What is the public IPv4 address or hostname?" - get_public_ip=$(wget -4qO- "http://whatismyip.akamai.com/" || curl -4Ls "http://whatismyip.akamai.com/") + get_public_ip=$(wget -4qO- "https://icanhazip.com" || curl -4Ls "https://icanhazip.com") read -p "Public IPv4 address / hostname [$get_public_ip]: " public_ip [ -z "$public_ip" ] && public_ip="$get_public_ip" fi