Jump to content

[SOLVED] Help with gethostbyaddr inside loop


Katanius

Recommended Posts

Hi all!

Im new to this forum so plz forgive me if am not posting in the right section and if needed move my post.

 

Im writing a simple script that retuns the hosts for a given ip range(im later going to use it as a function).

 

<?php

$startofrange='62.112.192.1';
$endofrange='62.112.192.50';

$ipstart=ip2long($startofrange);
$ipend=ip2long($endofrange);

for( $ip=$ipstart ; $ip<=$ipend ; $ip++ )
{
echo long2ip($ip)."=";
echo $ip."=";
$hostname = gethostbyaddr($ip);
echo $hostname."<br>";
}

?>

 

The broblem is that at some point it just stops in the middle of the loop an does not finish the scan of the given ips eventhough at the time it stops it has not reached the ip given as the end of the ip range. It just stops...

 

I really cant figure out whats wrong.. Im not realy experienced in php so plz, could anyone help me with this?

What am i doing wrong?

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.