mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
ddns-scripts: Use parameter-based authentication for he.net
According to [1] Basic Auth seems to be broken since a while for he.net. The documentation [2] is outdated, and still mentions Basic Auth, but switching to parameter-based authentication seems to fix the issue. It also bumps PKG_RELEASE in order to ensure a new version is packaged. [1]: https://github.com/openwrt/packages/issues/27593 [2]: https://dns.he.net/docs.html Signed-off-by: Karol Babioch <karol@babioch.de>
This commit is contained in:
committed by
Florian Eckert
parent
37bfd2bb61
commit
11f7c36d68
@@ -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:=80
|
PKG_RELEASE:=81
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "he.net",
|
"name": "he.net",
|
||||||
"ipv4": {
|
"ipv4": {
|
||||||
"url": "http://[DOMAIN]:[PASSWORD]@dyn.dns.he.net/nic/update?hostname=[DOMAIN]&myip=[IP]",
|
"url": "https://dyn.dns.he.net/nic/update?hostname=[DOMAIN]&password=[PASSWORD]&myip=[IP]",
|
||||||
"answer": "good|nochg"
|
"answer": "good|nochg"
|
||||||
},
|
},
|
||||||
"ipv6": {
|
"ipv6": {
|
||||||
"url": "http://[DOMAIN]:[PASSWORD]@dyn.dns.he.net/nic/update?hostname=[DOMAIN]&myip=[IP]",
|
"url": "https://dyn.dns.he.net/nic/update?hostname=[DOMAIN]&password=[PASSWORD]&myip=[IP]",
|
||||||
"answer": "good|nochg"
|
"answer": "good|nochg"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user