Skip to content

Commit bdbec53

Browse files
committed
ddns-scripts: Add tb.netassist.ua as service
This adds support for tb.nettassist.ua as requested by [1]. The service seems to have a somewhat broken API in that it returns `OK!` for the first update, but will return `FAIL!` for any consecutive update with the same IP. For example: ``` curl "https://tb.netassist.ua/autochangeip.php?l=[USERNAME]&p=[PASSWORD]&ip=1.2.3.4" OK! The IP will be updated in 60 seconds.% curl "https://tb.netassist.ua/autochangeip.php?l=[USERNAME]&p=[PASSWORD]&ip=1.2.3.4" FAIL! IPv4 address you entered "<b>1.2.3.4</b>" is already registered in our system for another customer. Try another one. Sorry.% ``` On the other hand, it doesn't feel right to add `FAIL!` as expected response for an successful update. If anything, the service provider should be contacted and asked to fix the API. [1]: #25861 Signed-off-by: Karol Babioch <[email protected]>
1 parent 7c9b249 commit bdbec53

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

net/ddns-scripts/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
88

99
PKG_NAME:=ddns-scripts
1010
PKG_VERSION:=2.8.2
11-
PKG_RELEASE:=81
11+
PKG_RELEASE:=82
1212

1313
PKG_LICENSE:=GPL-2.0
1414

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "tb.netassist.ua",
3+
"ipv4": {
4+
"url": "https://tb.netassist.ua/autochangeip.php?l=[USERNAME]&p=[PASSWORD]&ip=[IP]",
5+
"answer": "OK!"
6+
},
7+
"ipv6": {
8+
"url": "https://tb.netassist.ua/autochangeip.php?l=[USERNAME]&p=[PASSWORD]&ip=[IP]",
9+
"answer": "OK!"
10+
}
11+
}

net/ddns-scripts/files/usr/share/ddns/list

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ sitelutions.com
6363
spdyn.de
6464
strato.com
6565
system-ns.com
66+
tb.netassist.ua
6667
thatip.com
6768
transip.nl
6869
twodns.de

0 commit comments

Comments
 (0)