Mercurial > hg > anonet-resdb
view scripts/nameserver_autogen/bind_tld_zonefile @ 498:7ad8b0d24cd1 draft
Updating faq.pod for a2.o with new IPv6 info
author | lex <lex@lynx.ano> |
---|---|
date | Mon, 09 May 2011 23:49:39 +0000 |
parents | c9b4cd6ac74e |
children | c95369b825a2 |
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; if (substr($name, -4) == ".ano") $name .= "."; $fqserver = $server; if (substr($server, -4) == ".ano") $fqserver .= "."; print($name.' IN NS '.$fqserver."\n"); $ips = file($name.'/ns/'.$server, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); foreach ($ips as $ip) { print($fqserver.' IN A '.$ip."\n"); } } } ?>