From ce4b32edee600796257724c642ce93a19328a9c3 Mon Sep 17 00:00:00 2001 From: Benjamin Frank Date: Wed, 18 Dec 2024 18:02:42 +0100 Subject: [PATCH] ddns-scripts: support IPv6 for joker.com The existing endpoint can handle IPv6 addresses as well. --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/usr/share/ddns/default/joker.com.json | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 83118750c2..62a110955c 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:=52 +PKG_RELEASE:=53 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/share/ddns/default/joker.com.json b/net/ddns-scripts/files/usr/share/ddns/default/joker.com.json index af897f18e1..89c14da842 100644 --- a/net/ddns-scripts/files/usr/share/ddns/default/joker.com.json +++ b/net/ddns-scripts/files/usr/share/ddns/default/joker.com.json @@ -3,5 +3,9 @@ "ipv4": { "url": "http://svc.joker.com/nic/update?username=[USERNAME]&password=[PASSWORD]&myip=[IP]&hostname=[DOMAIN]", "answer": "good|nochg" + }, + "ipv6": { + "url": "http://svc.joker.com/nic/update?username=[USERNAME]&password=[PASSWORD]&myip=[IP]&hostname=[DOMAIN]", + "answer": "good|nochg" } } -- 2.30.2