From: Martin Krieger <makrie@posteo.de>
To: development@lists.ipfire.org
Subject: [PATCH] ddns: Add provider Feste-IP.Net From: Martin Krieger <makrie@posteo.de>
Date: Sun, 16 May 2021 16:53:57 +0000 [thread overview]
Message-ID: <20210516165357.31862-1-makrie@posteo.de> (raw)
[-- Attachment #1: Type: text/plain, Size: 1878 bytes --]
Add support for provider Feste-IP.Net to ipfire ddns system.
Signed-off-by: Martin Krieger <makrie(a)posteo.de>
---
IPv6 support included based on API description but not tested. Test system is connected by VDSL and internet provider connection is pure IPv4 (No dualstack).
---
README | 1 +
src/ddns/providers.py | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/README b/README
index b6decb35c338..fa6ce5e598b8 100644
--- a/README
+++ b/README
@@ -68,6 +68,7 @@ SUPPORTED PROVIDERS:
easydns.com
enom.com
entrydns.net
+ feste-ip.net
freedns.afraid.org
inwx.com|de|at|ch|es
itsdns.de
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 56e6620c78ab..c8be31622c3a 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -1178,6 +1178,28 @@ class DDNSProviderEntryDNS(DDNSProvider):
# If we got here, some other update error happened.
raise DDNSUpdateError
+class DDNSProviderFesteIPNet(DDNSProtocolDynDNS2, DDNSProvider):
+ handle = "feste-ip.net"
+ name = "Feste-IP.Net"
+ website = "https://www.feste-ip.net/"
+
+ # Information about the format of the request is to be found
+ # https://forum.feste-ip.net/viewtopic.php?f=13&t=469
+
+ url = "https://members.feste-ip.net/nic/update/"
+
+ def update(self):
+ data = DDNSProtocolDynDNS2.prepare_request_data(self, "ipv4")
+
+ # This one supports IPv6
+ myipv6 = self.get_address("ipv6")
+
+ # Add update information if we have an IPv6 address.
+ if myipv6:
+ data["myip2"] = myipv6
+
+ self.send_request(data)
+
class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
handle = "freedns.afraid.org"
--
2.31.0
reply other threads:[~2021-05-16 16:53 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210516165357.31862-1-makrie@posteo.de \
--to=makrie@posteo.de \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox