summaryrefslogtreecommitdiff
path: root/scripts/nameserver_autogen/tinydns_tld_datafile
blob: 5896aa224cba5b6c2f6f4be75ff49dde910e0a72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
if ! ./scripts/check_db_safety; then
 exit 1
fi
tldsrvrname="$(./scripts/conf_var tinydns__tldsrvrname uz5fvb7zdqyuz4q8ysjdfuf04kzd2lrt0l6fp4uyguxdg5tfut06ck.anons.somerandomnick.ano)"
tldsrvrip="$(./scripts/conf_var tinydns__tldsrvrip 1.0.27.37)"
echo "+$tldsrvrname:$tldsrvrip:3600"
for tld in db/ip/?? ; do
 if [ "x$(basename $tld)" != 'x??' ]; then
  first="$(basename $tld | ./scripts/hex2dec)"
  tldname="$first.in-addr.arpa"
  echo ".$tldname::$tldsrvrname"
  for ip in $tld/??/?? ; do
   if [ "x$(basename $ip)" != 'x??' ]; then
    third="$(basename $ip | ./scripts/hex2dec)"
    second="$(basename $(dirname $ip) | ./scripts/hex2dec)"
    first="$(basename $(dirname $(dirname $ip)) | ./scripts/hex2dec)"
    domain="$third.$second.$first.in-addr.arpa"
    for ns in $ip/ns/* ; do
     nsname="$(basename $ns)"
     if [ "x$nsname" != 'x*' ]; then
      nsip="$(cat $ns)"
      echo "&$domain:$nsip:$nsname"
     fi
    done
   fi
  done
 fi
done
for tld in db/dom/* ; do
 tldname="$(basename $tld)"
 echo ".$tldname::$tldsrvrname"
 for zone in $tld/* ; do
  for ns in $zone/ns/* ; do
   domain="$(basename $zone).$(basename $tld)"
   nsip="$(cat $ns)"
   nsname="$(basename $ns)"
   echo "&$domain:$nsip:$nsname"
  done
 done
done