CISCO-STACK-MIB::portTable
)CISCO-STACK-MIB::portCpbTable
)
SNMP::Info::CiscoStack - SNMP Interface to data from CISCO-STACK-MIB and CISCO-PORT-SECURITY-MIB
Max Baker
# Let SNMP::Info determine the correct subclass for you. my $ciscostats = new SNMP::Info( AutoSpecify => 1, Debug => 1, DestHost => 'myswitch', Community => 'public', Version => 2 ) or die "Can't connect to DestHost.\n";
my $class = $ciscostats->class(); print "SNMP::Info determined this device to fall under subclass : $class\n";
SNMP::Info::CiscoStack is a subclass of SNMP::Info that provides
an interface to the CISCO-STACK-MIB
. This MIB is used across
the Catalyst family under CatOS and IOS.
Use or create in a subclass of SNMP::Info. Do not use directly.
none.
broadcast()
(sysBroadcast
)
fan()
(chassisFanStatus
)
model()
(chassisModel
)
netmask()
(sysNetMask
)
ps1_type()
(chassisPs1Type
)
ps2_type()
(chassisPs2Type
)
ps1_status()
(chassisPs1Status
)
ps2_status()
(chassisPs2Status
)
serial()
(chassisSerialNumberString
) or (chassisSerialNumber
)
slots()
(chassisNumSlots
)
i_physical()
Returns a map to IID for ports that are physical ports, not vlans, etc.
i_type()
Overrides with ifType
if p_type()
isn't available.
i_duplex()
Returns reference to hash of iid to current link duplex setting.
First checks for fixed gigabit ports which are always full duplex. Next, if
the port is not operational and reported port duplex (portDuplex
) is auto
then the operational duplex can not be determined. Otherwise it uses the
reported port duplex (portDuplex
).
i_duplex_admin()
Returns reference to hash of iid to administrative duplex setting.
First checks for fixed gigabit ports which are always full duplex. Next checks
the port administrative speed (portAdminSpeed
) which if set to
autonegotiate then the duplex will also autonegotiate, otherwise it uses the
reported port duplex (portDuplex
).
i_speed_admin()
Returns reference to hash of iid to administrative speed setting.
portAdminSpeed
Sets port speed, must be supplied with speed and port C<ifIndex>
Speed choices are 'auto', '10', '100', '1000'
Crosses $stack->p_port() with $stack->p_duplex() to utilize port C<ifIndex>.
Example: my %if_map = reverse %{$stack->interfaces()}; $stack->set_i_speed_admin('auto', $if_map{'FastEthernet0/1'}) or die "Couldn't change port speed. ",$stack->error(1);
Sets port duplex, must be supplied with duplex and port C<ifIndex>
Speed choices are 'auto', 'half', 'full'
Crosses $stack->p_port() with $stack->p_duplex() to utilize port C<ifIndex>.
Example: my %if_map = reverse %{$stack->interfaces()}; $stack->set_i_duplex_admin('auto', $if_map{'FastEthernet0/1'}) or die "Couldn't change port duplex. ",$stack->error(1);
This table holds configuration information for each of the blades installed in the Catalyst device.
m_type()
(moduleType
)
m_model()
(moduleModel
)
m_serial()
(moduleSerialNumber
)
m_status()
(moduleStatus
)
m_name()
(moduleName
)
m_ports()
(moduleNumPorts
)
m_ports_status()
Returns a list of space separated status strings for the ports.
To see the status of port 4 :
@ports_status = split(' ', $stack->m_ports_status() ); $port4 = $ports_status[3];
(modulePortStatus
)
m_ports_hwver()
(moduleHwVersion
)
m_ports_fwver()
(moduleFwVersion
)
m_ports_swver()
(moduleSwVersion
)
m_ports_ip()
(moduleIPAddress
)
m_ports_sub1()
(moduleSubType
)
m_ports_sub2()
(moduleSubType2
)
m_ip()
(moduleIPAddress
)
m_sub1()
(moduleSubType
)
m_sub2()
(moduleSubType2
)
CISCO-STACK-MIB::portTable
)p_name()
(portName
)
p_type()
(portType
)
p_status()
(portOperStatus
)
p_status2()
(portAdditionalStatus
)
p_speed()
(portAdminSpeed
)
p_duplex()
(portDuplex
)
p_port()
(portIfIndex
)
p_rx_flow_control()
Can be either on
off
or disagree
``Indicates the receive flow control operational status of the port. If the port could not agree with the far end on a link protocol, its operational status will be disagree(3).''
portOperRxFlowControl
p_tx_flow_control()
Can be either on
off
or disagree
``Indicates the transmit flow control operational status of the port. If the port could not agree with the far end on a link protocol, its operational status will be disagree(3).''
portOperTxFlowControl
p_rx_flow_control_admin()
Can be either on
off
or desired
``Indicates the receive flow control administrative status set on the port. If the status is set to on(1), the port will require the far end to send flow control. If the status is set to off(2), the port will not allow far end to send flow control. If the status is set to desired(3), the port will allow the far end to send the flow control.''
portAdminRxFlowControl
p_tx_flow_control_admin()
Can be either on
off
or desired
``Indicates the transmit flow control administrative status set on the port. If the status is set to on(1), the port will send flow control to the far end. If the status is set to off(2), the port will not send flow control to the far end. If the status is set to desired(3), the port will send flow control to the far end if the far end supports it.''
portAdminTxFlowControl
CISCO-STACK-MIB::portCpbTable
)p_speed_admin()
(portCpbSpeed
)
p_duplex_admin()
(portCpbDuplex
)
munge_port_status()
Munges binary byte describing each port into ascii, and returns an ascii list separated by spaces.