Hello, I need to find ipaddress of about 250 directory domains. I had bookmarked one website that has capability to do bulk domain to ipaddress check, but I lost it. Does anyone know of any website where I can do this check? Thanks A Lot.
Reported Attack Site! This web site at www.analogpoint.com has been reported as an attack site and has been blocked based on your security preferences. Attack sites try to install programs that steal private information, use your computer to attack others, or damage your system. Some attack sites intentionally distribute harmful software, but many are compromised without the knowledge or permission of their owners. You can try site in my signature.
You can use PHP function gethostbyname() to obtain IP address of the websites. Following are the sample code. Just create a mysql table and enter all your domain name. <?php $con = mysql_connect("localhost","user","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } $DB = "domains"; mysql_select_db($DB); $sql = mysql_query("SELECT * FROM domainname"); echo "<table>"; while($result = mysql_fetch_array($sql)) { $domain = $result["name"]; if ($domain != "") { echo "<tr>"; echo "<td>".$domain."</td>"; echo "<td>".gethostbyname($domain)."</td></tr><br>"; } } echo "</table>"; mysql_close($con); ?> Code (markup): Make sure you make the required changes in database name and table name. Kailash
just do the whois and you can get the ip of server http://whois.domaintools.com/google.com check the IP in server stats tab