view scripts/nameserver_autogen/bind_tld_zonefile @ 1120:8e01b8361e9e draft

changed add_dom to not even bother with anything head -c -1 related. should still work. added a comment at the top of dec2hex to suggest a shorter version that should work. added a script for generating zonefiles for bind
author epoch <epoch@hacking.allowed.org>
date Mon, 27 May 2013 05:16:01 +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");
  }
 }
}
?>