Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

snmp::info::layer2::foundry(3pm) [debian man page]

Info::Layer2::Foundry(3pm)				User Contributed Perl Documentation				Info::Layer2::Foundry(3pm)

NAME
SNMP::Info::Layer2::Foundry - SNMP Interface to Foundry FastIron Network Devices AUTHOR
Max Baker SYNOPSIS
This module is Deprecated. Please use Layer3::Foundry instead. # Let SNMP::Info determine the correct subclass for you. my $foundry = new SNMP::Info( AutoSpecify => 1, Debug => 1, DestHost => 'myswitch', Community => 'public', Version => 1 ) or die "Can't connect to DestHost. "; my $class = $foundry->class(); print "SNMP::Info determined this device to fall under subclass : $class "; DESCRIPTION
This module is Deprecated. Please use Layer3::Foundry instead. This module provides support for Foundry EdgeIron Switches Inherited Classes SNMP::Info::Layer2 SNMP::Info::FDP Required MIBs FOUNDRY-SN-ROOT-MIB Inherited Classes' MIBs See classes listed above for their required MIBs. GLOBALS
These are methods that return scalar value from SNMP $foundry->model() Returns model type. $foundry->vendor() Returns 'foundry' $foundry->os() Returns 'foundry' $foundry->os_ver() Returns the software version $foundry->serial() Returns the serial number Globals imported from SNMP::Info::Layer2 See documentation in "GLOBALS" in SNMP::Info::Layer2 for details. Globals imported from SNMP::Info::FDP See documentation in "GLOBALS" in SNMP::Info::FDP for details. TABLE METHODS
These are methods that return tables of information in the form of a reference to a hash. Overrides $foundry->interfaces() Returns reference to hash of interface names to iids. $foundry->i_ignore() Returns reference to hash of interfaces to be ignored. Ignores interfaces with descriptions of tunnel,loopback,null $foundry->i_duplex() Returns reference to hash of interface link duplex status. Crosses $foundry->sw_duplex() with $foundry->sw_index() $foundry->i_duplex_admin() Returns reference to hash of interface administrative duplex status. $foundry->stp_p_state() "The port's current state as defined by application of the Spanning Tree Protocol. Skipped if device is an EdgeIron 24G due to reports of hangs. ("dot1dStpPortState") $foundry->i_vlan() Returns a mapping between "ifIndex" and the PVID or default VLAN. Table Methods imported from SNMP::Info::Layer2 See documentation in "TABLE METHODS" in SNMP::Info::Layer2 for details. Table Methods imported from SNMP::Info::FDP See documentation in "TABLE METHODS" in SNMP::Info::FDP for details. perl v5.12.4 2011-09-28 Info::Layer2::Foundry(3pm)

Check Out this Related Man Page

Info::Layer2::HPVC(3pm) 				User Contributed Perl Documentation				   Info::Layer2::HPVC(3pm)

NAME
SNMP::Info::Layer2::HPVC - SNMP Interface to HP VirtualConnect Switches AUTHOR
Jeroen van Ingen SYNOPSIS
# Let SNMP::Info determine the correct subclass for you. my $hp = new SNMP::Info( AutoSpecify => 1, Debug => 1, DestHost => 'myswitch', Community => 'public', Version => 2 ) or die "Can't connect to DestHost. "; my $class = $hp->class(); print "SNMP::Info determined this device to fall under subclass : $class "; DESCRIPTION
Provides abstraction to the configuration information obtainable from a HP VirtualConnect Switch via SNMP. For speed or debugging purposes you can call the subclass directly, but not after determining a more specific class using the method above. my $hp = new SNMP::Info::Layer2::HPVC(...); Inherited Classes SNMP::Info::Layer2 Required MIBs HPVC-MIB CPQSINFO-MIB HPVCMODULE-MIB All required MIBs can be found in the netdisco-mibs package. GLOBALS
These are methods that return scalar value from SNMP $hp->os() Returns hpvc $hp->os_bin() "cpqHoFwVerVersion.1" $hp->os_ver() "cpqHoSWRunningVersion.1" $hp->serial() "cpqSiSysSerialNum.0" $hp->vendor() hp $hp->model() "cpqSiProductName.0" Globals imported from SNMP::Info::Layer2 See documentation in "GLOBALS" in SNMP::Info::Layer2 for details. TABLE METHODS
These are methods that return tables of information in the form of a reference to a hash. Overrides Table Methods imported from SNMP::Info::Layer2 See documentation in "TABLE METHODS" in SNMP::Info::Layer2 for details. MUNGES
SET METHODS
These are methods that provide SNMP set functionality for overridden methods or provide a simpler interface to complex set operations. See "SETTING DATA VIA SNMP" in SNMP::Info for general information on set operations. perl v5.12.4 2011-09-28 Info::Layer2::HPVC(3pm)
Man Page