digs is a DNS command-line client that able to query many DNS servers at once.
We work with DNS records a lot. Having a tools that inspect multiple records across different machines at once is a lifesaver.
digs.py
.Prepare a configuration file that should look like this:
```toml [[servers]] ip = "8.8.8.8" name = "Google"
[[servers]] ip = "9.9.9.9" name = "Quad9" ```
The server can be as many as you want.
Example commands:
digs example.net A Query a domain using the configuration in current directory
digs example.net A -f 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 Rust's package manager cargo:
bash
cargo install digs
```bash git clone https://github.com/BiznetGIO/digs cd digs
cargo test
cargo install --path . ```
digs source code is licensed under the GPLv3.