Ya esta , encontre informacion sobre el tema
para convertir la ip a numero y al reves hay estas funciones
Código PHP:
$dotted_ip_address = "194.109.136.80";
$ip_number = sprintf("%u", ip2long($dotted_ip_address));
echo "<li>".$ip_number;
$ip_numberb=$ip_number;
$dotted_ip_addressb = long2ip($ip_numberb);
echo "<li>".$dotted_ip_addressb;
espero que te sirva