Linux DNS Host Lookup
Tests domain name services, nslookup is a powerful interactive tool that comes with the BIND software. dig and host are similar tools that can be used inside of shell scripts.
The host command is a very simple tool for looking up IP address. The format of the host command is: host [ options ] domain-name [ server ] Note
ex. : $ host -t any dolphin.example.org goat.example.org using domain server 172.32.3.2: dolphin.example.org has address 172.32.3.8 $ host -t any dolphin.example.org shark.fish.org using domain server 172.30.8.2: host not found |

