Hi, I have a number of websites and I need to be able to check what IP address they are resolving to given the domain name. Any ideas? Thanks Mark
If you have access to a shell and dig is installed, you could do it through a while loop: for website in www.example.org 123.example.com abc.example.net;do echo -n "$website: "; dig +short $website; done Code (markup):