![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
212.7.9.15 --> | 212.7.8.1 --> | ifDescr = FastEthernet2/1 |
localIP = 212.7.8.2 | ||
netmask = 255.255.255.252 | ||
AreaId = 15 | ||
212.119.3.5 --> | ifDescr = ATM2/8 | |
localIP = 212.119.3.6 | ||
netmask = 255.255.255.252 | ||
AreaId = 92 | ||
212.7.9.15 --> | ifDescr = Loopback0 | |
localIP = 212.7.9.15 | ||
netmask = 255.255.255.255 | ||
AreaId = 0 | ||
sysName = tbr1-cl1.sffca.ip.att.net/td> |
*
) as file name. The main result is a reference to a hash containing all resulting attributes.use ospfviz;
example
directory of the OSPFviz distribution.
sub GetAttrByIfDescr (topology file, OspfRouterId, interface)
FastEthernet3/1
) on a specific device, e.g.
%attr = %{ GetAttrByIfDescr ('my-topo-file.xml', '17.9.3.251', 'FastEthernet3/1') };
printf ("%s\n", $attr{netmask});
This would print the netmask 255.255.255.0
.
sub GetAttrByIpAddr (topology file, ip address)
($attr, $id) = GetAttrByIpAddr ('my-topo-file.xml', '17.9.0.144');
%attr = %$attr;
printf ("%s on %s\n", $attr{ifDescr}, $id);
This would print the interface name and the OSPF router ID: GigabitEthernet0/3 on 17.9.3.112
.
sub GetAttrByValue (topology file, OspfRouterId, leaf name, search pattern)
leaf name
is the name of the attribute (e.g. ospfRouterId
) and search pattern
is the value of the leaf that you want to find. In case you search for something very common (interface name Ethernet0
) please keep in mind that only the first occurence is returned.
GetAttrByValue ('myfile.xml', '12.122.10.6', 'ospfRouterId', '12.122.10.6');
printf ("%s\n", $attr{sysName});
This would print the system name: tbr1-cl1.sffca.ip.att.net
.