A powerful, lightweight CLI to manage Technitium DNS server via HTTP API endpoint.
Warning
tnds
is not supporting full set of API calls yet and only the ones I initially
needed 😄. Contributions are welcome and feel free to check the upstream
guide or open an issue/PR!
Note
Full list of API docs and spec is available here.
Important
Because this is the initial (v0) iteration of the CLI, some features maight change and the code quality will improve over time (e.g. tests, re-use, ...).
- Download from the releases
- Run
tdns -v
to check if it's working correctly. - Enjoy!
Generate a config file with:
tdns init
and update the values for your endpoint!
Or manually create config.json
or ~/.tdns/config.json
:
{
"token": "your-api-token",
"host": "http://localhost:5380"
}
Tip
You can also use:
--token
(-t
) and--endpoint
(-e
) flags- Environment variable:
TDNS_API_TOKEN
tdns list [--json]
tdns import <zone> --file zone.txt [--json]
tdns export <zone> [--output-dir dir] [--json]
tdns delete <zone>
tdns records get <zone> [--filter A] [--json]
tdns logs list
tdns logs download <filename> [--output log.txt]
tdns logs delete <filename>
tdns logs deleteAll
tdns admin list-sessions
tdns admin delete-session --id <partialToken>
tdns admin create-token --user admin --token-name mytoken
admin change-password -i [-p <pass>]
tdns admin check-update
If you want to build your own binarly locally, you can do that by running:
make build
Which should produce a locally executable binary.
Note
You'll need Golang 1.x compiler and Make.
To run tests there is a Makefile target for that as well:
make test
Report issues/questions/feature requests on in the issues section.
Full contributing guidelines are covered here.
MPL-2.0 Licensed. See LICENSE for full details.