From 14c309b50e76c6d0cee556609f442e2bf44a201a Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 14 Jun 2010 02:04:24 +0000 Subject: now pulls AS info from dn42 registry --- doc/ucis.ano/bgp_graph/path_list_to_dot.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/ucis.ano/bgp_graph/path_list_to_dot.php b/doc/ucis.ano/bgp_graph/path_list_to_dot.php index e6a449f..7b29e44 100755 --- a/doc/ucis.ano/bgp_graph/path_list_to_dot.php +++ b/doc/ucis.ano/bgp_graph/path_list_to_dot.php @@ -22,9 +22,17 @@ foreach ($nodes as $node => $links) { } } -function nodename ($node) { switch ($node) { +function static_nodename ($node) { switch ($node) { case '64731': return 'SRN (AS64731)'; -}; return 'AS'.$node; }; + case '64766': return 'UFO (AS64766)'; +}; return NULL; }; + +function nodename ($node) { + $node=preg_replace('/[^0-9]+/','',$node); + if (($name=static_nodename($node))!==NULL) return $name; + $name=rtrim(`echo $node | ./asn2adminc | ./hdl2person`); + if (empty($name)) return 'AS'.$node; +return 'AS'.$node.' ('.$name.')'; }; $nodelist=array(); foreach ($nodes as $node => $links) { -- cgit v1.2.3