feat(provider): add ApertoDNS Dynamic DNS provider - #1074
Open
1r0n3d3v3l0per wants to merge 1 commit into
Open
Conversation
Author
|
Hi @qdm12, just a friendly ping. Let me know if you need any changes. Thank you for your availability. |
qdm12
requested changes
Aug 20, 2026
qdm12
left a comment
Owner
There was a problem hiding this comment.
Thanks! Sorry I took forever to get to review this PR, life got in the way and all.
If you've moved on from this, feel free to let me know and I can address those comments, I'll push to your branch and merge it so you still get credits for your work.
1r0n3d3v3l0per
force-pushed
the
feature/apertodns-provider
branch
from
August 21, 2026 21:16
156388c to
024d748
Compare
Author
|
Rebased onto master and addressed the review. The DynDNS2 fallback is gone, tthe provider now only speaks the modern endpoint, as you suggested. Tested against the live API for both success and error paths. The only open point is the test structure: I left a note on that thread. |
Add support for ApertoDNS, a Dynamic DNS service implementing
the ApertoDNS Protocol, a JSON/REST API submitted to the IETF
DNSOP working group as draft-ferro-dnsop-apertodns-protocol.
- POST {api_endpoint}/.well-known/apertodns/v1/update
- Bearer token authentication
- Optional api_endpoint for self-hosted compatible servers
- IPv4 and IPv6
1r0n3d3v3l0per
force-pushed
the
feature/apertodns-provider
branch
from
August 21, 2026 22:11
024d748 to
3157fd5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add support for ApertoDNS Dynamic DNS provider.
ApertoDNS implements the ApertoDNS Protocol, a JSON/REST API for Dynamic DNS updates currently submitted to the IETF DNSOP working group as
draft-ferro-dnsop-apertodns-protocol.Implementation
POST {api_endpoint}/.well-known/apertodns/v1/updateapi_endpointfor self-hosted ApertoDNS-compatible serversConfiguration
{ "settings": [ { "provider": "apertodns", "domain": "domain.com", "token": "your_api_token", "ip_version": "ipv4" } ] }Testing
go build ./...go vet ./...gofmtgo test ./...Changes since review
base_url→api_endpoint