Mercurial > hg > anonet-resdb
view scripts/nameserver_autogen/dnsmasq_tld_conffile @ 202:ccd91f982dfd draft
Assignments for harald
ip 1.0.169.0/24
as 169
git git://1.0.169.1/ano2.git
author | harald <p1ano@evermin.(none)> |
---|---|
date | Sun, 24 Oct 2010 08:06:45 +0000 |
parents | 70a066da663d |
children | 750fe07d268e |
line wrap: on
line source
#!/bin/bash # # Call this script directly from the git root and redirect # its output to a file. # This file should then be imported in the dnsmasq.conf # using the conf-file=path-to-this-file statement. # sh scripts/check_db_safety || exit 1 LS="ls --color=never" for a in $($LS db/ip/); do for b in $($LS db/ip/${a}); do for c in $($LS db/ip/${a}/${b}); do if [ -d db/ip/${a}/${b}/${c}/ns/ ]; then for ns in $(cat db/ip/${a}/${b}/${c}/ns/*); do A1=$(scripts/hex2dec ${a}) B1=$(scripts/hex2dec ${b}) C1=$(scripts/hex2dec ${c}) STR="server=/${C1}.${B1}.${A1}.in-addr.arpa/${ns}" echo $STR done fi done done done echo for tld in $($LS db/dom/); do for domain in $($LS db/dom/${tld}/); do for ns in $(cat db/dom/${tld}/${domain}/ns/*); do STR="server=/${domain}.${tld}/${ns}" echo $STR done; done; done