A smol DNS server (around 100 loc) that's configured with a static JSON file. Useful for split-dns.
go install github.com/bahlo/mapdns@v0.2.0
docker pull ghcr.io/bahlo/mapdns:0.2.0
Create a mapdns.json
in the same directory you're running the binary from, with content like this:
{
"foo.example.org.": {
"A": "1.2.3.4",
"AAAA": "::1"
},
"*.foo.example.org.": {
"A": "1.2.3.4"
}
}
Run the binary and start making requests!
It works and I use it in my home network for split-dns1.
There is little tests and no support for records other than A
and AAAA
.
Please don't use this on a production system.
Expose MAPDNS_DEBUG=true
to get debug logs. Otherwise it will only log on
errors.
Footnotes
-
I use Tailscale and configured it to search for my internal network domain on the DNS server I configured here. ↩