|
NAMESNMP::Info::Layer2::Catalyst - SNMP Interface to Cisco Catalyst devices running Catalyst OS.AUTHORMax BakerSYNOPSIS# Let SNMP::Info determine the correct subclass for you. my $cat = new SNMP::Info( AutoSpecify => 1, Debug => 1, DestHost => 'myswitch', Community => 'public', Version => 2 ) or die "Can't connect to DestHost.\n"; my $class = $cat->class(); print "SNMP::Info determined this device to fall under subclass : $class\n"; DESCRIPTIONSNMP::Info subclass to provide information for Cisco Catalyst series switches running CatOS.This class includes the Catalyst 2920, 4000, 5000, 6000 (hybrid mode) families. This subclass is not for all devices that have the name Catalyst. Note that some Catalyst switches run IOS, like the 2900 and 3550 families. Cisco Catalyst 1900 switches use their own MIB and have a separate subclass. Use the method above to have SNMP::Info determine the appropriate subclass before using this class directly. See SNMP::Info::device_type() for specifics. Note: Some older Catalyst switches will only talk SNMP version 1. Some newer ones will not return all their data if connected via Version 1. For speed or debugging purposes you can call the subclass directly, but not after determining a more specific class using the method above. my $cat = new SNMP::Info::Layer2::Catalyst(...); Inherited Classes
Required MIBs
These MIBs are found in the standard v2 MIBs from Cisco. GLOBALSThese are methods that return scalar value from SNMP
Global Methods imported from SNMP::Info::Layer2::CiscoSee documentation in "GLOBALS" in SNMP::Info::Layer2::Cisco for details.Global Methods imported from SNMP::Info::CiscoStackSee documentation in "GLOBALS" in SNMP::Info::CiscoStack for details.TABLE METHODSThese are methods that return tables of information in the form of a reference to a hash.Overrides
Table Methods imported from SNMP::Info::Layer2::CiscoSee documentation in "TABLE METHODS" in SNMP::Info::Layer2::Cisco for details.Table Methods imported from SNMP::Info::CiscoStackSee documentation in "TABLE METHODS" in SNMP::Info::CiscoStack for details.
Visit the GSP FreeBSD Man Page Interface. |