Mercurial > hg > anonet-resdb
annotate contrib/sevilNatas/subnet_script @ 1224:428b55e8e1d4 draft
added 21.104.100.0/24
author | root <root@x> |
---|---|
date | Wed, 28 Nov 2018 06:19:22 +0000 |
parents | 4ec8a1c7f73c |
children |
rev | line source |
---|---|
948
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
1 #!/bin/sh |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
2 # READ ME: |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
3 # If subnet is taken it will return the desired AS# |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
4 # else it will not return the desired subnet |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
5 echo -e "Enter path to resdb:\c" |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
6 read resdb |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
7 cd $resdb |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
8 echo -e "Enter desired subnet:\c" |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
9 read subnet |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
10 cat db/ip/01/*/*/cidr | grep "^$subnet\$" |
4ec8a1c7f73c
the contrib scripts they should be in contrib/
Nick <nick@somerandomnick.ano>
parents:
diff
changeset
|
11 |