From 65cbccfded0ef69aed0e6cc6e83ab9abd8ed39f1 Mon Sep 17 00:00:00 2001 From: Dimitri Souza Date: Thu, 20 Feb 2025 12:31:27 -0300 Subject: [PATCH] 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 --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/usr/share/ddns/default/dynu.com.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]" } } -- 2.30.2