repo: resdb action: commit revision: path_from: revision_from: febca5dadfbaaaa67661b8004008fbc9f5856363: path_to: revision_to:
commit febca5dadfbaaaa67661b8004008fbc9f5856363 Author: cathuggerDate: Thu Jul 19 14:05:14 2018 +0000 add missing cidr entry, fix abslimit's IP entry, tweak bind autogen script diff --git a/db/ip/15/0A/0B/00/cidr b/db/ip/15/0A/0B/cidr similarity index 100% rename from db/ip/15/0A/0B/00/cidr rename to db/ip/15/0A/0B/cidr diff --git a/db/ip/15/0A/0B/00/owner b/db/ip/15/0A/0B/owner similarity index 100% rename from db/ip/15/0A/0B/00/owner rename to db/ip/15/0A/0B/owner diff --git a/db/ip/15/3F/46/cidr b/db/ip/15/3F/46/cidr new file mode 100644 index 0000000000000000000000000000000000000000..1348f8d9c2d98fafb6ece65660fe6826615a9301 --- /dev/null +++ b/db/ip/15/3F/46/cidr @@ -0,0 +1 @@ +21.63.70.0/24 diff --git a/scripts/addmissingcidr.sh b/scripts/addmissingcidr.sh new file mode 100755 index 0000000000000000000000000000000000000000..3ee260717b3a7e2d2970b3410f4f9ef1683c1334 --- /dev/null +++ b/scripts/addmissingcidr.sh @@ -0,0 +1,31 @@ +#!/bin/sh +# adds missing ip/*/*/cidr entries + +cd db || exit 1 +cd ip || exit 1 +for a in * +do + [ -e "$a" ] || continue + ia=$((0x$a)) || exit 1 + cd "$a" || exit 1 + for b in * + do + [ -e "$b" ] || continue + ib=$((0x$b)) || exit 1 + cd "$b" || exit 1 + for c in * + do + [ -e "$c" ] || continue + ic=$((0x$c)) || exit 1 + cd "$c" || exit 1 + if [ ! -e cidr ] + then + printf "%d.%d.%d.0/24\n" "$ia" "$ib" "$ic"> cidr + printf "ip/%s/%s/%s %d.%d.%d.0/24\n" "$a" "$b" "$c" "$ia" "$ib" "$ic" >&2 + fi + cd .. + done + cd .. + done + cd .. +done diff --git a/scripts/nameserver_autogen/bind_tld_zonefile.sh b/scripts/nameserver_autogen/bind_tld_zonefile.sh
--- a/scripts/nameserver_autogen/bind_tld_zonefile.sh
+++ b/scripts/nameserver_autogen/bind_tld_zonefile.sh
@@ -27,7 +27,7 @@ fi
cd "$RESDB_PATH/db/ip" || exit 1
for PFX in $RDNS_PREFIX;do
cd "$RESDB_PATH/db/ip/$PFX" 2>/dev/null || continue
- IP=$[0x$PFX]
+ IP=$((0x$PFX))
DOM=$IP.in-addr.arpa
RDNS_ZONEFILE="$ZONEFILE_DIR/$DOM"
echo -n "generating IPv4 reverse lookup zonefile for $IP/8..." >&2
@@ -45,7 +45,7 @@ for PFX in $RDNS_PREFIX;do
a=$(basename $(dirname $i))
b=$(basename $(dirname $(dirname $i)))
c=$(basename $(dirname $(dirname $(dirname $i))))
- ipv4=`printf "%d.%d" $[0x${b}] $[0x${c}]`
+ ipv4=`printf "%d.%d" $((0x$b)) $((0x$c))`
printf "%-7s IN NS %s\n" $ipv4 ${f}.
done >> "$RDNS_ZONEFILE".tmp
mv -f "$RDNS_ZONEFILE".tmp "$RDNS_ZONEFILE"
-----END OF PAGE-----