Networking HowTos
Networking HowTos

Check the reverse dns hostname for a IP on Linux

February 1, 2013 Linux

This guide will step you through how to take an IP address, and find out what its reverse dns host name is. This is useful for checking mail server DNS setup, etc.
The DNS system works two ways. It is used to convert host names to IP addresses, but it can also convert IP addresses to host names.
Two handy programs to perform DNS queries on Linux are ‘dig’ and ‘host’. If either of these aren’t installed on your system, they should be available in your distributions repositories.
Using ‘dig’:

$ dig -x 8.8.8.8 +short

Example:

$ dig -x 8.8.8.8 +short
google-public-dns-a.google.com.
$

Using ‘host’:

$ host 8.8.8.8

Example:

$ host 8.8.8.8
8.8.8.8.in-addr.arpa domain name pointer google-public-dns-a.google.com.
$

You Might Also Like