Another network administration CLI tool to query a domain name out of a DNS Server. Unlike nslookup, dig will print out the process of the query, like the root server its use, TLD server its use, etc. Usually installed out of the box in Linux.

Some simple example:

Query www.ndkprd.com from the machine DNS Server:

dig www.ndkprd.com

Query www.ndkprd.com from Google DNS Server:

dig www.ndkprd.com @8.8.8.8

Query www.ndkprd.com from Google DNS Server and only return the resolved IP Address:

dig +short www.ndkprd.com @8.8.8.8