diff --git a/ChangeLog b/ChangeLog index 35c0581e..3046115b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ SNMP::Info - Friendly OO-style interface to Network devices using SNMP. ChangeLog $Id$ version 1.0 () + + Added Interface FlowControl status to CiscoStack (Nicolai Petri) + Added CiscoImage class (Matthew Tuttle) + Added C1200 and C350 IOS devices to L2::Aironet (Matthew Tuttle) + Added support for Foundry IronWare and gave L3::Foundry CPR diff --git a/Info/CiscoStack.pm b/Info/CiscoStack.pm index a6d761cd..7e78e60d 100644 --- a/Info/CiscoStack.pm +++ b/Info/CiscoStack.pm @@ -93,6 +93,10 @@ use vars qw/$VERSION $DEBUG %MIBS %FUNCS %GLOBALS %MUNGE %PORTSTAT $INIT/; 'p_speed' => 'portAdminSpeed', 'p_duplex' => 'portDuplex', 'p_port' => 'portIfIndex', + 'p_rx_flow_control' => 'portOperRxFlowControl', + 'p_tx_flow_control' => 'portOperTxFlowControl', + 'p_rx_flow_control_admin' => 'portAdminRxFlowControl', + 'p_tx_flow_control_admin' => 'portAdminTxFlowControl', # CISCO-STACK-MIB::PortCpbEntry 'p_speed_admin' => 'portCpbSpeed', 'p_duplex_admin' => 'portCpbDuplex', @@ -540,6 +544,50 @@ To see the status of port 4 : (B) +=item $stack->p_rx_flow_control() + +Can be either C C or C + +"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)." + +B + +=item $stack->p_tx_flow_control() + +Can be either C C or C + +"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)." + +B + +=item $stack->p_rx_flow_control_admin() + +Can be either C C or C + +"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." + +B + +=item $stack->p_tx_flow_control_admin() + +Can be either C C or C + +"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." + +B + =back =head2 Port Capability Table (CISCO-STACK-MIB::portCpbTable)