digs is a DNS command-line client that is able to query many DNS servers at once.
We work with DNS records a lot. Having a tool that inspects multiple records across different machines at once is a lifesaver.
- Prevent invalid input before querying, such as invalid record types or configuration.
- No panics, good error handling.
- much faster compared to previous
digs.py
. - Fancy error messages and colorful output.
- Cross-platform and single binary.
Prepare a configuration file that should look like this:
[[servers]]
address = "8.8.8.8"
name = "Google"
[[servers]]
address = "9.9.9.9:54" # Custom port, default: 53
name = "Quad9"
The servers
blocks can be as many as you want.
Example commands:
digs example.net A Query a domain using the configuration in the current directory
digs example.net A --config custom.toml ...using custom configuration
Run digs --help
to see more available options.
The release page includes pre-compiled binaries for GNU/Linux, macOS, and Windows.
Using cargo-binstall
cargo binstall digs
Using Rust's package manager cargo:
cargo install digs
git clone https://github.com/BiznetGIO/digs
cd digs
# Run unit tests and integration tests
cargo test
# Install
cargo install --path .
To learn more read the contributing guide
digs source code is licensed under the MIT.