digs

dig many at once.

![A digs demo](docs/demo.gif)

digs is a DNS command-line client that able to query many DNS servers at once.

Why?

We work with DNS records a lot. Having a tools that inspect multiple records across different machines at once is a lifesaver.

Features

Usage

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.

Installation

From binaries

The release page includes pre-compiled binaries for GNU/Linux, macOS and Windows.

From source

Using cargo-binstall

bash cargo binstall digs

Using Rust's package manager cargo:

bash cargo install digs

Development

```bash git clone https://github.com/BiznetGIO/digs cd digs

Run unit tests and integration tests

cargo test

Install

cargo install --path . ```


Licence

digs source code is licensed under the GPLv3.