CISCO-FLOW-MONITOR-MIB
182 objects
This MIB module defines objects that describe flow monitoring. A typical application of this MIB module will facilitate monitoring media flows, especially flows carrying video streams. However, by no means does the definition of this MIB module prevents other applications from using it. FLOW MONITORS ================= At the top level, this MIB module describes the notion of a flow monitor. A flow monitor is a hardware or software entity that classifies traffic flows, collects data on conforming traffic flows, and periodically computes metrics that reflect the quality of the traffic flows. Because a device can support more than one flow monitor, the MIB module defines the cfmFlowMonitorTable. Consider an edge router that supports a certain line card that has an integrated capability to monitor video flows. In this example, the cfmFlowMonitorTable would contain a row describing each line card installed in the device. TRAFFIC FLOWS ================= At the next level, this MIB module describes the notion of a traffic flow. This MIB module uniquely identifies a traffic flow using an auxiliary variable called cfmFlowId; however, an implementation only has guarantee its uniqueness within the scope of the flow monitor that has the responsibility for monitoring the traffic flow. Thus, we can think of the flow monitor as a container for the traffic flows for which it collects data and periodically computes metrics, as the figure below illustrates. + | cfmFlowTable | | | + | cfmFlowMonitorId = 3 + | | cfmFlowId = 101 | | | + | + | | cfmFlowMonitorId = 3 | | | | cfmFlowId = 102 | | | + | : | | : | | + | | cfmFlowMonitorId = 3 | | | | cfmFlowId = 150 | | | + + | | + | cfmFlowMonitorId = 4 + | | cfmFlowId = 1 | | | + | + | | cfmFlowMonitorId = 4 | | | | cfmFlowId = 2 | | | + | : | | : | | + | | cfmFlowMonitorId = 4 | | | | cfmFlowId = 150 | | | + + | | + While the identifying of a traffic flow using this auxiliary variable is convenient for the MIB module, it is does suffice for an EMS/NMS trying to isolate faults in a network delivering these traffic flows. To aid an EMS/NMS in this task, this MIB module defines a number of tables that provide layers of data relating to a traffic flow, including: o cfmFlowL2VlanTable - describes L2 VLAN data relating to traffic flows. o cfmFlowIpTable - describes IP data relating to traffic flows. o cfmFlowUdpTable - describes UDP data relating to traffic flows. o cfmFlowTcpTable - describes TCP data relating to traffic flows. o cfmFlowRtpTable - describes RTP data relating to traffic flows. Each of these tables have a sparse dependent relationship on the cfmFlowTable, as there exist situations when the data may not be available for a traffic flow, including: 1) The flow monitor simply may not collect the particular data for the traffic flows that it has the responsibility of monitoring. For example, a flow monitor may not have any concern for L2 VLAN data. 2) The data may not apply to a traffic flow. For example, a TCP and RTP data do not apply for a UDP traffic flow. To help an EMS/NMS navigate the data collected for a traffic flow, the corresponding rows are daisy-chained using 'next objects'. An EMS/NMS starts with cfmFlowNext, which indicates a reference to the row in the next table containing data related to the traffic flow. The first object contained by each of these tables is a 'next object'. Consider a RTP traffic flow for which the flow monitor has collected IP, UDP, and RTP data. The figure below illustrates how this MIB module daisy chains this data through the relevant tables. + | cfmFlowTable | | + | | cfmFlowMonitorId = 3 | | | | cfmFlowId = 42 | | | | cfmFlowNext = cfmFlowIpNext.3.42 | + + | + | cfmFlowIpTable | | | + | | cfmFlowMonitorId = 3 |< | | cfmFlowId = 42 | | | | cfmFlowIpNext = cfmFlowUdpNext.3.42 | + + | + | cfmFlowUdpTable | | | + | | cfmFlowMonitorId = 3 |< | | cfmFlowId = 42 | | | | cfmFlowUdpNext = cfmFlowRtpNext.3.42 | + + | + | cfmFlowRtpTable | | | + | | cfmFlowMonitorId = 3 |< | | cfmFlowId = 42 | | | | cfmFlowRtpNext = zeroDotZero | | | + + Observe that this structure simplifies the task of extending the MIB module to support additional layers of data. For example, if there is a need for a device to collect data relating to the MPEG-TS layer of a flow carrying a video stream, then it is as simple as defining a table containing this data. However, the definition of such a table must comply with the following requirements: 1) The table must have a sparse dependent relationship on the cfmFlowTable. 2) The first object contained by the table must be a 'next object' to support daisy chaining. REPORTING FLOW METRICS ========================== At the next level, the MIB defines two tables that together form the foundation for reporting metrics. The cfmFlowMetricsTable has a one-to-one dependent relationship on the cfmFlowTable, and it contains data aggregate metrics and data relating to the collection of metrics for the corresponding traffic flow. A row in this table also serves as a container for the historic metrics computed by the corresponding flow monitor, as the figure below illustrates. + | cfmFlowMetricsIntTable | | | + | cfmFlowMetricsEntry | | | | | cfmFlowMonitorId = 3 | | | cfmFlowMonitorId = 3 | | | cfmFlowId = 101 | | | cfmFlowid = 101 | | | cfmFlowMetricsIntNumber = 1 | | + | + | | cfmFlowMonitorId = 3 | | | | cfmFlowId = 101 | | | | cfmFlowMetricsIntNumber = 2 | | | + | : | | : | | + | | cfmFlowMonitorId = 3 | | | | cfmFlowId = 101 | | | | cfmFlowMetricsIntNumber = N | | | + + | | + The device collects data for a traffic flow over a configured measurement interval, indicated by cfmFlowMetricsIntervalTime. At the end of a measurement interval, the device computes metrics from this data, generating a report. An EMS/NMS can access this report using the cfmFlowMetricsIntTable. cfmFlowMetricsMaxInterval indicates the maximum number of reports a device will save for the corresponding traffic flow, while cfmFlowMetricsIntervals indicates the number of reports currently saved by the device. The cfmFlowMetricsTable and cfmFlowMetricsIntTable have the intent of providing a foundation for reporting metrics for a traffic flow. Furthermore, it is the intent that additional MIB modules define extensions to these tables describing specific sets of metrics. The following list provides some examples: o CISCO-FLOW-MON-MDI-MIB - this MIB module defines extensions that describe MDI metrics defined by RFC-4445. o CISCO-FLOW-MON-RTP-MIB - this MIB module defines extensions that describe RTP metrics defined by RFC-3550. o CISCO-FLOW-MON-IP-CBR-MIB - this MIB module defines extension that describe IP CBR metrics. The tables defined by these MIB modules have a sparse dependent relationhip on the cfmFlowMetricsTable and cfmFlowMetricsIntTable. An EMS/NMS can determine the metrics collected for a traffic flow from the corresponding instance of cfmFlowMetricsCollected, which is nothing more than a bit string-value for which each bit corresponds to a different set of metrics. FAULT MANAGEMENT ==================== At the next level, this MIB module defines tables that describe standing conditions. A standing condition is a lasting error, fault, or warning resulting from the application of a set of criteria to the state of an entity. For example, a flow monitor ceases monitoring a traffic flow when it has not received any packets for that traffic flow in a configured interval of time. If flow monitor expires a significantly large number of traffic flows during a measurement interval, then this might signal a fault. In this example, the 'set of criteria' is a rising threshold and the 'state of an entity' is the number of traffic flows expired by a flow monitor. The cfmConditionTable describes the criteria applied to entities managed by the device, specifically flow monitors and traffic flows. The table groups these criteria into 'conditions profiles'. The device periodically applies these criteria to an entity and saves the results in a bit string-value associated with the entity. An EMS/NMS can monitor the most recent standing conditions for a flow monitor by retrieving the corresponding instance of cfmFlowMonitorConditions. Likewise, an EMS/NMS can monitor the most recent standing conditions for a traffic flow by retrieving the corresponding instance of cfmFlowMetricsConditions. It goes without saying that monitoring the standing conditions for significantly large numbers of traffic flows becomes problematic. To aid an EMS/NMS in this task, this MIB module defines many mechanisms. The most basic of these mechanisms is the notion of an alarm, which is simply a standing condition for which the device signals changes in state. This MIB module provides for three means of signaling when the device raises or clears an alarm condition: 1) Logging - the device creates a record of the event and saves it in a historical account. 2) syslog - the device generates a syslog message containing details of the event and sends it to one or more configured syslog server. 3) SNMP - the device generates a SNMP notification containing details of the event and sends it to one or more configured targets. An EMS/NMS can monitor the most recent alarm conditions for a flow monitor by retrieving the corresponding instance of cfmFlowMonitorAlarms. Likewise, the EMS/NMS can monitor the most recent alarm conditions for a traffic flow by retrieving the corresponding instance of cfmFlowMetricsAlarms. Additionally, the EMS/NMS can poll a summary of alarm conditions maintained for each flow monitor and the traffic flows that it monitors. The following list summarizes the data contained by this summary: o cfmFlowMonitorAlarmSeverity o cfmFlowMonitorAlarmCriticalCount o cfmFlowMonitorAlarmMajorCount o cfmFlowMonitorAlarmMinorCount o cfmFlowMonitorAlarmWarningCount o cfmFlowMonitorAlarmInfoCount An EMS/NMS can also poll cfmAlarmHistoryLastId, which indicates the value of the identifier assigned to the last record saved to the historical account. When it observes a change in the value of this object, then it can retrieve the new records from the cfmAlarmHistoryTable. The burden of monitoring alarm conditions for sufficiently large numbers of traffic flows can itself become a daunting task. Thus, this MIB module defines the notion of an alarm group, which represents a single alarm condition that aggregates a standing condition for a set of traffic flows. The cfmAlarmGroupTable describes the alarm groups configured for a device, and the cfmAlarmGroupFlowTable describes the sets of flows aggregated by these alarm groups. GLOSSARY ============ Alarm Action - a method used by the device to signal changes in an alarm condition. Alarm Aggregation - a technique used to efficiently monitor the same standing condition for a flow set. Alarm Condition - a standing condition for which the device signals changes in state. Alarm Group - a flow set for which the device monitors a configured standing condition, raising an alarm when a configured number of flows in the flow set assert the standing standing. Alarm Severity - the relative disposition of an alarm condition when raised by the device. For example, a provider may regard a flow stop alarm as having a higher severity than a flow's loss fraction exceeding a configured threshold. Flow Monitor - a hardware or software entity that classifies traffic flows, collects flow data, and periodically computes flow metrics. Flow Metric - a measurement that reflects the quality of a traffic flow. Flow Point - represents the ingress or egress of a traffic flow. Flow Set - a group of traffic flows. Measurement Interval - the length of time over which a flow monitor collects data related to a traffic flow, after which the flow monitor computes flow metrics using the collected data. Standing Condition - represents a lasting error, fault, or warning resulting from the application of a set of criteria to the state of an entity, such as a flow monitor or traffic flow. For example, a flow monitor may assert a standing condition if the number of traffic flows that expire in a measurement interval exceeds a configured threshold. Traffic Flow - a unidirectional stream of packets conforming to a classifier. For example, packets having a particular source IP address, destination IP address, protocol type, source port number, and destination port number.
Imported Objects
| OID | Name | Access | Status | Description |
|---|---|---|---|---|
| 1.3.6.1.4.1.9.9.692 | IdentityciscoFlowMonitorMIB | This MIB module defines objects that describe flow monitoring. A typical application of this MIB module will facilitate monitoring media flows, especially flow… | ||
| 1.3.6.1.4.1.9.9.692.0 | NodeciscoFlowMonitorMIBNotifs | |||
| 1.3.6.1.4.1.9.9.692.0.1 | NotificationcfmNotifyAlarm | current | The device generates this notification when an alarm condition has changed state and the value of cfmNOtifyEnable is 'true'. | |
| 1.3.6.1.4.1.9.9.692.1 | NodeciscoFlowMonitorMIBObjects | |||
| 1.3.6.1.4.1.9.9.692.1.1 | NodecfmFlowMonitors | |||
| 1.3.6.1.4.1.9.9.692.1.1.1 | TablecfmFlowMonitorTable | not-accessible | current | This table lists the flow monitors contained by the device. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1 | RowcfmFlowMonitorEntry | not-accessible | current | An entry describes a flow monitor, which represents a hardware or software entity that classifies traffic flows, monitors flow data, and periodically computes … |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.1 | ColumncfmFlowMonitorId | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies the flow monitor. Observe that the value assigned to a flow monitor does not necessar… |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.2 | ColumncfmFlowMonitorDescr | read-only | current | This object indicates a human-readable description for the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.3 | ColumncfmFlowMonitorCaps | read-only | current | This object indicates the capabilities of the flow monitor. Specifically, the value of this column indicates a '1' for each set of flow metrics the flow monito… |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.4 | ColumncfmFlowMonitorFlowCount | read-only | current | This object indicates the number of traffic flows currently monitored by the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.5 | ColumncfmFlowMonitorConditionsProfile | read-only | current | This object indicates the conditions profile that contains the descriptions of the standing conditions monitored for the flow monitor. If the flow monitor does… |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.6 | ColumncfmFlowMonitorConditions | read-only | current | This object indicates the current standing conditions for the flow monitor. If the flow monitor does not have an associated conditions profile, then the value … |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.7 | ColumncfmFlowMonitorAlarms | read-only | current | This object indicates the current alarm conditions for the flow monitor. If the flow monitor does not have an associated conditions profile, then the value of … |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.8 | ColumncfmFlowMonitorAlarmSeverity | read-only | current | This object indicates the high severity alarm condition currently raised by the flow monitor and the traffic flows monitored by the flow monitor. If no alarm i… |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.9 | ColumncfmFlowMonitorAlarmCriticalCount | read-only | current | This object indicates the number of alarm conditions with a critical severity currently raised for traffic flows monitored by the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.10 | ColumncfmFlowMonitorAlarmMajorCount | read-only | current | This object indicates the number of alarm conditions with a major severity currently raised for traffic flows monitored by the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.11 | ColumncfmFlowMonitorAlarmMinorCount | read-only | current | This object indicates the number of alarm conditions with a minor severity currently raised for traffic flows monitored by the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.12 | ColumncfmFlowMonitorAlarmWarningCount | read-only | current | This object indicates the number of alarm conditions with a warning severity currently raised for traffic flows monitored by the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.1.1.13 | ColumncfmFlowMonitorAlarmInfoCount | read-only | current | This object indicates the number of alarm conditions with a informational severity currently raised for traffic flows monitored by the flow monitor. |
| 1.3.6.1.4.1.9.9.692.1.1.2 | ScalarcfmFlowMonitorTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device created or destroyed a row in cfmFlowMonitorTable. |
| 1.3.6.1.4.1.9.9.692.1.2 | NodecfmFlows | |||
| 1.3.6.1.4.1.9.9.692.1.2.1 | TablecfmFlowTable | not-accessible | current | This table lists the traffic flows monitored by each flow monitor supported by the device. This table has an expansion dependent relationship on the cfmFlowMon… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1 | RowcfmFlowEntry | not-accessible | current | An entry describes a traffic flow monitored by a flow monitor. The device creates a row in the cfmFlowTable when a flow monitor starts monitoring a traffic flo… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.1 | ColumncfmFlowId | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies a traffic flow in the scope of the flow monitor that learned it. Observe that the val… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.2 | ColumncfmFlowDescr | read-only | current | This object indicates a human-readable description of the traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.3 | ColumncfmFlowNext | read-only | current | This object indicates a reference to a row in another table containing additional data relating to the traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.4 | ColumncfmFlowCreateTime | read-only | current | This object indicates the value of sysUpTime when the row was created. |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.5 | ColumncfmFlowDiscontinuityTime | read-only | current | This object indicates the value of sysUpTime on the most recent occasion at which any one or more of counters associated with the traffic flow suffered a disco… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.6 | ColumncfmFlowExpirationTime | read-only | current | This object indicates the expiration interval for the traffic flow. If the flow monitor receives no packets for the traffic flow in this interval, then it expi… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.7 | ColumncfmFlowDirection | read-only | current | This object indicates the direction of the traffic flow where the flow monitor collects data: 'unknown' The SNMP entity does not know the direction of the traf… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.8 | ColumncfmFlowAdminStatus | read-write | current | This object specifies the desired state of the traffic flow: 'enabled' The corresponding flow monitor is collecting data and computing metrics for the traffic … |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.9 | ColumncfmFlowOperStatus | read-only | current | This object indicates the operational state of the traffic flow: 'enabled' The corresponding flow monitor is actively monitoring the traffic flow. 'disabled' T… |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.10 | ColumncfmFlowIngressType | read-only | current | This object indicates the type of port that receives the traffic for this traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.11 | ColumncfmFlowIngress | read-only | current | This object identifies the port that receives the traffic for this traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.12 | ColumncfmFlowEgressType | read-only | current | This object indicates the type of port that transmits the traffic for this traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.1.1.13 | ColumncfmFlowEgress | read-only | current | This object identifies the port that transmits the traffic for this traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.2 | ScalarcfmFlowTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device created or destroyed a row in cfmFlowTable. |
| 1.3.6.1.4.1.9.9.692.1.2.3 | TablecfmFlowL2VlanTable | not-accessible | current | This table contains additional data relating to the L2 VLAN carrying traffic flows monitored by flow monitors. This table has a sparse dependent relationship o… |
| 1.3.6.1.4.1.9.9.692.1.2.3.1 | RowcfmFlowL2VlanEntry | not-accessible | current | An entry describes data relating to the L2 VLAN carrying the corresponding traffic flow. A device creates a row in the cfmFlowL2VlanTable when a flow monitor h… |
| 1.3.6.1.4.1.9.9.692.1.2.3.1.1 | ColumncfmFlowL2VlanNext | read-only | current | This object indicates a reference to a row in another table containing additional data relating to the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.3.1.2 | ColumncfmFlowL2VlanId | read-only | current | This object indicates the tag associated with the VLAN carrying the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.3.1.3 | ColumncfmFlowL2VlanCos | read-only | current | This object indicates the layer 2 COS assigned to the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.4 | ScalarcfmFlowL2VlanTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device changed the cfmFlowL2VlanTable. |
| 1.3.6.1.4.1.9.9.692.1.2.5 | TablecfmFlowIpTable | not-accessible | current | This table contains additional data relating to the IP carrying the corresponding traffic flow. This table has a sparse dependent relationship on the cfmFlowTa… |
| 1.3.6.1.4.1.9.9.692.1.2.5.1 | RowcfmFlowIpEntry | not-accessible | current | An entry describes data relating to the IP carrying the corresponding traffic flow. A device creates a row in the cfmFlowIpTable when the flow monitor has data… |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.1 | ColumncfmFlowIpNext | read-only | current | This object indicates a reference to a row in another table containing additional data relating to the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.2 | ColumncfmFlowIpAddrType | read-only | current | This object indicates the type of IP address indicated by the corresponding instances of cfmFlowIpAddrSrc and cfmFlowIpAddrDst. |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.3 | ColumncfmFlowIpAddrSrc | read-only | current | This object indicates the source IP address of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.4 | ColumncfmFlowIpAddrDst | read-only | current | This object indicates the destination IP address of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.5 | ColumncfmFlowIpValid | read-only | current | This object indicates whether the corresponding instances of cfmFlowIpTrafficClass and cfmFlowIpHopLimit are valid. |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.6 | ColumncfmFlowIpTrafficClass | read-only | current | This object indicates the traffic class of the corresponding traffic flow. If version 4 of the IP carries the traffic flow, then the value of this column corre… |
| 1.3.6.1.4.1.9.9.692.1.2.5.1.7 | ColumncfmFlowIpHopLimit | read-only | current | This object indicates the hop limit of the corresponding traffic flow. If version 4 of the IP carries the traffic flow, then the value of this column correspon… |
| 1.3.6.1.4.1.9.9.692.1.2.6 | ScalarcfmFlowIpTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device changed the cfmFlowIpTable. |
| 1.3.6.1.4.1.9.9.692.1.2.7 | TablecfmFlowUdpTable | not-accessible | current | This table contains additional data relating to the UDP carrying the corresponding traffic flow. This table has a sparse dependent relationship on the cfmFlowT… |
| 1.3.6.1.4.1.9.9.692.1.2.7.1 | RowcfmFlowUdpEntry | not-accessible | current | An entry describes data relating to the UDP carrying the corresponding traffic flow. A device creates a row in the cfmFlowUdpTable when the flow monitor has da… |
| 1.3.6.1.4.1.9.9.692.1.2.7.1.1 | ColumncfmFlowUdpNext | read-only | current | This object indicates a reference to a row in another table containing additional data relating to the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.7.1.2 | ColumncfmFlowUdpPortSrc | read-only | current | This object indicates the source UDP port number of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.7.1.3 | ColumncfmFlowUdpPortDst | read-only | current | This object indicates the destination UDP port number of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.8 | ScalarcfmFlowUdpTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device changed the cfmFlowUdpTable. |
| 1.3.6.1.4.1.9.9.692.1.2.9 | TablecfmFlowTcpTable | not-accessible | current | This table contains additional data relating to the TCP carrying the corresponding traffic flow. This table has a sparse dependent relationship on the cfmFlowT… |
| 1.3.6.1.4.1.9.9.692.1.2.9.1 | RowcfmFlowTcpEntry | not-accessible | current | An entry describes data relating to the TCP carrying the corresponding traffic flow. A device creates a row in the cfmFlowTcpTable when the flow monitor has da… |
| 1.3.6.1.4.1.9.9.692.1.2.9.1.1 | ColumncfmFlowTcpNext | read-only | current | This object indicates a reference to a row in another table containing additional data relating to the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.9.1.2 | ColumncfmFlowTcpPortSrc | read-only | current | This object indicates the source TCP port number of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.9.1.3 | ColumncfmFlowTcpPortDst | read-only | current | This object indicates the destination TCP port number of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.10 | ScalarcfmFlowTcpTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device changed the cfmFlowTcpTable. |
| 1.3.6.1.4.1.9.9.692.1.2.11 | TablecfmFlowRtpTable | not-accessible | current | This table contains additional data relating to the RTP carrying the corresponding traffic flow. This table has a sparse dependent relationship on the cfmFlowT… |
| 1.3.6.1.4.1.9.9.692.1.2.11.1 | RowcfmFlowRtpEntry | not-accessible | current | An entry describes data relating to the RTP carrying the corresponding traffic flow. A device creates a row in the cfmFlowRtpTable when the flow monitor has da… |
| 1.3.6.1.4.1.9.9.692.1.2.11.1.1 | ColumncfmFlowRtpNext | read-only | current | This object indicates a reference to a row in another table containing additional data relating to the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.11.1.2 | ColumncfmFlowRtpVersion | read-only | current | This object indicates the RTP version of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.11.1.3 | ColumncfmFlowRtpSsrc | read-only | current | This object indicates the RTP synchronized source (SSRC) of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.11.1.4 | ColumncfmFlowRtpPayloadType | read-only | current | This object indicates the RTP payload type of the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.2.12 | ScalarcfmFlowRtpTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device changed the cfmFlowRtpTable. |
| 1.3.6.1.4.1.9.9.692.1.3 | NodecfmFlowMetrics | |||
| 1.3.6.1.4.1.9.9.692.1.3.1 | TablecfmFlowMetricsTable | not-accessible | current | This table contains aggregate metrics and data relating to the collection of metrics for the traffic flows monitored by each of the flow monitors supported by … |
| 1.3.6.1.4.1.9.9.692.1.3.1.1 | RowcfmFlowMetricsEntry | not-accessible | current | An entry contains aggregate metrics and data relating to the collection of metrics for a corresponding traffic flow. The device creates a row in the cfmFlowMet… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.1 | ColumncfmFlowMetricsCollected | read-only | current | This object indicates the metrics collected by the corresponding flow monitor for the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.2 | ColumncfmFlowMetricsIntervalTime | read-only | current | This object indicates the length of the measurement interval for the corresponding traffic flow. The flow monitor computes the collected metrics for the corres… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.3 | ColumncfmFlowMetricsMaxIntervals | read-only | current | This object indicates the maximum number of measurement intervals for which the corresponding flow monitor maintains metrics for the corresponding traffic flow… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.4 | ColumncfmFlowMetricsElapsedTime | read-only | current | This object indicates the time that has elapsed since the beginning of the current measurement interval. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.5 | ColumncfmFlowMetricsIntervals | read-only | current | This object indicates the number of measurement intervals for which data has been collected. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.6 | ColumncfmFlowMetricsInvalidIntervals | read-only | current | This object indicates the number of measurement intervals in the set of collected measurement intervals that contain invalid data. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.7 | ColumncfmFlowMetricsConditionsProfile | read-only | current | This object indicates the conditions profile that contains the descriptions of the standing conditions monitored for the traffic flow. If the flow does not hav… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.8 | ColumncfmFlowMetricsConditions | read-only | current | This object indicates the current standing conditions for the corresponding traffic flow. If the flow does not have an associated conditions profile, then the … |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.9 | ColumncfmFlowMetricsAlarms | read-only | current | This object indicates the current alarm conditions for the corresponding traffic flow. If the flow does not have an associated conditions profile, then the val… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.10 | ColumncfmFlowMetricsAlarmSeverity | read-only | current | This object indicates the highest severity alarm currently raised for the corresponding traffic flow. If no alarm is raised for the corresponding traffic flow,… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.11 | ColumncfmFlowMetricsPkts | read-only | current | This object indicates the total number of packets processed by the corresponding flow monitor for the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.12 | ColumncfmFlowMetricsOctets | read-only | current | This object indicates the total number of octets contained by the packets processed by the corresponding flow monitor for the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.13 | ColumncfmFlowMetricsBitRateUnits | read-only | current | This object indicates the units for the corresponding instance of cfmFlowMetricsBitRate. |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.14 | ColumncfmFlowMetricsBitRate | read-only | current | This object indicates the average bit rate at which the corresponding flow monitor is processing data for the corresponding traffic flow. This value is cumulat… |
| 1.3.6.1.4.1.9.9.692.1.3.1.1.15 | ColumncfmFlowMetricsPktRate | read-only | current | This object indicates the average packet rate at which the corresponding flow monitor is processing data for the corresponding traffic flow. This value is cumu… |
| 1.3.6.1.4.1.9.9.692.1.3.2 | ScalarcfmFlowMetricsTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device created or destroyed a row in cfmFlowMetricsTable. |
| 1.3.6.1.4.1.9.9.692.1.3.3 | TablecfmFlowMetricsIntTable | not-accessible | current | This table contains historic metrics for the traffic flows monitored by each of the flow monitors supported by the device. This table has an expansion dependen… |
| 1.3.6.1.4.1.9.9.692.1.3.3.1 | RowcfmFlowMetricsIntEntry | not-accessible | current | An entry describes metrics collected for a previous measurement interval for a corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.1 | ColumncfmFlowMetricsIntNumber | not-accessible | current | This object indicates the interval number identifying the measurement interval. The measurement interval identified by the value '1' represents the most recent… |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.2 | ColumncfmFlowMetricsIntValid | read-only | current | This object indicates whether the data for the measurement interval is valid. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.3 | ColumncfmFlowMetricsIntTime | read-only | current | This object indicates the value of sysUpTime when the measurement interval was captured. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.4 | ColumncfmFlowMetricsIntConditions | read-only | current | This object indicates which standing conditions were asserted at least once during the measurement interval for the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.5 | ColumncfmFlowMetricsIntAlarms | read-only | current | This object indicates which alarm conditions were raised at least once during the measurement interval for the corresponding traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.6 | ColumncfmFlowMetricsIntAlarmSeverity | read-only | current | This object indicates the highest severity alarm raised during the measurement interval for the corresponding traffic flow. If no alarm was raised during the m… |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.7 | ColumncfmFlowMetricsIntPkts | read-only | current | This object indicates the number of packets processed by the corresponding flow monitor for the corresponding traffic flow during the measurement interval. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.8 | ColumncfmFlowMetricsIntOctets | read-only | current | This object indicates the number of octets contained by the packets processed by the corresponding flow monitor for the corresponding traffic flow during the m… |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.9 | ColumncfmFlowMetricsIntBitRateUnits | read-only | current | This object indicates the units for the corresponding instance of cfmFlowMetricsIntBitRate. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.10 | ColumncfmFlowMetricsIntBitRate | read-only | current | This object indicates the bit rate at which the corresponding flow monitor processed data for the corresponding traffic flow during the measurement interval. |
| 1.3.6.1.4.1.9.9.692.1.3.3.1.11 | ColumncfmFlowMetricsIntPktRate | read-only | current | This object indicates the packet rate at which the corresponding flow monitor processed data for the corresponding traffic flow during the measurement interval. |
| 1.3.6.1.4.1.9.9.692.1.4 | NodecfmConditions | |||
| 1.3.6.1.4.1.9.9.692.1.4.1 | TablecfmConditionTable | not-accessible | current | |
| 1.3.6.1.4.1.9.9.692.1.4.1.1 | RowcfmConditionEntry | not-accessible | current | An entry describes a standing condition monitored by the device. The cfmConditionTable groups descriptions for standing conditions into condition profiles. A d… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.1 | ColumncfmConditionProfile | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies the condition profile that contains the standing condition. Observe that the value as… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.2 | ColumncfmConditionId | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies the condition within the scope of the profile. The value of this column corresponds t… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.3 | ColumncfmConditionDescr | read-only | current | This object indicates a human-readable description of the condition. |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.4 | ColumncfmConditionMonitoredElement | read-only | current | This object indicates the monitored element used in determining the state of the standing condition. |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.5 | ColumncfmConditionType | read-only | current | This object indicates the type of condition: 'other' The implementation of the MIB does not recognize the condition described by this row. 'boolean' The value … |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.6 | ColumncfmConditionThreshRiseScale | read-only | current | This object indicates the scaling factor for the corresponding instance of cfmConditionThreshRise. This value of this column only has relevance if the correspo… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.7 | ColumncfmConditionThreshRisePrecision | read-only | current | This object indicates the precision for the corresponding instance of cfmConditionThreshRise. This value of this column only has relevance if the corresponding… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.8 | ColumncfmConditionThreshRise | read-only | current | This object indicates the value of the rising threshold. This value of this column only has relevance if the corresponding instance of cfmConditionType is 'ris… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.9 | ColumncfmConditionThreshFallScale | read-only | current | This object indicates the scaling factor for the corresponding instance of cfmConditionThreshFall. The value of this column only has relevance if the correspon… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.10 | ColumncfmConditionThreshFallPrecision | read-only | current | This object indicates the precision for the corresponding instance of cfmConditionThreshFall. The value of this column only has relevance if the corresponding … |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.11 | ColumncfmConditionThreshFall | read-only | current | This object indicates the value of the falling threshold. The value of this column only has relevance if the corresponding instance of cfmConditionType is 'fal… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.13 | ColumncfmConditionSampleType | read-only | current | This object indicates how the device samples the monitored value before determining whether to assert the condition: 'other' The implementation of the MIB does… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.14 | ColumncfmConditionSampleWindow | read-only | current | This object indicates the sample window used by the device to compute an exponentially decaying average in the case that the corresponding instance of cfmCondi… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.15 | ColumncfmConditionAlarm | read-only | current | This object indicates whether the device treats the standing condition as an alarm condition: 'none' The device does not treat the standing condition as an ala… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.16 | ColumncfmConditionAlarmActions | read-only | current | This object indicates the actions taken by the device when the alarm condition changes state: 'syslog' The device sends a syslog message. 'snmp' The device sen… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.17 | ColumncfmConditionAlarmSeverity | read-only | current | This object indicates the severity of the alarm condition. The value of this column only have relevance if the corresponding instance of cfmConditionAlarm is '… |
| 1.3.6.1.4.1.9.9.692.1.4.1.1.18 | ColumncfmConditionAlarmGroup | read-only | current | This object indicates the alarm group the device aggregates the standing condition into. The value of this column only has relevance if the corresponding insta… |
| 1.3.6.1.4.1.9.9.692.1.4.2 | ScalarcfmConditionTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device made a change to the cfmConditionTable. |
| 1.3.6.1.4.1.9.9.692.1.5 | NodecfmAlarmGroups | |||
| 1.3.6.1.4.1.9.9.692.1.5.1 | TablecfmAlarmGroupTable | not-accessible | current | This table lists alarm groups maintained by the device. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1 | RowcfmAlarmGroupEntry | not-accessible | current | An entry describes an alarm group. An alarm group defines an alarm condition that is raised when a configured number of flows in a set of flows asserts a confi… |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.1 | ColumncfmAlarmGroupId | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies the alarm group. Observe that the value assigned to an alarm group does not necessari… |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.2 | ColumncfmAlarmGroupDescr | read-only | current | This object indicates a human-readable description of the alarm group. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.3 | ColumncfmAlarmGroupConditionsProfile | read-only | current | This object indicates the conditions profile that contains the description of the standing profile aggregated by the alarm group. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.4 | ColumncfmAlarmGroupConditionId | read-only | current | This object indicates the standing condition aggregated by the alarm group. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.5 | ColumncfmAlarmGroupFlowSet | read-only | current | This object indicates the set of traffic flows aggregated by the alarm group. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.6 | ColumncfmAlarmGroupFlowCount | read-only | current | This object indicates the number of traffic flows in the set of traffic flows indicated by the corresponding instance of cfmAlarmGroupFlowSet. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.7 | ColumncfmAlarmGroupThresholdUnits | read-only | current | This object indicates the units for the corresponding instance of cfmAlarmGroupThreshold: 'other' The MIB implementation does not recognize the units in which … |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.8 | ColumncfmAlarmGroupThreshold | read-only | current | This object indicates a number of flows that must assert the standing condition indicated by the corresponding instance of cfmAlarmGroupCondition before raisin… |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.9 | ColumncfmAlarmGroupRaised | read-only | current | This object indicates whether the alarm group has raised an alarm. |
| 1.3.6.1.4.1.9.9.692.1.5.1.1.10 | ColumncfmAlarmGroupCurrentCount | read-only | current | This object indicates the number of traffic flows currently asserting the standing condition aggregated by the alarm group. |
| 1.3.6.1.4.1.9.9.692.1.5.2 | ScalarcfmAlarmGroupTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device made a change to the cfmAlarmGroupTable. |
| 1.3.6.1.4.1.9.9.692.1.5.3 | TablecfmAlarmGroupFlowTable | not-accessible | current | This table lists the traffic flows contained by each set of flows configured for the alarm groups contained by the cfmAlarmGroupTable. |
| 1.3.6.1.4.1.9.9.692.1.5.3.1 | RowcfmAlarmGroupFlowEntry | not-accessible | current | An entry describes a traffic flow contained by a set of flows. An alarm group aggregates a standing condition from a set of flows. cfmAlarmFlowSetId uniquely i… |
| 1.3.6.1.4.1.9.9.692.1.5.3.1.1 | ColumncfmAlarmGroupFlowSetId | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies the set of traffic flows that contains the traffic flow represented by the row. Obser… |
| 1.3.6.1.4.1.9.9.692.1.5.3.1.2 | ColumncfmAlarmGroupFlowMonitorId | not-accessible | current | This object identifies the flow monitor responsible for the traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.5.3.1.3 | ColumncfmAlarmGroupFlowId | read-only | current | This object identifies the traffic flow. |
| 1.3.6.1.4.1.9.9.692.1.5.4 | ScalarcfmAlarmGroupFlowTableChanged | read-only | current | This object indicates the value of sysUpTime the last time the device made a change to the cfmAlarmGroupTable. |
| 1.3.6.1.4.1.9.9.692.1.6 | NodecfmAlarmHistory | |||
| 1.3.6.1.4.1.9.9.692.1.6.1 | ScalarcfmAlarmHistorySize | read-write | current | This object specifies the maximum number of rows the cfmAlarmHistoryTable can contain at any given time. If the device raises or clears an alarm and the cfmAla… |
| 1.3.6.1.4.1.9.9.692.1.6.2 | ScalarcfmAlarmHistoryLastId | read-only | current | This object indicates the value of cfmAlarmHistoryId corresponding to the last row created in the cfmAlarmHistoryTable. |
| 1.3.6.1.4.1.9.9.692.1.6.3 | TablecfmAlarmHistoryTable | not-accessible | current | This table lists a history of the changes in the state of alarm conditions monitored by the device. |
| 1.3.6.1.4.1.9.9.692.1.6.3.1 | RowcfmAlarmHistoryEntry | not-accessible | current | An entry describes the change in the state of an alarm condition observed by the device. The device creates a row in the cfmAlarmHistoryTable when it observes … |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.1 | ColumncfmAlarmHistoryId | not-accessible | current | This object indicates an arbitrary integer-value that uniquely identifies the event. Observe that the value assigned to a alarm history entry does not necessar… |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.2 | ColumncfmAlarmHistoryType | read-only | current | This object indicates the type of event: 'cleared' The event signaled an alarm condition transitioning to the cleared state. 'raised' The event signalled an al… |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.3 | ColumncfmAlarmHistoryEntity | read-only | current | This object indicates the entity that caused the event. If the alarm condition has an association with a flow monitor, then the value of this column is a row i… |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.4 | ColumncfmAlarmHistoryConditionsProfile | read-only | current | This object indicates the conditions profile containing the description of the alarm condition that changed state. |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.5 | ColumncfmAlarmHistoryConditionId | read-only | current | This object indicates the alarm condition that changed state. |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.6 | ColumncfmAlarmHistorySeverity | read-only | current | This object indicates the severity of the alarm condition that changed state. |
| 1.3.6.1.4.1.9.9.692.1.6.3.1.7 | ColumncfmAlarmHistoryTime | read-only | current | This object indicates the value of sysUpTime when the alarm condition changed state. In the case the device updates standing/alarm conditions at the same time … |
| 1.3.6.1.4.1.9.9.692.1.7 | NodecfmNotify | |||
| 1.3.6.1.4.1.9.9.692.1.7.1 | ScalarcfmNotifyEnable | read-write | current | This object specifies whether the device generates a cfmNotifyAlarm notification when an alarm condition changes state. |
| 1.3.6.1.4.1.9.9.692.2 | NodeciscoFlowMonitorMIBConform | |||
| 1.3.6.1.4.1.9.9.692.2.1 | NodeciscoFlowMonitorMIBCompliances | |||
| 1.3.6.1.4.1.9.9.692.2.1.1 | ComplianceciscoFlowMonitorCompliance01 | current | This compliance statement specifies the minimal requirements an implementation must meet in order to claim full compliance with the definition of the CISCO-FLO… | |
| 1.3.6.1.4.1.9.9.692.2.2 | NodeciscoFlowMonitorMIBGroups | |||
| 1.3.6.1.4.1.9.9.692.2.2.1 | GroupcfmFlowMonitorGroup | current | This group contains objects describing flow monitors. | |
| 1.3.6.1.4.1.9.9.692.2.2.2 | GroupcfmFlowGroup | current | This group contains objects describing traffic flows. | |
| 1.3.6.1.4.1.9.9.692.2.2.3 | GroupcfmFlowMetricsGroup | current | This group contains objects describing traffic flow metrics. | |
| 1.3.6.1.4.1.9.9.692.2.2.4 | GroupcfmFlowConditionsGroup | current | This group contains objects describing standing/alarm conditions. | |
| 1.3.6.1.4.1.9.9.692.2.2.5 | GroupcfmAlarmAggregationGroup | current | This group contains object describing alarm aggregation. | |
| 1.3.6.1.4.1.9.9.692.2.2.6 | GroupcfmAlarmHistoryGroup | current | This group contains objects describing alarm history. | |
| 1.3.6.1.4.1.9.9.692.2.2.7 | GroupcfmNotifySupportGroup | current | This group contains objects supporting notification. | |
| 1.3.6.1.4.1.9.9.692.2.2.8 | GroupcfmNotifyGroup | current | This group contains notifications supporting flow monitoring. | |
| 1.3.6.1.4.1.9.9.692.3 | NodeciscoFlowMonitorMIBIds | |||
| 1.3.6.1.4.1.9.9.692.3.1 | NodecfmMonitoredElements | |||
| 1.3.6.1.4.1.9.9.692.3.1.1 | IdentitycfmeOther | current | This object identifier represents a monitored element not recognized by this implementation of the MIB module. | |
| 1.3.6.1.4.1.9.9.692.3.1.2 | IdentitycfmeFlowCount | current | This object identifier represents the monitored element describing the number of traffic flows currently monitored by a flow monitor (cfmFlowMonitorFlowCount). | |
| 1.3.6.1.4.1.9.9.692.3.1.3 | IdentitycfmeFlowTimeouts | current | This object identifier represents the monitored element describing the number of traffic flows that expired during the last measurement interval. | |
| 1.3.6.1.4.1.9.9.692.3.1.4 | IdentitycfmeFlowStop | current | This object identifier represents the monitored element describing the condition that arises when a flow monitor does not receive any packets for a traffic flo… | |
| 1.3.6.1.4.1.9.9.692.3.1.5 | IdentitycfmeFlowCumulativeBitRate | current | This object identifier represents the monitored element describing the average rate at which a flow monitor processes bits contained by packets for a traffic f… | |
| 1.3.6.1.4.1.9.9.692.3.1.6 | IdentitycfmeFlowCumulativePktRate | current | This object identifier represents the monitored element describing the average rate at which a flow monitor processes packets for a traffic flow (cfmFlowMetric… | |
| 1.3.6.1.4.1.9.9.692.3.1.7 | IdentitycfmeFlowBitRate | current | This object identifier represents the monitored element describing the average rate at which a flow monitor processes bits contained by packets for a traffic f… | |
| 1.3.6.1.4.1.9.9.692.3.1.8 | IdentitycfmeFlowPktRate | current | This object identifier represents the monitored element describing the average rate at which a flow monitor processes packets for a traffic flow during the las… |