mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-02 10:38:41 -04:00
Bug: IONOS new wildcard entry instead of updating existing one #494
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dernicc on GitHub (Feb 6, 2025).
TLDR: New A wildcard entry on ionos instead of updating existing one
Is this urgent: No
DNS provider(s) you use: Ionos
Program version:
Running version latest built on 2024-12-24T09:20:36.130Z (commit 78f3061)What are you using to run the container: docker-compose
Extra information (optional)
Logs:
Configuration file (remove your credentials!):
Host OS:
docker-compose on openmediavault 7 (Sandworm)
@Hokdan commented on GitHub (Feb 7, 2025):
I recently ran into the same problem and did some debugging on the API Test-Page of IONOS.
DDNS-Updates first does a
GET https://api.hosting.ionos.com/dns/v1/zones to get the ID of the specific domain
The next GET is
GET https://api.hosting.ionos.com/dns/v1/zones/myCrypticID?recordName=any.mydomain.de&recordType=A
I tried this request on the Test-Page and didn't get any answer. So DDNS-Updates thinks it need to put a new entry and does this as intended.
I then tried the same get request with record_Name=*.mydomain.de and got back the IDs of both set IP-Adresses.
I'm not into GO, so I could not find out where to find the code to change the text, but I'm sure somebody else (especially qdm12) can fix it easily.
I did a workaround until this is fixed by adding my needed subdomains in the "host": config line. e.g. "host:": "@,www,nextcloud,*" .