From: Dimitri Souza Date: Thu, 20 Feb 2025 15:31:27 +0000 (-0300) Subject: ddns-scripts: Add option 'myip=no' to Dynu IPv6 update URL X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=65cbccfded0ef69aed0e6cc6e83ab9abd8ed39f1;p=feed%2Fpackages.git ddns-scripts: Add option 'myip=no' to Dynu IPv6 update URL Prevents IPv6 updates to also update IPv4 (undesirable when behind a CGNAT) Signed-off-by: Dimitri Souza --- diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index efcb3826d4..aa31b1fe9e 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:=63 +PKG_RELEASE:=64 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/share/ddns/default/dynu.com.json b/net/ddns-scripts/files/usr/share/ddns/default/dynu.com.json index 2c25ea90f4..c822f2ece8 100644 --- a/net/ddns-scripts/files/usr/share/ddns/default/dynu.com.json +++ b/net/ddns-scripts/files/usr/share/ddns/default/dynu.com.json @@ -4,6 +4,6 @@ "url": "http://api.dynu.com/nic/update?hostname=[DOMAIN]&myip=[IP]&username=[USERNAME]&password=[PASSWORD]" }, "ipv6": { - "url": "http://api.dynu.com/nic/update?hostname=[DOMAIN]&myipv6=[IP]&username=[USERNAME]&password=[PASSWORD]" + "url": "http://api.dynu.com/nic/update?hostname=[DOMAIN]&myip=no&myipv6=[IP]&username=[USERNAME]&password=[PASSWORD]" } }