From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Stalhut To: ddns@lists.ipfire.org Subject: [PATCH] add new provider it's DNS (https://www.itsdns.de) Date: Sat, 25 May 2019 23:48:10 +0200 Message-ID: <80d9fc05-8163-88d5-e482-08b0a7f7c07e@stalhut.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6798016517046950516==" List-Id: --===============6798016517046950516== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit --- README | 1 + src/ddns/providers.py | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/README b/README index d170858..1c5ffd6 100644 --- a/README +++ b/README @@ -67,6 +67,7 @@ SUPPORTED PROVIDERS: enom.com entrydns.net freedns.afraid.org + itsdns.de joker.com loopia.se myonlineportal.net diff --git a/src/ddns/providers.py b/src/ddns/providers.py index ea723e5..a9a0b03 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1108,6 +1108,16 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider): # If we got here, some other update error happened. raise DDNSUpdateError +class DDNSProviderItsdns(DDNSProtocolDynDNS2, DDNSProvider): + handle = "itsdns.de" + name = "it's DNS" + website = "http://www.itsdns.de/" + protocols = ("ipv6", "ipv4") + + # Information about the format of the HTTP request is to be + # found here: https://www.itsdns.de/dynupdatehelp.htm + + url = "https://www.itsdns.de/update.php" class DDNSProviderJoker(DDNSProtocolDynDNS2, DDNSProvider): handle = "joker.com" -- 2.17.1 --===============6798016517046950516==--