Off topic, but the numbers above are just an IP address trick. The numbers just represent the 32 bit form of the IP (instead of 4 8 bit fields, it's 1 32 bit).
A little snippet of code I got from somewhere to translate the 32 bit number to dotted quad:
#!/usr/bin/perl
# print a 32 bit decimal IP address as normal dotted quad octets
$d = $ARGV[0];
$o1 = ($d & 0xFF000000) >> 24;
$o2 = ($d & 0x00FF0000) >> 16;
$o3 = ($d & 0x0000FF00) >> 8;
$o4 = ($d & 0x000000FF);
print ("$o1.$o2.$o3.$o4\n"

;