diff --git a/cloudflare-ddns.py b/cloudflare-ddns.py index 64dc6e9..d878d3f 100755 --- a/cloudflare-ddns.py +++ b/cloudflare-ddns.py @@ -80,7 +80,7 @@ def getIPs(): global shown_ipv4_warning_secondary if not shown_ipv4_warning_secondary: shown_ipv4_warning_secondary = True - print("🧩 IPv4 not detected via 1.0.0.1. Verify your ISP or DNS provider isn't blocking Cloudflare's IPs.") + print("🧩 IPv4 not detected via 1.0.0.1. Verify that your Standardgateway is set correctly. Verify your ISP or DNS provider isn't blocking Cloudflare's IPs.") if purgeUnknownRecords: deleteEntries("A") if ipv6_enabled: @@ -103,7 +103,7 @@ def getIPs(): global shown_ipv6_warning_secondary if not shown_ipv6_warning_secondary: shown_ipv6_warning_secondary = True - print("🧩 IPv6 not detected via 1.0.0.1. Verify your ISP or DNS provider isn't blocking Cloudflare's IPs.") + print("🧩 IPv6 not detected via 1.0.0.1. Verify that your Standardgateway is set correctly. Verify your ISP or DNS provider isn't blocking Cloudflare's IPs.") if purgeUnknownRecords: deleteEntries("AAAA") ips = {}