Skip to content

Instantly share code, notes, and snippets.

@Gussi
Created April 21, 2014 09:02
Show Gist options
  • Save Gussi/11136908 to your computer and use it in GitHub Desktop.
Save Gussi/11136908 to your computer and use it in GitHub Desktop.
<?php
$total = 0;
foreach (file('http://www.rix.is/is-net.txt') as $net) {
list(, $mask) = explode('/', $net);
$total += pow(2, 32-$mask);
}
printf("%d ips allocated\n", $total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment