SNMP::Info::Layer3::C6500 - SNMP Interface to Cisco Catalyst 6500 Layer 2/3
Switches running IOS and/or CatOS. Also Cisco Catalyst 2960, 2970, 3750 and
3850 series and blade switch CBS30x0 and CBS31x0 series running IOS.
# Let SNMP::Info determine the correct subclass for you.
my $c6500 = new SNMP::Info(
AutoSpecify => 1,
Debug => 1,
# These arguments are passed directly to SNMP::Session
DestHost => 'myswitch',
Community => 'public',
Version => 2
)
or die "Can't connect to DestHost.\n";
my $class = $c6500->class();
print "SNMP::Info determined this device to fall under subclass : $class\n";
Abstraction subclass for Cisco Catalyst 6500 Layer 2/3 Switches.
These devices run IOS but have some of the same characteristics as
the Catalyst WS-C family (5xxx). For example, forwarding tables are held in
VLANs, and extended interface information is gleaned from
CISCO-SWITCH-MIB.
It also supports the following IOS only series switches: Cisco
Catalyst 2960, 2970, 3750 and 3850 series. Also blade switches from the
CBS30x0 and CBS31x0 series.
- SNMP::Info::CiscoStack
- SNMP::Info::Layer3::CiscoSwitch
- SNMP::Info::MAU
- CISCO-VIRTUAL-SWITCH-MIB
- Inherited Classes' MIBs
- See "Required MIBs" in SNMP::Info::CiscoStack for its own MIB
requirements.
See "Required MIBs" in
SNMP::Info::Layer3::CiscoSwitch for its own MIB requirements.
See "Required MIBs" in SNMP::Info::MAU for its own
MIB requirements.
These are methods that return scalar value from SNMP
- $c6500->vendor()
- Returns 'cisco'
- $c6500->cvsSwitchMode()
- Returns the Switch status: multiNode or standalone.
- $c6500->is_virtual_switch()
- Return 1 if the switch ("cvsSwitchMode")
is in multimode (VSS).
- $c6500->serial()
- Returns serial number of unit (falls back to
"entPhysicalSerialNum").
See documentation in "GLOBALS" in SNMP::Info::CiscoStack for details.
See documentation in "GLOBALS" in SNMP::Info::Layer3::CiscoSwitch for
details.
See documentation in "GLOBALS" in SNMP::Info::MAU for details.
These are methods that return tables of information in the form of a reference
to a hash.
- $c6500->i_duplex()
- Returns reference to hash of iid to current link duplex setting.
Newer software versions return duplex based upon the result of
$c6500->el_duplex(). Otherwise it uses
the result of the call to CiscoStack::i_duplex().
See SNMP::Info::EtherLike for el_duplex() method and
SNMP::Info::CiscoStack for its i_duplex() method.
- $c6500->i_duplex_admin()
- Returns reference to hash of iid to administrative duplex setting.
Newer software versions return duplex based upon the result of
$c6500->p_duplex(). Otherwise it uses
the result of the call to CiscoStack::i_duplex().
See SNMP::Info::CiscoStack for its i_duplex() and
p_duplex() methods.
- $c6500->set_i_duplex_admin(duplex, ifIndex)
- Sets port duplex, must be supplied with duplex and port
"ifIndex".
Speed choices are 'auto', 'half', 'full'.
Crosses $c6500->p_port()
with $c6500->p_duplex() to utilize
port "ifIndex".
Example:
my %if_map = reverse %{$c6500->interfaces()};
$c6500->set_i_duplex_admin('auto', $if_map{'FastEthernet0/1'})
or die "Couldn't change port duplex. ",$c6500->error(1);
- $c6500->set_i_speed_admin(speed, ifIndex)
- Sets port speed, must be supplied with speed and port
"ifIndex".
Speed choices are '10', '100', '1000'.
Crosses $c6500->p_port()
with $c6500->p_speed() to utilize port
"ifIndex".
See documentation in "TABLE METHODS" in SNMP::Info::CiscoStack for
details.
See documentation in "TABLE METHODS" in
SNMP::Info::Layer3::CiscoSwitch for details.
See documentation in "TABLE METHODS" in SNMP::Info::MAU for details.