From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: ddns@lists.ipfire.org Subject: Re: new nrovider: dynup.de Date: Mon, 30 Apr 2018 19:08:21 +0100 Message-ID: <1525111701.2479471.145.camel@ipfire.org> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1925347333641967278==" List-Id: --===============1925347333641967278== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello Christian, when I try to open the website of that provider, I only get a Forbidden page = and the documentation does not seem to exist either. Who is operating this service and are you sure that the service is operationa= l? Best, -Michael On Mon, 2018-04-30 at 17:33 +0200, St=C3=B6ckl wrote: >=20 >=20 > diff --git a/README b/README > index d8027a4..f45d128 100755 > --- a/README > +++ b/README > @@ -62,6 +62,7 @@ SUPPORTED PROVIDERS: > dyndns.org > dyns.cx|net > dynu.com > + dynup.de > easydns.com > enom.com > entrydns.net >=20 >=20 >=20 > diff --git a/src/ddns/providers.py b/src/ddns/providers.py > index 6b25cb6..75e6c4c 100755 > --- a/src/ddns/providers.py > +++ b/src/ddns/providers.py > @@ -868,6 +868,43 @@ class DDNSProviderDynU(DDNSProtocolDynDNS2,=20 > DDNSProvider): > self.send_request(data) >=20 >=20 > +class DDNSProviderDynUp(DDNSProvider): > + handle =3D "dynup.de" > + name =3D "DynUp.DE" > + website =3D "http://dynup.de/" > + protocols =3D ("ipv4",) > + > + # Information about the format of the HTTPS request is to be found > + # https://dyndnsfree.de/user/hilfe.php > + > + url =3D "https://dynup.de/dyn.php" > + can_remove_records =3D False > + > + def update_protocol(self, proto): > + data =3D { > + "username" : self.username, > + "password" : self.password, > + "hostname" : self.hostname, > + "print" : '1', > + } > + > + # Send update to the server. > + response =3D self.send_request(self.url, data=3Ddata) > + > + # Get the full response message. > + output =3D response.read() > + > + # Remove all leading and trailing whitespace. > + output =3D output.strip() > + > + # Handle success messages. > + if output.startswith("I:OK") : > + return > + > + # If we got here, some other update error happened. > + raise DDNSUpdateError > + > + > class DDNSProviderEasyDNS(DDNSProvider): > handle =3D "easydns.com" > name =3D "EasyDNS" >=20 >=20 >=20 >=20 > --=20 > Mit vielen Gr=C3=BC=C3=9Fen > aus Wei=C3=9Fensberg, der Nahtstelle zwischen Allg=C3=A4u & Bodensee >=20 > Christian >=20 > --=20 > Mit vielen Gr=C3=BC=C3=9Fen > aus Wei=C3=9Fensberg, der Nahtstelle zwischen Allg=C3=A4u & Bodensee >=20 > Christian St=C3=B6ckl >=20 --===============1925347333641967278==--