nixos-config/hosts/plover/config/dns/plover.foodogsquared.one.zone
Gabriel Arazas eb1003f7e6
hosts/plover: change DNS server to Bind9
CoreDNS doesn't have dynamic updates available yet (though there are PRs
and discussions for it) so we'll have to go with something that has it.
Also, it provides an opportunity for me to use the de-facto software for
this.
2023-06-22 17:56:47 +08:00

20 lines
406 B
Dns

$TTL 12h
$ORIGIN plover.foodogsquared.one.
@ 3600 IN SOA ns hostmaster.foodogsquared.one. (
2023062201 ; serial number
1h ; refresh
15m ; update retry
3w ; expiry
2h ; nx = nxdomain ttl
)
3600 IN NS ns
ns 3600 IN A @ploverLANIPv4@
3600 IN AAAA @ploverLANIPv6@
* 3600 IN A @ploverLANIPv4@
3600 IN AAAA @ploverLANIPv6@
; vim: expandtab! tabstop=8 shiftwidth=8 filetype=dns