From e336140e1beae2d0cefc9a0281f182224669a9c4 Mon Sep 17 00:00:00 2001 From: sevil Date: Sun, 4 Mar 2012 10:07:21 +0000 Subject: scripts: Added scripts to search for desired ASNs and subnets --- scripts/as_script | 11 +++++++++++ scripts/subnet_script | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100755 scripts/as_script create mode 100644 scripts/subnet_script (limited to 'scripts') diff --git a/scripts/as_script b/scripts/as_script new file mode 100755 index 0000000..f01724b --- /dev/null +++ b/scripts/as_script @@ -0,0 +1,11 @@ +#!/bin/sh +# READ ME: +# If AS# is taken it will return the desired AS# +# else it will not return the desired AS# +echo -e "Enter path to resdb:\c" +read resdb +cd $resdb +echo -e "Enter desired AS#:\c" +read asn +ls db/as/ | grep "^$asn\$" + diff --git a/scripts/subnet_script b/scripts/subnet_script new file mode 100644 index 0000000..378bf04 --- /dev/null +++ b/scripts/subnet_script @@ -0,0 +1,11 @@ +#!/bin/sh +# READ ME: +# If subnet is taken it will return the desired AS# +# else it will not return the desired subnet +echo -e "Enter path to resdb:\c" +read resdb +cd $resdb +echo -e "Enter desired subnet:\c" +read subnet +cat db/ip/01/*/*/cidr | grep "^$subnet\$" + -- cgit v1.2.3