I saw a list of 500+ Google data center IP's here -> http://www.seo-scoop.com/2006/06/23/...enter-ip-list/
So I've turned it into a CSV file and attached it.
For those of you interested, it was pretty easy to extract the list from the HTML. I just saved the HTML which had the list and then ran this code over it instead of spending ages doing it by hand.
PHP Code:
$myString ='1. 64.233.161.18<br />
2. 64.233.161.19<br />etc....';
$myStringArray = array();
// add a pipe to keep end of record
$myString = str_replace('<br />', '|', $myString);
// get rid of new lines
$myString = str_replace("\r", '', $myString);
// explode to array so we can work with each record
$myStringArrayTemp = explode(" " , $myString);
// strip out the 1., 2. sequential numbering
for($i=1;$i<520;$i++){
if($i<9){
$myStringArray[] = substr($myStringArrayTemp[$i], 0, -3);
}
if($i>=9 and $i< 99){
$myStringArray[] = substr($myStringArrayTemp[$i], 0, -4);
}
if($i>=99){
$myStringArray[] = substr($myStringArrayTemp[$i], 0, -5);
}
}
// implode to comma delimited
$final = implode(",", $myStringArray);
echo $final;
Bookmarks