The tool is vaguely like `dig`, I called it `dns`. It's similar in that it allows a single DNS message to be sent and await a response. This is by no means as comprehensive as `dig`, yet, but might be suitable as a simpler and easier to use command. For example, issuing a DoH query can be done with:
`dns -p https -t cloudflare-dns.com -n 1.1.1.1:443 query www.example.com. SOA `
And similarly a dynamic update can be performed with:
`dns -p tls -n ${NS_IP}:853 -t ${CERT_NAME} -z example.com. create txt.example.com. TXT 60 HELLO_WORLD`
For auth I still need to wire up SIG0 and TSIG support, at least SIG0 should be easy enough. I'll try and find some time to do that when I have a moment.
Anyway, I'll try and respond if there are any questions in this thread today.
Thanks-
-Ben