mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 12:55:48 +03:00
[GH-ISSUE #376] Feature-Request: DNS-Zone-transfer to other DNS-Servers #211
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#211
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 @stemenn on GitHub (Mar 5, 2025).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/376
I'm running two authoritative DNS-Server (Primary and Secondary) for some domains, for which I want to get Certificates through this project. Therefore I am running acme-dns in a docker container and I just forward the queries, because I don't have another public IP. And to be honest, I don't want to get one just for the certificates. It would be nice, if acme-dns clould be set as master and just notify the other authoritative DNS-Servers for that zone.
@TRPB commented on GitHub (Mar 3, 2026):
Here's a fun thing I discovered with this exact problem: Let's Encrypt can work with just an IPv6 for the dns server.
Let's say your server has these IPs:
1.2.3.4A ns1.example.org1:2:3:4::1AAAA ns1.example.orgYou are going to be running your authoritative (ie. not acme-dns) DNS server on port 53 on both IPs.
However, if you can add a second IPv6 (which in a lot of cases is free) you can add a second IPv6
1:2:3:4::2and run acme-dns on that interface only, it works fine.DNS config:
Note the lack of an A record at all here.
acme-dns config:
Now when Let's Encrypt connects to acme-dns, it is on the secondary IPv6 address and it all just works. This is the first time in 25 years I've ever found a genuine benefit of IPv6.