From eb41ea72fb8bd52bf5a7380ab43fd715f2496b86 Mon Sep 17 00:00:00 2001 From: Michi Lehenauer Date: Fri, 13 May 2016 08:39:16 +0200 Subject: [PATCH] Use ipify as standart web service Since many users including myself had problems with http://checkip.dyndns.org/ i suggest moving to ipify as standart service Info: https://www.ipify.org/ Pro: -No limit in requests -Verry fast and responsive -Open souce -No Logging of visitors -Works with IPv4 and IPv6 Con: -? --- ddclient | 1 + 1 file changed, 1 insertion(+) diff --git a/ddclient b/ddclient index 8eda1c5..d80fa8d 100755 --- a/ddclient +++ b/ddclient @@ -66,6 +66,7 @@ sub T_POSTS {'postscript'}; ## strategies for obtaining an ip address. my %builtinweb = ( + 'ipify' => { 'url' => 'https://api.ipify.org', }, 'dyndns' => { 'url' => 'http://checkip.dyndns.org/', 'skip' => 'Current IP Address:', }, 'dnspark' => { 'url' => 'http://ipdetect.dnspark.com/', 'skip' => 'Current Address:', },