ddns-scripts: add hosting.de provider
Add hosting.de provider. To use dynamic DNS you have to create a DDNS host with a separate DDNS user. Note: As of 2023-01-17 hosting.de does not work with wget which will fail with `400: Bad Request` (it will work with `--auth-no-challenge`). You should use curl instead. I have reported that to the provider. Signed-off-by: Benjamin Drung <bdrung@bdrung.de>
This commit is contained in:
parent
8a5ff835dd
commit
8ff6537f42
3 changed files with 13 additions and 1 deletions
|
@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=ddns-scripts
|
PKG_NAME:=ddns-scripts
|
||||||
PKG_VERSION:=2.8.2
|
PKG_VERSION:=2.8.2
|
||||||
PKG_RELEASE:=33
|
PKG_RELEASE:=34
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"name": "hosting.de",
|
||||||
|
"ipv4": {
|
||||||
|
"url": "https://[USERNAME]:[PASSWORD]@ddns.hosting.de/nic/update?hostname=[DOMAIN]&myip=[IP]",
|
||||||
|
"answer": "good|nochg"
|
||||||
|
},
|
||||||
|
"ipv6": {
|
||||||
|
"url": "https://[USERNAME]:[PASSWORD]@ddns.hosting.de/nic/update?hostname=[DOMAIN]&myip=[IP]",
|
||||||
|
"answer": "good|nochg"
|
||||||
|
}
|
||||||
|
}
|
|
@ -32,6 +32,7 @@ easydns.com
|
||||||
goip.de
|
goip.de
|
||||||
google.com
|
google.com
|
||||||
he.net
|
he.net
|
||||||
|
hosting.de
|
||||||
infomaniak.com
|
infomaniak.com
|
||||||
inwx.de
|
inwx.de
|
||||||
joker.com
|
joker.com
|
||||||
|
|
Loading…
Reference in a new issue