From: Karol Kolacinski Date: Tue, 20 Aug 2024 16:57:17 +0000 (+0200) Subject: ddns-scripts: Add IPv6 and https for OVH X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=33ecb97bc36c84af184110883b8d32c56bdb6be9;p=openwrt-packages.git ddns-scripts: Add IPv6 and https for OVH ovh.com supports https and IPv6 since March 2024. New API operates under domain dns.eu.ovhapis.com Add IPv6 support, use https and updated domain for ovh.com. Signed-off-by: Karol Kolacinski --- diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 668775522..6233377d0 100644 --- a/net/ddns-scripts/Makefile +++ b/net/ddns-scripts/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ddns-scripts PKG_VERSION:=2.8.2 -PKG_RELEASE:=46 +PKG_RELEASE:=47 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/share/ddns/default/ovh.com.json b/net/ddns-scripts/files/usr/share/ddns/default/ovh.com.json index 92f2066a6..446093bce 100644 --- a/net/ddns-scripts/files/usr/share/ddns/default/ovh.com.json +++ b/net/ddns-scripts/files/usr/share/ddns/default/ovh.com.json @@ -1,7 +1,11 @@ { "name": "ovh.com", "ipv4": { - "url": "http://[USERNAME]:[PASSWORD]@www.ovh.com/nic/update?system=dyndns&hostname=[DOMAIN]&myip=[IP]", + "url": "https://[USERNAME]:[PASSWORD]@dns.eu.ovhapis.com/nic/update?system=dyndns&hostname=[DOMAIN]&myip=[IP]", + "answer": "good|nochg" + }, + "ipv6": { + "url": "https://[USERNAME]:[PASSWORD]@dns.eu.ovhapis.com/nic/update?system=dyndns&hostname=[DOMAIN]&myip=[IP]", "answer": "good|nochg" } }