-- ----------------------------------------------------------------------------- -- -- Title: PFA Frame Relay (FR) MIB -- -- Doc. Number: EBC/C/0159 -- -- Revision: E -- -- Authors: Satish Popat (satish@terminus.ericsson.se) -- Clive Jarvis (clive@terminus.ericsson.se) -- -- Date: 8th April 1998 -- -- Approved: Satish Popat -- -- Description -- -- PFA FR MIB is in two parts. The first part is a read-only -- implementation of the objects, except for frCircuitDiscards, -- specified in draft-ietf-iplpdn-frmib-dte-03.txt (successor -- to RFC 1315) for the FR DTE interfaces. The second part, -- specified in here, provide enterprise-specific objects related -- to the PFA Frame Relay DTE and DCE interfaces. The MIB objects -- related to X.25/X.75 over FR operations can be found in the PFA -- Packet Switching MIB. -- -- The SNMP objects here all relate to the PFA interface objects -- which transmit and receive Frame Relay frames: -- -- FR-PP Physical Port configured for Frame Relay -- VP Virtual Port configured to carry Frame Relay -- over ATM. -- -- -- ****NOTES: -- -- -- 1. PFA Statistics counters have a maximum value of 2^31 - 1. -- Bit 32 will set to 1 if the counter value has wrapped. -- -- -- ----------------------------------------------------------------------------- Ericsson-Eripax-Access-FR-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE FROM RFC-1212 pfaFR, PfaPortNumber FROM Ericsson-Eripax-Access-MIB; pfaFRPhysical OBJECT IDENTIFIER ::= {pfaFR 1} pfaFRVirtual OBJECT IDENTIFIER ::= {pfaFR 2} -- ----------------------------------------------------------------------------- -- Physical Port (Frame Relay) Statistics Table -- -- ----------------------------------------------------------------------------- ppFRStatsTable OBJECT-TYPE SYNTAX SEQUENCE OF PPFRStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "This table provides operational statistics specific to a PP object configured for FR operations." REFERENCE "STPP" ::= { pfaFRPhysical 2 } ppFRStatsEntry OBJECT-TYPE SYNTAX PPFRStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Physical Port Object (FR) Statistics Entry." REFERENCE "30" INDEX { ppFRStatsPortNumber } ::= { ppFRStatsTable 1 } PPFRStatsEntry ::= SEQUENCE { ppFRStatsPortNumber PfaPortNumber, ppFRStatsTotalPVCs INTEGER, ppFRTransmitUnderrunErrs INTEGER, ppFRReceiveOverrunErrs INTEGER, ppFRFCSErrs INTEGER, ppFRFCSHourlyRate INTEGER, ppFRMemoryErrs INTEGER, ppFRTransmitDiscarded INTEGER, ppFROverlengthFrames INTEGER, ppFRFramesReceived INTEGER, ppFRFramesSent INTEGER, ppFROctetsReceived INTEGER, ppFROctetsSent INTEGER, ppFRFramesPerMinIn INTEGER, ppFRFramesPerMinOut INTEGER, ppFROctetsPerMinIn INTEGER, ppFROctetsPerMinOut INTEGER, ppFRFECNReceived INTEGER, ppFRFECNSet INTEGER, ppFRBECNReceived INTEGER, ppFRBECNSet INTEGER, ppFRDEReceived INTEGER, ppFRFramesOverCIRRecd INTEGER, ppFRFramesOverCIRSent INTEGER, ppFRFramesOverEIRRecd INTEGER, ppFRFramesOverEIRDiscarded INTEGER, ppFROctetsOverCIRRecd INTEGER, ppFROctetsOverCIRSent INTEGER, ppFROctetsOverEIRRecd INTEGER, ppFROctetsOverEIRDiscarded INTEGER } ppFRStatsPortNumber OBJECT-TYPE SYNTAX PfaPortNumber ACCESS read-only STATUS mandatory DESCRIPTION "Port Number identifying the Frame Relay PP object." REFERENCE "PP" ::= { ppFRStatsEntry 1 } ppFRStatsTotalPVCs OBJECT-TYPE SYNTAX INTEGER (0..500) ACCESS read-only STATUS mandatory DESCRIPTION "Total number of Permanent Virtual Circuits (PVCs) currently active on the port." REFERENCE "total_pvcs" ::= {ppFRStatsEntry 2} ppFRTransmitUnderrunErrs OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames that failed to be transmitted on the port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test' because data was not available to the transmitter in time." REFERENCE "underruns" ::= {ppFRStatsEntry 3} ppFRReceiveOverrunErrs OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames that failed to be received on the port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test' because the receiver did not accept the data in time." REFERENCE "overruns" ::= {ppFRStatsEntry 4} ppFRFCSErrs OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames with an invalid frame check sequence, input from the port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "fcs_total" ::= {ppFRStatsEntry 5} ppFRFCSHourlyRate OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "The rate of FCS errors over the last hour" REFERENCE "fcs_hour" ::= {ppFRStatsEntry 6} ppFRMemoryErrs OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames discarded on the port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test' because of the lack of buffer space for the frames." REFERENCE "mem_err" ::= {ppFRStatsEntry 7} ppFRTransmitDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames not transmitted on the port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test' because outgoing queue was full on the port." REFERENCE "tx_discarded" ::= {ppFRStatsEntry 8} ppFROverlengthFrames OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of overlength frames received on the port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test." REFERENCE "rx_overlength" ::= {ppFRStatsEntry 9} ppFRFramesReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "rx_frames" ::= {ppFRStatsEntry 10} ppFRFramesSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames transmitted from this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "tx_frames" ::= {ppFRStatsEntry 11} ppFROctetsReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received on this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "rx_octets" ::= {ppFRStatsEntry 12} ppFROctetsSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets transmitted from this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "tx_octets" ::= {ppFRStatsEntry 13} ppFRFramesPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute received on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_IN_PM" ::= {ppFRStatsEntry 14} ppFRFramesPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute transmitted from this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_OUT_PM" ::= {ppFRStatsEntry 15} ppFROctetsPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute received on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "OCTETS_IN_PM" ::= {ppFRStatsEntry 16} ppFROctetsPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute transmitted from this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "OCTETS_OUT_PM" ::= {ppFRStatsEntry 17} ppFRFECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN received on this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "fecn_rx" ::= {ppFRStatsEntry 18} ppFRFECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN set on this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "set_fecn" ::= {ppFRStatsEntry 19} ppFRBECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN received on this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "becn_rx" ::= {ppFRStatsEntry 20} ppFRBECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN set on this port since PP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "set_becn" ::= {ppFRStatsEntry 21} ppFRDEReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of Discard Eligibility (DE) frames received on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "de_rx" ::= {ppFRStatsEntry 22} ppFRFramesOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded CIR on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_cir" ::= {ppFRStatsEntry 23} ppFRFramesOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames over CIR transmitted from this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_cir" ::= {ppFRStatsEntry 24} ppFRFramesOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded EIR on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_eir" ::= {ppFRStatsEntry 25} ppFRFramesOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit frames discarded on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_eir" ::= {ppFRStatsEntry 26} ppFROctetsOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded CIR on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_cir" ::= {ppFRStatsEntry 27} ppFROctetsOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets over CIR transmitted from this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_cir" ::= {ppFRStatsEntry 28} ppFROctetsOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded EIR on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_eir" ::= {ppFRStatsEntry 29} ppFROctetsOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit octets discarded on this port since PP initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_eir" ::= {ppFRStatsEntry 30} -- ----------------------------------------------------------------------------- -- Per Frame Relay PVC (DLCI) Statistics Table -- -- ----------------------------------------------------------------------------- ppDLCIStatsTable OBJECT-TYPE SYNTAX SEQUENCE OF PPDLCIStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "For every row in ppFRStatsTable, one or more entry may be available in this table to give operational statistics specific to a DLCI configured on the port." REFERENCE "STPP" ::= { pfaFRPhysical 4 } ppDLCIStatsEntry OBJECT-TYPE SYNTAX PPDLCIStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Per FR DLCI Statistics Entry." REFERENCE "23" INDEX { ppDLCIStatsPortNumber, ppDLCI } ::= { ppDLCIStatsTable 1 } PPDLCIStatsEntry ::= SEQUENCE { ppDLCIStatsPortNumber PfaPortNumber, ppDLCI INTEGER (1..1024), ppDLCIFramesReceived INTEGER, ppDLCIFramesSent INTEGER, ppDLCIOctetsReceived INTEGER, ppDLCIOctetsSent INTEGER, ppDLCIFramesPerMinIn INTEGER, ppDLCIFramesPerMinOut INTEGER, ppDLCIOctetsPerMinIn INTEGER, ppDLCIOctetsPerMinOut INTEGER, ppDLCIFECNReceived INTEGER, ppDLCIFECNSet INTEGER, ppDLCIBECNReceived INTEGER, ppDLCIBECNSet INTEGER, ppDLCIDEReceived INTEGER, ppDLCIFramesOverCIRRecd INTEGER, ppDLCIFramesOverCIRSent INTEGER, ppDLCIFramesOverEIRRecd INTEGER, ppDLCIFramesOverEIRDiscarded INTEGER, ppDLCIOctetsOverCIRRecd INTEGER, ppDLCIOctetsOverCIRSent INTEGER, ppDLCIOctetsOverEIRRecd INTEGER, ppDLCIOctetsOverEIRDiscarded INTEGER } ppDLCIStatsPortNumber OBJECT-TYPE SYNTAX PfaPortNumber ACCESS read-only STATUS mandatory DESCRIPTION "Port Number identifying the Frame Relay PP object." REFERENCE "PP" ::= { ppDLCIStatsEntry 1 } ppDLCI OBJECT-TYPE SYNTAX INTEGER (1..1024) ACCESS read-only STATUS mandatory DESCRIPTION "DLCI number identifying the Frame Relay PVC." REFERENCE "DLCI" ::= { ppDLCIStatsEntry 2 } ppDLCIFramesReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "frames_rx" ::= {ppDLCIStatsEntry 3} ppDLCIFramesSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "frames_tx" ::= {ppDLCIStatsEntry 4} ppDLCIOctetsReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "octets_rx" ::= {ppDLCIStatsEntry 5} ppDLCIOctetsSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "octets_tx" ::= {ppDLCIStatsEntry 6} ppDLCIFramesPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_PER_MIN_IN" ::= {ppDLCIStatsEntry 7} ppDLCIFramesPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_PER_MIN_OUT" ::= {ppDLCIStatsEntry 8} ppDLCIOctetsPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "OCTETS_PER_MIN_IN" ::= {ppDLCIStatsEntry 9} ppDLCIOctetsPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. " REFERENCE "OCTETS_PER_MIN_OUT" ::= {ppDLCIStatsEntry 10} ppDLCIFECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "fecn_rx" ::= {ppDLCIStatsEntry 11} ppDLCIFECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN set on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "set_fecn" ::= {ppDLCIStatsEntry 12} ppDLCIBECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN Received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "becn_tx" ::= {ppDLCIStatsEntry 13} ppDLCIBECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN set on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "set_becn" ::= {ppDLCIStatsEntry 14} ppDLCIDEReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of Discard Eligibility (DE) frames received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "de_rx" ::= {ppDLCIStatsEntry 15} ppDLCIFramesOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded CIR on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_cir" ::= {ppDLCIStatsEntry 16} ppDLCIFramesOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames over CIR transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_cir" ::= {ppDLCIStatsEntry 17} ppDLCIFramesOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded EIR on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_eir" ::= {ppDLCIStatsEntry 18} ppDLCIFramesOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit frames on this DLCI discarded since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_eir" ::= {ppDLCIStatsEntry 19} ppDLCIOctetsOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded CIR on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_cir" ::= {ppDLCIStatsEntry 20} ppDLCIOctetsOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets over CIR transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_cir" ::= {ppDLCIStatsEntry 21} ppDLCIOctetsOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded EIR on this port since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_eir" ::= {ppDLCIStatsEntry 22} ppDLCIOctetsOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit octets discarded on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_eir" ::= {ppDLCIStatsEntry 23} -- ----------------------------------------------------------------------------- -- END OF FR PP -- ----------------------------------------------------------------------------- -- ----------------------------------------------------------------------------- -- Virtual Port (Frame Relay) Statistics Table -- -- ----------------------------------------------------------------------------- vpFRStatsTable OBJECT-TYPE SYNTAX SEQUENCE OF VPFRStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "This table provides operational statistics specific to a VP object configured for FR operations." REFERENCE "STVP" ::= { pfaFRVirtual 2 } vpFRStatsEntry OBJECT-TYPE SYNTAX VPFRStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Virtual Port Object (FR) Statistics Entry." REFERENCE "23" INDEX { vpFRStatsPortNumber } ::= { vpFRStatsTable 1 } VPFRStatsEntry ::= SEQUENCE { vpFRStatsPortNumber PfaPortNumber, vpFRStatsTotalPVCs INTEGER, vpFRFramesReceived INTEGER, vpFRFramesSent INTEGER, vpFROctetsReceived INTEGER, vpFROctetsSent INTEGER, vpFRFramesPerMinIn INTEGER, vpFRFramesPerMinOut INTEGER, vpFROctetsPerMinIn INTEGER, vpFROctetsPerMinOut INTEGER, vpFRFECNReceived INTEGER, vpFRFECNSet INTEGER, vpFRBECNReceived INTEGER, vpFRBECNSet INTEGER, vpFRDEReceived INTEGER, vpFRFramesOverCIRRecd INTEGER, vpFRFramesOverCIRSent INTEGER, vpFRFramesOverEIRRecd INTEGER, vpFRFramesOverEIRDiscarded INTEGER, vpFROctetsOverCIRRecd INTEGER, vpFROctetsOverCIRSent INTEGER, vpFROctetsOverEIRRecd INTEGER, vpFROctetsOverEIRDiscarded INTEGER } vpFRStatsPortNumber OBJECT-TYPE SYNTAX PfaPortNumber ACCESS read-only STATUS mandatory DESCRIPTION "Port Number identifying the Frame Relay VP object." REFERENCE "VP" ::= { vpFRStatsEntry 1 } vpFRStatsTotalPVCs OBJECT-TYPE SYNTAX INTEGER (0..500) ACCESS read-only STATUS mandatory DESCRIPTION "Total number of Permanent Virtual Circuits (PVCs) currently active on the port." REFERENCE "total_pvcs" ::= {vpFRStatsEntry 2} vpFRFramesReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "rx_frames" ::= {vpFRStatsEntry 3} vpFRFramesSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames transmitted from this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "tx_frames" ::= {vpFRStatsEntry 4} vpFROctetsReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received on this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "rx_octets" ::= {vpFRStatsEntry 5} vpFROctetsSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets transmitted from this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "tx_octets" ::= {vpFRStatsEntry 6} vpFRFramesPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute received on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_IN_PM" ::= {vpFRStatsEntry 7} vpFRFramesPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute transmitted from this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_OUT_PM" ::= {vpFRStatsEntry 8} vpFROctetsPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute received on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "OCTETS_IN_PM" ::= {vpFRStatsEntry 9} vpFROctetsPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute transmitted from this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "OCTETS_OUT_PM" ::= {vpFRStatsEntry 10} vpFRFECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN received on this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "fecn_rx" ::= {vpFRStatsEntry 11} vpFRFECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN set on this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "set_fecn" ::= {vpFRStatsEntry 12} vpFRBECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN received on this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "becn_rx" ::= {vpFRStatsEntry 13} vpFRBECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN set on this port since VP stats re-initialisation and while the port state was 'deblocked' or 'test'." REFERENCE "set_becn" ::= {vpFRStatsEntry 14} vpFRDEReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of Discard Eligibility (DE) frames received on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "de_rx" ::= {vpFRStatsEntry 15} vpFRFramesOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded CIR on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_cir" ::= {vpFRStatsEntry 16} vpFRFramesOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames over CIR transmitted from this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_cir" ::= {vpFRStatsEntry 17} vpFRFramesOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded EIR on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_eir" ::= {vpFRStatsEntry 18} vpFRFramesOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit frames discarded on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_eir" ::= {vpFRStatsEntry 19} vpFROctetsOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded CIR on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_cir" ::= {vpFRStatsEntry 20} vpFROctetsOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets over CIR transmitted from this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_cir" ::= {vpFRStatsEntry 21} vpFROctetsOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded EIR on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_eir" ::= {vpFRStatsEntry 22} vpFROctetsOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit octets discarded on this port since VP initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_eir" ::= {vpFRStatsEntry 23} -- ----------------------------------------------------------------------------- -- Per Frame Relay PVC (DLCI) Statistics Table -- -- ----------------------------------------------------------------------------- vpDLCIStatsTable OBJECT-TYPE SYNTAX SEQUENCE OF VPDLCIStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "For every row in vpFRStatsTable, one or more entry may be available in this table to give operational statistics specific to a DLCI configured on the port." REFERENCE "STVP" ::= { pfaFRVirtual 4 } vpDLCIStatsEntry OBJECT-TYPE SYNTAX VPDLCIStatsEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "Per FR DLCI Statistics Entry." REFERENCE "23" INDEX { vpDLCIStatsPortNumber, vpDLCI } ::= { vpDLCIStatsTable 1 } VPDLCIStatsEntry ::= SEQUENCE { vpDLCIStatsPortNumber PfaPortNumber, vpDLCI INTEGER (1..1024), vpDLCIFramesReceived INTEGER, vpDLCIFramesSent INTEGER, vpDLCIOctetsReceived INTEGER, vpDLCIOctetsSent INTEGER, vpDLCIFramesPerMinIn INTEGER, vpDLCIFramesPerMinOut INTEGER, vpDLCIOctetsPerMinIn INTEGER, vpDLCIOctetsPerMinOut INTEGER, vpDLCIFECNReceived INTEGER, vpDLCIFECNSet INTEGER, vpDLCIBECNReceived INTEGER, vpDLCIBECNSet INTEGER, vpDLCIDEReceived INTEGER, vpDLCIFramesOverCIRRecd INTEGER, vpDLCIFramesOverCIRSent INTEGER, vpDLCIFramesOverEIRRecd INTEGER, vpDLCIFramesOverEIRDiscarded INTEGER, vpDLCIOctetsOverCIRRecd INTEGER, vpDLCIOctetsOverCIRSent INTEGER, vpDLCIOctetsOverEIRRecd INTEGER, vpDLCIOctetsOverEIRDiscarded INTEGER } vpDLCIStatsPortNumber OBJECT-TYPE SYNTAX PfaPortNumber ACCESS read-only STATUS mandatory DESCRIPTION "Port Number identifying the Frame Relay VP object." REFERENCE "VP" ::= { vpDLCIStatsEntry 1 } vpDLCI OBJECT-TYPE SYNTAX INTEGER (1..1024) ACCESS read-only STATUS mandatory DESCRIPTION "DLCI number identifying the Frame Relay PVC." REFERENCE "DLCI" ::= { vpDLCIStatsEntry 2 } vpDLCIFramesReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "frames_rx" ::= {vpDLCIStatsEntry 3} vpDLCIFramesSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "frames_tx" ::= {vpDLCIStatsEntry 4} vpDLCIOctetsReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "octets_rx" ::= {vpDLCIStatsEntry 5} vpDLCIOctetsSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "octets_tx" ::= {vpDLCIStatsEntry 6} vpDLCIFramesPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_PER_MIN_IN" ::= {vpDLCIStatsEntry 7} vpDLCIFramesPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of frames per minute transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "FRAMES_PER_MIN_OUT" ::= {vpDLCIStatsEntry 8} vpDLCIOctetsPerMinIn OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "OCTETS_PER_MIN_IN" ::= {vpDLCIStatsEntry 9} vpDLCIOctetsPerMinOut OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Rate of octets per minute transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. " REFERENCE "OCTETS_PER_MIN_OUT" ::= {vpDLCIStatsEntry 10} vpDLCIFECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "fecn_rx" ::= {vpDLCIStatsEntry 11} vpDLCIFECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of FECN set on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "set_fecn" ::= {vpDLCIStatsEntry 12} vpDLCIBECNReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN Received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "becn_tx" ::= {vpDLCIStatsEntry 13} vpDLCIBECNSet OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of BECN set on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "set_becn" ::= {vpDLCIStatsEntry 14} vpDLCIDEReceived OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of Discard Eligibility (DE) frames received on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'." REFERENCE "de_rx" ::= {vpDLCIStatsEntry 15} vpDLCIFramesOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded CIR on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_cir" ::= {vpDLCIStatsEntry 16} vpDLCIFramesOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames over CIR transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_cir" ::= {vpDLCIStatsEntry 17} vpDLCIFramesOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of frames received which exceeded EIR on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_frames_exceeding_eir" ::= {vpDLCIStatsEntry 18} vpDLCIFramesOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit frames on this DLCI discarded since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_frames_exceeding_eir" ::= {vpDLCIStatsEntry 19} vpDLCIOctetsOverCIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded CIR on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_cir" ::= {vpDLCIStatsEntry 20} vpDLCIOctetsOverCIRSent OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets over CIR transmitted from this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_cir" ::= {vpDLCIStatsEntry 21} vpDLCIOctetsOverEIRRecd OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of octets received which exceeded EIR on this port since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test'. Only applicable if the port is configured to apply rate-enforcement on incoming traffic." REFERENCE "rx_octets_exceeding_eir" ::= {vpDLCIStatsEntry 22} vpDLCIOctetsOverEIRDiscarded OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total number of transmit octets discarded on this DLCI since DLCI initialisation or stats reset and while the port state was 'deblocked' or 'test' because EIR was exceeded. Only applicable if the port is configured to apply rate-enforcement on outgoing traffic." REFERENCE "tx_octets_exceeding_eir" ::= {vpDLCIStatsEntry 23} -- ----------------------------------------------------------------------------- -- END OF FR VP -- ----------------------------------------------------------------------------- END