LinuxCommandLibrary

adig

Prints information received from Domain Name System (DNS) servers.

TLDR

Display A (default) record from DNS for hostname(s)

$ adig [example.com]
copy


Display extra [d]ebugging output
$ adig -d [example.com]
copy


Connect to a specific DNS [s]erver
$ adig -s [1.2.3.4] [example.com]
copy


Use a specific TCP port to connect to a DNS server
$ adig -T [port] [example.com]
copy


Use a specific UDP port to connect to a DNS server
$ adig -U [port] [example.com]
copy

Copied to clipboard