use EXTREME-FDB-MIB instead of BRIDGE-MIB since BRIDGE-MIB must be explicitly enabled on these devices and does not respond by default. Fix duplex status reporting.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
# SNMP::Info::Layer3::Extreme - SNMP Interface to Extreme devices
|
# SNMP::Info::Layer3::Extreme - SNMP Interface to Extreme devices
|
||||||
# Eric Miller
|
# Eric Miller
|
||||||
#
|
#
|
||||||
# Copyright (c) 2004,2005 Max Baker changes from version 0.8 and beyond.
|
# Copyright (c) 2005 Eric Miller
|
||||||
#
|
#
|
||||||
# Copyright (c) 2002,2003 Regents of the University of California
|
# Copyright (c) 2002,2003 Regents of the University of California
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
@@ -36,21 +36,25 @@ use strict;
|
|||||||
|
|
||||||
use Exporter;
|
use Exporter;
|
||||||
use SNMP::Info::Layer3;
|
use SNMP::Info::Layer3;
|
||||||
|
use SNMP::Info::MAU;
|
||||||
|
|
||||||
use vars qw/$VERSION $DEBUG %GLOBALS %FUNCS $INIT %MIBS %MUNGE/;
|
use vars qw/$VERSION $DEBUG %GLOBALS %FUNCS $INIT %MIBS %MUNGE/;
|
||||||
|
|
||||||
$VERSION = 1.0;
|
$VERSION = 1.0;
|
||||||
|
|
||||||
@SNMP::Info::Layer3::Extreme::ISA = qw/SNMP::Info::Layer3 Exporter/;
|
@SNMP::Info::Layer3::Extreme::ISA = qw/SNMP::Info::Layer3 SNMP::Info::MAU Exporter/;
|
||||||
@SNMP::Info::Layer3::Extreme::EXPORT_OK = qw//;
|
@SNMP::Info::Layer3::Extreme::EXPORT_OK = qw//;
|
||||||
|
|
||||||
%MIBS = ( %SNMP::Info::Layer3::MIBS,
|
%MIBS = ( %SNMP::Info::Layer3::MIBS,
|
||||||
|
%SNMP::Info::MAU::MIBS,
|
||||||
'EXTREME-BASE-MIB' => 'extremeAgent',
|
'EXTREME-BASE-MIB' => 'extremeAgent',
|
||||||
'EXTREME-SYSTEM-MIB' => 'extremeSystem',
|
'EXTREME-SYSTEM-MIB' => 'extremeSystem',
|
||||||
|
'EXTREME-FDB-MIB' => 'extremeSystem',
|
||||||
);
|
);
|
||||||
|
|
||||||
%GLOBALS = (
|
%GLOBALS = (
|
||||||
%SNMP::Info::Layer3::GLOBALS,
|
%SNMP::Info::Layer3::GLOBALS,
|
||||||
|
%SNMP::Info::MAU::GLOBALS,
|
||||||
'serial' => 'extremeSystemID',
|
'serial' => 'extremeSystemID',
|
||||||
'temp' => 'extremeCurrentTemperature',
|
'temp' => 'extremeCurrentTemperature',
|
||||||
'ps1_status' => 'extremePowerSupplyStatus.1',
|
'ps1_status' => 'extremePowerSupplyStatus.1',
|
||||||
@@ -60,11 +64,17 @@ $VERSION = 1.0;
|
|||||||
|
|
||||||
%FUNCS = (
|
%FUNCS = (
|
||||||
%SNMP::Info::Layer3::FUNCS,
|
%SNMP::Info::Layer3::FUNCS,
|
||||||
|
%SNMP::Info::MAU::FUNCS,
|
||||||
|
# EXTREME-FDB-MIB:extremeFdbMacFdbTable
|
||||||
|
'fw_mac' => 'extremeFdbMacFdbMacAddress',
|
||||||
|
'fw_port' => 'extremeFdbMacFdbPortIfIndex',
|
||||||
|
'fw_status' => 'extremeFdbMacFdbStatus',
|
||||||
);
|
);
|
||||||
|
|
||||||
%MUNGE = (
|
%MUNGE = (
|
||||||
# Inherit all the built in munging
|
# Inherit all the built in munging
|
||||||
%SNMP::Info::Layer3::MUNGE,
|
%SNMP::Info::Layer3::MUNGE,
|
||||||
|
%SNMP::Info::MAU::MUNGE,
|
||||||
);
|
);
|
||||||
|
|
||||||
# Method OverRides
|
# Method OverRides
|
||||||
@@ -110,6 +120,18 @@ sub os_ver {
|
|||||||
return undef;
|
return undef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# We're not using BRIDGE-MIB
|
||||||
|
sub bp_index {
|
||||||
|
my $extreme = shift;
|
||||||
|
my $if_index = $extreme->i_index();
|
||||||
|
|
||||||
|
my %bp_index;
|
||||||
|
foreach my $iid (keys %$if_index){
|
||||||
|
$bp_index{$iid} = $iid;
|
||||||
|
}
|
||||||
|
return \%bp_index;
|
||||||
|
}
|
||||||
|
|
||||||
# Index values in the Q-BRIDGE-MIB are the same
|
# Index values in the Q-BRIDGE-MIB are the same
|
||||||
# as in the BRIDGE-MIB and do not match ifIndex.
|
# as in the BRIDGE-MIB and do not match ifIndex.
|
||||||
sub i_vlan {
|
sub i_vlan {
|
||||||
@@ -120,7 +142,7 @@ sub i_vlan {
|
|||||||
my %i_vlan;
|
my %i_vlan;
|
||||||
foreach my $v_index (keys %$qb_i_vlan){
|
foreach my $v_index (keys %$qb_i_vlan){
|
||||||
my $vlan = $qb_i_vlan->{$v_index};
|
my $vlan = $qb_i_vlan->{$v_index};
|
||||||
my $iid = $bp_index->{v_index};
|
my $iid = $bp_index->{$v_index};
|
||||||
|
|
||||||
unless (defined $iid) {
|
unless (defined $iid) {
|
||||||
print " Port $v_index has no bp_index mapping. Skipping\n"
|
print " Port $v_index has no bp_index mapping. Skipping\n"
|
||||||
@@ -176,6 +198,8 @@ my $extreme = new SNMP::Info::Layer3::Extreme(...);
|
|||||||
|
|
||||||
=item SNMP::Info::Layer3
|
=item SNMP::Info::Layer3
|
||||||
|
|
||||||
|
=item SNMP::Info::MAU
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
=head2 Required MIBs
|
=head2 Required MIBs
|
||||||
@@ -186,15 +210,14 @@ my $extreme = new SNMP::Info::Layer3::Extreme(...);
|
|||||||
|
|
||||||
=item EXTREME-SYSTEM-MIB
|
=item EXTREME-SYSTEM-MIB
|
||||||
|
|
||||||
|
=item EXTREME-FDB-MIB
|
||||||
|
|
||||||
=item Inherited Classes' MIBs
|
=item Inherited Classes' MIBs
|
||||||
|
|
||||||
See classes listed above for their required MIBs.
|
See classes listed above for their required MIBs.
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
MIBs can be downloaded directly from Extreme regardless of support
|
|
||||||
contract status.
|
|
||||||
|
|
||||||
=head1 GLOBALS
|
=head1 GLOBALS
|
||||||
|
|
||||||
These are methods that return scalar value from SNMP
|
These are methods that return scalar value from SNMP
|
||||||
@@ -259,6 +282,10 @@ Returns base mac
|
|||||||
|
|
||||||
See documentation in SNMP::Info::Layer3 for details.
|
See documentation in SNMP::Info::Layer3 for details.
|
||||||
|
|
||||||
|
=head2 Globals imported from SNMP::Info::MAU
|
||||||
|
|
||||||
|
See documentation in SNMP::Info::MAU for details.
|
||||||
|
|
||||||
=head1 TABLE ENTRIES
|
=head1 TABLE ENTRIES
|
||||||
|
|
||||||
These are methods that return tables of information in the form of a reference
|
These are methods that return tables of information in the form of a reference
|
||||||
@@ -268,17 +295,28 @@ to a hash.
|
|||||||
|
|
||||||
=over
|
=over
|
||||||
|
|
||||||
|
=item $extreme->fw_mac()
|
||||||
|
|
||||||
|
(B<extremeFdbMacFdbMacAddress>)
|
||||||
|
|
||||||
|
=item $extreme->fw_port()
|
||||||
|
|
||||||
|
(B<extremeFdbMacFdbPortIfIndex>)
|
||||||
|
|
||||||
|
=item $extreme->fw_status()
|
||||||
|
|
||||||
|
(B<extremeFdbMacFdbStatus>)
|
||||||
|
|
||||||
=item $extreme->i_vlan()
|
=item $extreme->i_vlan()
|
||||||
|
|
||||||
Returns a mapping between ifIndex and the VLAN.
|
Returns a mapping between ifIndex and the VLAN.
|
||||||
|
|
||||||
=item $extreme->i_duplex()
|
=item $stack->bp_index()
|
||||||
|
|
||||||
Returns reference to hash of interface operational link duplex status.
|
Returns reference to hash of bridge port table entries map back to interface identifier (iid)
|
||||||
|
|
||||||
=item $extreme->i_duplex_admin()
|
Returns (B<ifIndex>) for both key and value since we're using EXTREME-FDB-MIB
|
||||||
|
rather than BRIDGE-MIB.
|
||||||
Returns reference to hash of interface administrative link duplex status.
|
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
@@ -286,8 +324,8 @@ Returns reference to hash of interface administrative link duplex status.
|
|||||||
|
|
||||||
See documentation in SNMP::Info::Layer3 for details.
|
See documentation in SNMP::Info::Layer3 for details.
|
||||||
|
|
||||||
=head2 Table Methods imported from SNMP::Info::SONMP
|
=head2 Table Methods imported from SNMP::Info::MAU
|
||||||
|
|
||||||
See documentation in SNMP::Info::SONMP for details.
|
See documentation in SNMP::Info::MAU for details.
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|||||||
Reference in New Issue
Block a user