
SNMP::Info::Layer2::Centillion - SNMP Interface to Nortel Centillion based ATM Switches

Eric Miller

# Let SNMP::Info determine the correct subclass for you.
my $centillion = new SNMP::Info(
AutoSpecify => 1,
Debug => 1,
DestHost => 'myswitch',
Community => 'public',
Version => 2
)
or die "Can't connect to DestHost.\n";
my $class = $centillion->class();
print "SNMP::Info determined this device to fall under subclass : $class\n";

Provides abstraction to the configuration information obtainable from a Centillion device through 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 $centillion = new SNMP::Info::Layer2::centillion(...);
Note: This class supports version 4.X and 5.X which are VLAN based rather than bridge group based.
See "Required MIBs" in SNMP::Info for its own MIB requirements.
See "Required MIBs" in SNMP::Info::Bridge for its own MIB requirements.
See "Required MIBs" in SNMP::Info::NortelStack for its own MIB requirements.
See "Required MIBs" in SNMP::Info::SONMP for its own MIB requirements.

These are methods that return scalar value from SNMP
Returns 'Nortel'
Cross references $centillion->id() to the SYNOPTICS-MIB and returns the results.
Removes sreg- from the model name
Returns 'Centillion'
(sysTFTPStart)
(sysTFTPIpAddress)
(sysTFTPFileName)
(sysTFTPFileType)
(sysTFTPResult)
Returns 00000011. Class emulates Layer 2 functionality through proprietary MIBs.
Required by SNMP::Info::SONMP. Number representing the number of ports reserved per slot within the device MIB. Returns 256.
Required by SNMP::Info::SONMP. Offset if slot numbering does not start at 0. Returns 0.
See documentation in "GLOBALS" in SNMP::Info for details.
See documentation in "GLOBALS" in SNMP::Info::Bridge for details.
See documentation in "GLOBALS" in SNMP::Info::NortelStack for details.
See documentation in "GLOBALS" in SNMP::Info::SONMP for details.

These are methods that return tables of information in the form of a reference to a hash.
Returns reference to the map between IID and physical Port.
Slot and port numbers on the Passport switches are determined by the
formula:
port = index % 256
slot = int(index / 256)
The physical port name is returned as slot.port.
Returns reference to map of IIDs to current link duplex
Returns reference to hash of IIDs to admin duplex setting
Returns reference to hash of IIDs to ignore.
(s5CmSNodeMacAddr)
(s5CmSNodeIfIndx)
Returns a mapping between ifIndex and the Bridge Table.
Returns a mapping between ifIndex and the VLAN.
cnDot3ExtnTable)Returns reference to hash. Maps table IIDs to Interface IIDs
(cnDot3ExtnIfIndex)
Returns reference to hash. Maps port operational duplexes to IIDs
(cnDot3ExtnIfOperConnectionType)
Returns reference to hash. Maps port admin duplexes to IIDs
(cnDot3ExtnIfAdminConnectionType)
cnVlanPortMemberTable)Returns reference to hash. Key: Table entry, Value: Index
(cnVlanPortMemberIfIndex)
Returns reference to hash. Key: Table entry, Value: VLAN ID
(cnVlanPortMemberVID)
Returns reference to hash. Key: Table entry, Value: VLAN Type
(cnVlanPortMemberIngressType)
See documentation in "TABLE METHODS" in SNMP::Info for details.
See documentation in "TABLE METHODS" in SNMP::Info::Bridge for details.
See documentation in "TABLE METHODS" in SNMP::Info::NortelStack for details.
See documentation in "TABLE METHODS" in SNMP::Info::SONMP for details.