public inbox for ddns@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] Add support for DuckDNS
@ 2016-01-15  1:05 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2016-01-15  1:05 UTC (permalink / raw)
  To: ddns

[-- Attachment #1: Type: text/plain, Size: 1118 bytes --]

Fixes #11015

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 README                |  1 +
 src/ddns/providers.py | 12 ++++++++++++
 2 files changed, 13 insertions(+)

diff --git a/README b/README
index 9e924a18c6fd..d8027a441f8a 100644
--- a/README
+++ b/README
@@ -58,6 +58,7 @@ SUPPORTED PROVIDERS:
 	domains.google.com
 	domopoli.de
 	dtdns.com
+	duckdns.org
 	dyndns.org
 	dyns.cx|net
 	dynu.com
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 3845193bcea0..cba77849c465 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -816,6 +816,18 @@ class DDNSProviderDtDNS(DDNSProvider):
 		raise DDNSUpdateError
 
 
+class DDNSProviderDuckDNS(DDNSProtocolDynDNS2, DDNSProvider):
+	handle    = "duckdns.org"
+	name      = "Duck DNS"
+	website   = "http://www.duckdns.org/"
+	protocols = ("ipv4",)
+
+	# Information about the format of the request is to be found
+	# https://www.duckdns.org/install.jsp
+
+	url = "https://www.duckdns.org/nic/update"
+
+
 class DDNSProviderDynDNS(DDNSProtocolDynDNS2, DDNSProvider):
 	handle    = "dyndns.org"
 	name      = "Dyn"
-- 
2.4.3


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-01-15  1:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-15  1:05 [PATCH] Add support for DuckDNS Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox