From 91a8cee50c9cce580534b8cc6ca31265029ef6d2 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 12 May 2010 21:29:59 +0000 Subject: scripts for dom&ip, dn42 resdb, and doc (www.anonet2.org) --- scripts/add_ip | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 scripts/add_ip (limited to 'scripts/add_ip') diff --git a/scripts/add_ip b/scripts/add_ip new file mode 100755 index 0000000..0d7d87c --- /dev/null +++ b/scripts/add_ip @@ -0,0 +1,24 @@ +#!/bin/sh + +if [ x"$2" = x ]; then + echo "Usage: $0 [...]" >&2; exit 255 +fi + +cidr="$1" +hex="$(./scripts/cidr2hex "$cidr")" +dir=db/ip/"$hex" +if [ -e "$dir" ]; then + echo "Refusing to clobber existing record" >&2; exit 1 +fi +mkdir -p "$dir" || exit 1 +echo "$cidr" > "$dir"/cidr +echo "$2" > "$dir"/owner +mkdir "$dir"/ns || exit 1 +shift; shift; +while [ x"$1" != x ]; do + echo "$1" | tr / ' ' | ( + read ns nsip + echo "$nsip" > "$dir/ns/$ns" + ) + shift; +done -- cgit v1.2.3