From: Martin Krieger <makrie@posteo.de>
To: development@lists.ipfire.org
Subject: [PATCH v6 1/1] ddns: Add provider Feste-IP.Net
Date: Tue, 18 May 2021 18:49:35 +0000 [thread overview]
Message-ID: <54e378f2-ad73-9395-88ea-9436008fc6b7@posteo.de> (raw)
[-- Attachment #1: Type: text/plain, Size: 2420 bytes --]
From 37fb0237932fb12bdd635e9cb5e01b0bf9f03dda Mon Sep 17 00:00:00 2001
From: Martin Krieger <makrie(a)posteo.de>
Date: Tue, 18 May 2021 19:42:44 +0200
Subject: [PATCH v6 1/1] ddns: Add provider Feste-IP.Net
Comments:
Provider supports IPv4, IPv6 & DS (Dual-Stack)
Changelog:
18.05.2021
Improved failure handling.
IPv6 & DS still not checked, because my network connection is pure IPv4.
17.05.2021
5th attempt ([PATCH v5 1/1])
16.05.2021
4th attempt ([PATCH v4 1/1])
08.05.2021
3rd attempt ([PATCH v3 1/1])
06.05.2021
2nd attempt ([PATCH v2 1/1])
05.05.2021
1st attempt ([PATCH v1 1/1])
Signed-off-by: Martin Krieger <makrie(a)posteo.de>..
---
README | 1 +
src/ddns/providers.py | 31 +++++++++++++++++++++++++++++++
2 files changed, 32 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..b7e14482a0b1 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -1179,6 +1179,37 @@ class DDNSProviderEntryDNS(DDNSProvider):
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
+
+ myips = ("myip","myip2")
+
+ url = "https://members.feste-ip.net/nic/update/"
+
+ def update(self):
+ data = {
+ "hostname" : self.hostname
+ }
+
+ for proto in DDNSProvider.protocols:
+ idx = 0
+ tmpip = self.get_address(proto)
+ if tmpip:
+ data[self.myips[idx]] = tmpip
+ idx += 1
+
+ if self.myips[0] in data:
+ self.send_request(data)
+ return
+
+ raise DDNSUpdateError
+
+
class DDNSProviderFreeDNSAfraidOrg(DDNSProvider):
handle = "freedns.afraid.org"
name = "freedns.afraid.org"
--
2.31.0
[-- Attachment #2: OpenPGP_signature.sig --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next reply other threads:[~2021-05-18 18:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-18 18:49 Martin Krieger [this message]
2021-05-20 10:00 ` Michael Tremer
[not found] <B992A9E3-7653-4688-8C76-28B40857BD80@posteo.de>
2021-05-20 11:21 ` Michael Tremer
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=54e378f2-ad73-9395-88ea-9436008fc6b7@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