Unfortunately, it isn’t shipped with Windows 10, but we can get a version of dig that runs on Windows 10 by installing BIND tools.
More:
https://www.configserverfirewall.com/wi ... d-windows/
Code: Select all
dig ausgeek.net A
Code: Select all
dig @8.8.8.8 ausgeek.website
Code: Select all
dig @9.9.9.9 ausgeek.website MX
Reverse DNS Lookup
We can use the dig command to perform a reverse DNS lookup, that is we can query an IP address and find the domain name that it points to by querying the PTR record. This is done by using the -x option followed by the IP address to query. In the below example we perform a reverse lookup on one public IP address with an ISP that has properly done a PTR.
Code: Select all
dig -x 216.58.220.110
More on rDNS or Reverse DNS right here