From c0e3edc0c90479922583d98078b8fc43024e0946 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 21 Feb 2024 11:05:58 -0500 Subject: [PATCH] Update install.func The script now checks IPv6 internet connectivity by attempting to ping "google.com" instead of Cloudflare's DNS IPv6 server address. --- misc/install.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/install.func b/misc/install.func index f19e7f12..d6aaf6c4 100644 --- a/misc/install.func +++ b/misc/install.func @@ -130,7 +130,7 @@ network_check() { # Check if IPv6 is being used if ip -o -6 addr show | grep -q "scope global"; then - if ping6 -c 1 -W 1 2606:4700:4700::1111 &>/dev/null; then + if ping -6 google.com &>/dev/null; then msg_ok "IPv6 Internet Connected"; else msg_error "IPv6 Internet Not Connected";