view doc/ucis.ano/bgp_graph/bgp_path_list_quagga.sh @ 227:abee74e3817d draft

Merge branch 'master' of git://git1.somerandomnick.ano Conflicts: doc/www.anonet2.org/public_pod/index.pod
author root <root@HAL2000.(none)>
date Tue, 26 Oct 2010 21:26:17 -0500
parents d44b9afb4a25
children
line wrap: on
line source

#!/bin/sh

LOCALNODE=${LOCALNODE:-0}

(sleep 0.2;
 echo "insecure";
 echo "show ip bgp neigh";
 echo "quit";
) |
nc localhost 2605 |
grep "^BGP neighbor is" |
sed "s/^.*remote AS \([0-9]\+\),.*$/$LOCALNODE \1/"

(sleep 0.2;
 echo "insecure";
 echo "show ip bgp paths";
 echo "quit";
) |
nc localhost 2605 |
grep "[0-9].$" |
sed "s/^\[0x[a-z0-9]\{8\}:[0-9]\+\] ([0-9]\+) \([0-9 ]\+\)\r$/\1/"