Squashed commit of the following:
commit 9be20cd3e24b401d5bfeb2bcb40d61a7b33ffe2c Author: Eric A. Miller <emiller@cpan.org> Date: Sun Jan 19 10:13:41 2014 -0500 Re-organize part 2 commit 058fc6e000a27b8ffadf5857078e0ab1569d3fa2 Author: Eric A. Miller <emiller@cpan.org> Date: Sun Jan 19 10:08:31 2014 -0500 Re-organize commit 04f4602d6cf06f917bd4f19db737f877a46fd28e Author: Eric A. Miller <emiller@cpan.org> Date: Sun Jan 19 10:04:09 2014 -0500 Add MLT agg_ports() support for Avaya commit 2cdc3aed77f551e3c6d04f4cfe390a876010ebcb Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Jan 12 14:24:38 2014 +0000 implement LAG support for Foundry commit 7465816b53981f3211bdeb5a7a414d5a4e65c79f Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Jan 12 13:15:13 2014 +0000 implement LAG support for Arista commit 67e8f13f635f4fb450ab5df6e9145830ef72cf7b Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Jan 12 12:59:09 2014 +0000 update gitignore to ignore SNMP dir commit df4ca0eb44a4f0e5aa114630f0d22b5c9d7861f3 Author: Oliver Gorwits <oliver@cpan.org> Date: Sun Jan 12 12:49:53 2014 +0000 implement LAG support for Cisco
This commit is contained in:
@@ -38,8 +38,12 @@ use SNMP::Info::Layer3;
|
||||
use SNMP::Info::FDP;
|
||||
use SNMP::Info::LLDP;
|
||||
|
||||
@SNMP::Info::Layer3::Foundry::ISA = qw/SNMP::Info::FDP SNMP::Info::LLDP
|
||||
SNMP::Info::Layer3 Exporter/;
|
||||
@SNMP::Info::Layer3::Foundry::ISA = qw/
|
||||
SNMP::Info::FDP
|
||||
SNMP::Info::LLDP
|
||||
SNMP::Info::Layer3
|
||||
Exporter
|
||||
/;
|
||||
@SNMP::Info::Layer3::Foundry::EXPORT_OK = qw//;
|
||||
|
||||
use vars qw/$VERSION %GLOBALS %FUNCS %MIBS %MUNGE/;
|
||||
@@ -50,17 +54,20 @@ $VERSION = '3.10';
|
||||
%SNMP::Info::Layer3::MIBS,
|
||||
%SNMP::Info::LLDP::MIBS,
|
||||
%SNMP::Info::FDP::MIBS,
|
||||
|
||||
'FOUNDRY-SN-ROOT-MIB' => 'foundry',
|
||||
'FOUNDRY-SN-AGENT-MIB' => 'snChasPwrSupplyDescription',
|
||||
'FOUNDRY-SN-SWITCH-GROUP-MIB' => 'snSwGroupOperMode',
|
||||
'FOUNDRY-SN-STACKING-MIB' => 'snStackingOperUnitRole',
|
||||
'FOUNDRY-POE-MIB' => 'snAgentPoeGblPowerCapacityTotal',
|
||||
'FOUNDRY-SN-SWITCH-GROUP-MIB' => 'snSwGroupOperMode',
|
||||
);
|
||||
|
||||
%GLOBALS = (
|
||||
%SNMP::Info::Layer3::GLOBALS,
|
||||
%SNMP::Info::LLDP::GLOBALS,
|
||||
%SNMP::Info::FDP::GLOBALS,
|
||||
|
||||
'mac' => 'ifPhysAddress.1',
|
||||
'chassis' => 'entPhysicalDescr.1',
|
||||
'temp' => 'snChasActualTemperature',
|
||||
@@ -93,8 +100,10 @@ $VERSION = '3.10';
|
||||
);
|
||||
|
||||
%MUNGE = (
|
||||
%SNMP::Info::Layer3::MUNGE, %SNMP::Info::LLDP::MUNGE,
|
||||
%SNMP::Info::Layer3::MUNGE,
|
||||
%SNMP::Info::LLDP::MUNGE,
|
||||
%SNMP::Info::FDP::MUNGE,
|
||||
|
||||
'ag_mod2_type' => \&SNMP::Info::munge_e_type,
|
||||
'ag_mod_type' => \&SNMP::Info::munge_e_type,
|
||||
);
|
||||
@@ -785,6 +794,29 @@ sub peth_power_consumption {
|
||||
return $peth_power_consumed;
|
||||
}
|
||||
|
||||
sub agg_ports {
|
||||
my $dev = shift;
|
||||
|
||||
# TODO: implement partial
|
||||
my $trunks = $dev->snMSTrunkPortList;
|
||||
my $ports = $dev->snSwPortIfIndex; # sw_index()
|
||||
|
||||
return {} unless
|
||||
ref {} eq ref $trunks and scalar keys %$trunks
|
||||
and ref {} eq ref $ports and scalar keys %$ports;
|
||||
|
||||
my $ret = {};
|
||||
foreach my $m (keys %$trunks) {
|
||||
my $skip = 0;
|
||||
while (my $s = unpack("x${skip}n2", $trunks->{$m})) {
|
||||
$ret->{ $ports->{$s} } = $m;
|
||||
$skip += 2;
|
||||
}
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
1;
|
||||
__END__
|
||||
|
||||
@@ -848,6 +880,8 @@ after determining a more specific class using the method above.
|
||||
|
||||
=item F<FOUNDRY-POE-MIB>
|
||||
|
||||
=item F<FOUNDRY-SN-SWITCH-GROUP-MIB>
|
||||
|
||||
=item Inherited Classes' MIBs
|
||||
|
||||
See L<SNMP::Info::Layer3/"Required MIBs"> for its own MIB requirements.
|
||||
@@ -982,6 +1016,12 @@ Skipped if device is an EdgeIron 24G due to reports of hangs.
|
||||
|
||||
(C<dot1dStpPortState>)
|
||||
|
||||
=item $foundry->agg_ports()
|
||||
|
||||
Returns a HASH reference mapping from slave to master port for each member of
|
||||
a port bundle on the device. Keys are ifIndex of the slave ports, Values are
|
||||
ifIndex of the corresponding master ports.
|
||||
|
||||
=back
|
||||
|
||||
=head2 F<ENTITY-MIB> Information
|
||||
|
||||
Reference in New Issue
Block a user