- NAME
- AUTHOR
- SYNOPSIS
- DESCRIPTION
- GLOBALS
- Global Methods imported from SNMP::Info::CiscoVTP
- Global Methods imported from SNMP::Info::CiscoStack
- Globals imported from SNMP::Info::CDP
- Globals imported from SNMP::Info::CiscoStats
- Globals imported from SNMP::Info::CiscoImage
- Globals imported from SNMP::Info::CiscoPortSecurity
- Globals imported from SNMP::Info::CiscoConfig
- Globals imported from SNMP::Info::CiscoPower
- Globals imported from SNMP::Info::Layer3
- Globals imported from SNMP::Info::CiscoStpExtensions
- TABLE METHODS
- Overrides
- Table Methods imported from SNMP::Info::CiscoVTP
- Table Methods imported from SNMP::Info::CiscoStack
- Table Methods imported from SNMP::Info::CDP
- Table Methods imported from SNMP::Info::CiscoStats
- Table Methods imported from SNMP::Info::CiscoImage
- Table Methods imported from SNMP::Info::CiscoPortSecurity
- Table Methods imported from SNMP::Info::CiscoConfig
- Table Methods imported from SNMP::Info::CiscoPower
- Table Methods imported from SNMP::Info::CiscoStpExtensions
- Table Methods imported from SNMP::Info::Layer3
NAME
SNMP::Info::Layer3::C6500 - SNMP Interface to Cisco Catalyst 6500 Layer 2/3 Switches running IOS and/or CatOS
AUTHOR
Max Baker
SYNOPSIS
# 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";
DESCRIPTION
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.
For speed or debugging purposes you can call the subclass directly, but not after determining a more specific class using the method above.
my $c6500 = new SNMP::Info::Layer3::C6500(...);
Inherited Classes
- SNMP::Info::CiscoVTP
- SNMP::Info::CiscoStack
- SNMP::Info::CDP
- SNMP::Info::CiscoStats
- SNMP::Info::CiscoImage
- SNMP::Info::CiscoPortSecurity
- SNMP::Info::CiscoConfig
- SNMP::Info::CiscoPower
- SNMP::Info::Layer3
- SNMP::Info::CiscoStpExtensions
- SNMP::Info::CiscoStack
Required MIBs
- Inherited Classes' MIBs
-
See Required MIBs in the SNMP::Info::CiscoVTP manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoStack manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CDP manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoStats manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoImage manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoPortSecurity manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoConfig manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoPower manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::Layer3 manpage for its own MIB requirements.
-
See Required MIBs in the SNMP::Info::CiscoStpExtensions manpage for its own MIB requirements.
GLOBALS
These are methods that return scalar value from SNMP
- $c6500->
vendor() -
Returns 'cisco' - $c6500->
cisco_comm_indexing() -
Returns 1. Use vlan indexing.
Global Methods imported from SNMP::Info::CiscoVTP
See documentation in GLOBALS in the SNMP::Info::CiscoVTP manpage for details.
Global Methods imported from SNMP::Info::CiscoStack
See documentation in GLOBALS in the SNMP::Info::CiscoStack manpage for details.
Globals imported from SNMP::Info::CDP
See documentation in GLOBALS in the SNMP::Info::CDP manpage for details.
Globals imported from SNMP::Info::CiscoStats
See documentation in GLOBALS in the SNMP::Info::CiscoStats manpage for details.
Globals imported from SNMP::Info::CiscoImage
See documentation in GLOBALS in the SNMP::Info::CiscoImage manpage for details.
Globals imported from SNMP::Info::CiscoPortSecurity
See documentation in GLOBALS in the SNMP::Info::CiscoPortSecurity manpage for details.
Globals imported from SNMP::Info::CiscoConfig
See documentation in GLOBALS in the SNMP::Info::CiscoConfig manpage for details.
Globals imported from SNMP::Info::CiscoPower
See documentation in GLOBALS in the SNMP::Info::CiscoPower manpage for details.
Globals imported from SNMP::Info::Layer3
See documentation in GLOBALS in the SNMP::Info::Layer3 manpage for details.
Globals imported from SNMP::Info::CiscoStpExtensions
See documentation in GLOBALS in the SNMP::Info::CiscoStpExtensions manpage for details.
TABLE METHODS
These are methods that return tables of information in the form of a reference to a hash.
Overrides
- $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 the SNMP::Info::Etherlike manpage for
el_duplex()method and the SNMP::Info::CiscoStack manpage for itsi_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 the SNMP::Info::CiscoStack manpage for its
i_duplex()andp_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 portifIndex. -
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);
Table Methods imported from SNMP::Info::CiscoVTP
See documentation in TABLE METHODS in the SNMP::Info::CiscoVTP manpage for details.
Table Methods imported from SNMP::Info::CiscoStack
See documentation in TABLE METHODS in the SNMP::Info::CiscoStack manpage for details.
Table Methods imported from SNMP::Info::CDP
See documentation in TABLE METHODS in the SNMP::Info::CDP manpage for details.
Table Methods imported from SNMP::Info::CiscoStats
See documentation in TABLE METHODS in the SNMP::Info::CiscoStats manpage for details.
Table Methods imported from SNMP::Info::CiscoImage
See documentation in TABLE METHODS in the SNMP::Info::CiscoImage manpage for details.
Table Methods imported from SNMP::Info::CiscoPortSecurity
See documentation in TABLE METHODS in the SNMP::Info::CiscoPortSecurity manpage for details.
Table Methods imported from SNMP::Info::CiscoConfig
See documentation in TABLE METHODS in the SNMP::Info::CiscoConfig manpage for details.
Table Methods imported from SNMP::Info::CiscoPower
See documentation in TABLE METHODS in the SNMP::Info::CiscoPower manpage for details.
Table Methods imported from SNMP::Info::CiscoStpExtensions
Table Methods imported from SNMP::Info::Layer3
See documentation in TABLE METHODS in the SNMP::Info::Layer3 manpage for details.
See documentation in TABLE METHODS in the SNMP::Info::CiscoStpExtensions manpage for details.
