view scripts/nameserver_autogen/bind_tld_zonefile @ 140:ff102609da38 draft

deleted old NS. 1.0.16.0/24 is still reserver to me (pragmo), but it is not anymore used due to routing problems caused by zompies routes in the network.
author pragmo <pragmo@pragmo.ano>
date Sun, 12 Sep 2010 12:29:37 +0000
parents 2e7c94478881
children 1299c56b6d5c 59102e1e06f9
line wrap: on
line source

#!/usr/bin/php
<?php
print('$ttl 600'."\n");
chdir('../db/dom/ano');
$names = scandir('./');
foreach ($names as $name) {
 if (!file_exists($name.'/ns/')) continue;
 $servers = scandir($name.'/ns/');
 foreach ($servers as $server) {
  if ($server[0] == '.') continue;
  print($name.' IN NS '.$server."\n");
  $ips = file($name.'/ns/'.$server, FILE_IGNORE_NEW_LINES |
   FILE_SKIP_EMPTY_LINES);
  foreach ($ips as $ip) {
   print($server.' IN A '.$ip."\n");
  }
 }
}
?>