XEDIA-SLA-MONITOR-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, IpAddress, TimeTicks, NOTIFICATION-TYPE FROM SNMPv2-SMI TEXTUAL-CONVENTION, DisplayString, RowStatus, TruthValue FROM SNMPv2-TC MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF xediaMibs FROM XEDIA-REG ipAdEntAddr FROM RFC1213-MIB DateAndTimeForm FROM XEDIA-SYSTEM-MIB ; xediaSlaMonitorMIB MODULE-IDENTITY LAST-UPDATED "9812222155Z" -- December 22, 1998 ORGANIZATION "Xedia Corp." CONTACT-INFO "support@xedia.com" DESCRIPTION "This module defines objects for management of Xedia's service level agreement (SLA) monitoring probe management." ::= { xediaMibs 27 } slaMonitorGlobalObjects OBJECT IDENTIFIER ::= { xediaSlaMonitorMIB 1 } slaMonitorTableObjects OBJECT IDENTIFIER ::= { xediaSlaMonitorMIB 2 } slaMonitorNotifications OBJECT IDENTIFIER ::= { xediaSlaMonitorMIB 3 } slaMonitorConformance OBJECT IDENTIFIER ::= { xediaSlaMonitorMIB 4 } -- **************************************************************** -- Textual Conventions (datatypes) -- **************************************************************** SlaMonitorProbeName ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "An administrative name for a probe." SYNTAX DisplayString (SIZE (1..64)) -- Hack for pre-1902 compiler: Unsigned32 ::= Gauge32 slaMonitorProbeConfigurationTimeLastModification OBJECT-TYPE SYNTAX TimeTicks MAX-ACCESS read-only STATUS current DESCRIPTION "The value of sysUpTime the last time an entry in the slaMonitorProbeResultsTable was updated." ::= { slaMonitorGlobalObjects 1 } slaMonitorAutomaticProbeCreation OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "If the value of this object is 'true(1)', then a monitor probe with default values will be created and will begin executing upon creation of a tunnel. " DEFVAL { false } ::= { slaMonitorGlobalObjects 2 } slaMonitorCurrentProbeResultsIndex OBJECT-TYPE SYNTAX Unsigned32 (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "The current value of the index to the slaMonitorProbeResultsTable." ::= { slaMonitorGlobalObjects 3 } slaMonitorProbeRetries OBJECT-TYPE SYNTAX Integer32 (0..10) MAX-ACCESS read-write STATUS current DESCRIPTION "The number of times a probe packet will be retried when no response is received in the timeout interval indicated by slaMonitorProbeTimeout." DEFVAL { 0 } ::= { slaMonitorGlobalObjects 4} slaMonitorProbeTimeout OBJECT-TYPE SYNTAX Integer32 (1..60) UNITS "seconds" MAX-ACCESS read-write STATUS current DESCRIPTION "The time to wait, in seconds, before retransmission of an probe packet." DEFVAL { 10 } ::= { slaMonitorGlobalObjects 5 } slaMonitorProbePort OBJECT-TYPE SYNTAX Integer32 (0..65535) MAX-ACCESS read-write STATUS current DESCRIPTION "The UDP port that will be used to transmit and receive probe packets." DEFVAL { 8127 } ::= { slaMonitorGlobalObjects 6 } slaMonitorProbeDefaultMaxResults OBJECT-TYPE SYNTAX INTEGER (0..500000) MAX-ACCESS read-write STATUS current DESCRIPTION "The default value for the maximum number of probe results kept in the slaMonitorProbeResultsTable for newly created probes." DEFVAL { 300 } ::= { slaMonitorGlobalObjects 7 } slaMonitorProbeSequenceStart OBJECT-TYPE SYNTAX INTEGER UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time, in seconds since 1970, when probe packet processing was begun by this box, since the last reboot. Used to identify all sample packets collected in a series." ::= { slaMonitorGlobalObjects 8 } slaMonitorProbeDefaultProbingInterval OBJECT-TYPE SYNTAX INTEGER (0..3600) MAX-ACCESS read-write STATUS current DESCRIPTION "The default value for the interval in seconds between sending of probe packets. A value of 0 means that no probes will be sent." DEFVAL { 300 } ::= { slaMonitorGlobalObjects 9 } slaMonitorProbeSendAdminStatus OBJECT-TYPE SYNTAX INTEGER { enabled (1), disabled (2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Whether the box is capable of sending probe packets." DEFVAL { enabled } ::= { slaMonitorGlobalObjects 10 } slaMonitorProbeReceiveAdminStatus OBJECT-TYPE SYNTAX INTEGER { enabled (1), disabled (2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Whether the box is capable of receiving probe packets." DEFVAL { enabled } ::= { slaMonitorGlobalObjects 11 } slaMonitorPollerLastUpTime OBJECT-TYPE SYNTAX TimeTicks MAX-ACCESS not-accessible STATUS current DESCRIPTION "Used to report the value of sysUpTime for the last successful poll by the ProbePoller application. This value is reported by the ProbePoller when an slaMonitorPollerTrapTimeout is issued. A value of 0 indicates there has not been a successful poll." DEFVAL { 0 } ::= { slaMonitorGlobalObjects 12 } slaMonitorProbeConfigurationTable OBJECT-TYPE SYNTAX SEQUENCE OF SlaMonitorProbeConfigurationEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of destination addresses to probe." ::= { slaMonitorTableObjects 1 } slaMonitorProbeConfigurationEntry OBJECT-TYPE SYNTAX SlaMonitorProbeConfigurationEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Configuration information for a particular probe." INDEX { slaMonitorProbeConfigurationProbeName } ::= { slaMonitorProbeConfigurationTable 1 } SlaMonitorProbeConfigurationEntry ::= SEQUENCE { slaMonitorProbeConfigurationProbeName SlaMonitorProbeName, slaMonitorProbeConfigurationRemoteAddress IpAddress, slaMonitorProbeConfigurationProbingInterval INTEGER, slaMonitorProbeConfigurationSecretKey OCTET STRING, slaMonitorProbeConfigurationTrapPacketLossThreshold INTEGER, slaMonitorProbeConfigurationTrapRemoteLatencyThreshold Integer32, slaMonitorProbeConfigurationMaxResults INTEGER, slaMonitorProbeConfigurationTestStart INTEGER, slaMonitorProbeConfigurationSource INTEGER, slaMonitorProbeConfigurationRowStatus RowStatus, slaMonitorProbeConfigurationTrapLatencyThreshold Integer32 } slaMonitorProbeConfigurationProbeName OBJECT-TYPE SYNTAX SlaMonitorProbeName MAX-ACCESS read-only STATUS current DESCRIPTION "The name of the particular probe." ::= { slaMonitorProbeConfigurationEntry 1 } slaMonitorProbeConfigurationRemoteAddress OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-create STATUS current DESCRIPTION "The address being used as the destination for the probe packets. For automatically created entries due to tunnel creation, the remote gateway for the tunnel. If the remote address is 0.0.0.0, the rowStatus will be notReady." DEFVAL { '00000000'H } ::= { slaMonitorProbeConfigurationEntry 2 } slaMonitorProbeConfigurationProbingInterval OBJECT-TYPE SYNTAX INTEGER (0..3600) UNITS "seconds" MAX-ACCESS read-create STATUS current DESCRIPTION "Interval in seconds between sending of probe packets using a particular probe configuration. A value of 0 means that no probes will be sent." DEFVAL { 300 } ::= { slaMonitorProbeConfigurationEntry 3 } slaMonitorProbeConfigurationSecretKey OBJECT-TYPE SYNTAX OCTET STRING (SIZE ( 0 | 16 )) MAX-ACCESS read-only STATUS current DESCRIPTION "The shared secret key used by probes using this particular configuration." DEFVAL { ''H } ::= { slaMonitorProbeConfigurationEntry 4 } slaMonitorProbeConfigurationTrapPacketLossThreshold OBJECT-TYPE SYNTAX INTEGER (0..300) MAX-ACCESS read-create STATUS current DESCRIPTION "The number of probe packet skipped sequence numbers that will cause a trap to be generated for this particular probe. A value of 0 means that no traps will be sent." DEFVAL { 1 } ::= { slaMonitorProbeConfigurationEntry 5 } slaMonitorProbeConfigurationTrapRemoteLatencyThreshold OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-create STATUS current DESCRIPTION "The number of microseconds of remote latency that will cause a trap to be generated for this particular probe. A value of 0 means that no traps will be sent." DEFVAL { 30000 } ::= { slaMonitorProbeConfigurationEntry 6 } slaMonitorProbeConfigurationMaxResults OBJECT-TYPE SYNTAX INTEGER (0..10000) MAX-ACCESS read-create STATUS current DESCRIPTION "The maximum number of probe results kept in the slaMonitorProbeResultsTable and slaMonitorNamedProbeResultsTable for this particular probe configuration. When the number of entries gets larger, the older entries get discarded. If this variable is written, it will not take effect until the box is reset." DEFVAL { 300 } ::= { slaMonitorProbeConfigurationEntry 7 } slaMonitorProbeConfigurationTestStart OBJECT-TYPE SYNTAX INTEGER { ready (1), execute (2) } MAX-ACCESS read-create STATUS current DESCRIPTION "Setting this variable to 'execute' will cause a test probe packet to be sent for this particular probe configuration." DEFVAL { ready } ::= { slaMonitorProbeConfigurationEntry 8 } slaMonitorProbeConfigurationSource OBJECT-TYPE SYNTAX INTEGER { netmgmt (1), -- configured internal (2) -- internally generated } MAX-ACCESS read-only STATUS current DESCRIPTION "The source of this probe, either configured by management or internally generated by some autoconfiguration process." ::= { slaMonitorProbeConfigurationEntry 9 } slaMonitorProbeConfigurationRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "This variable allows entries to be added and deleted from this table. Note that deleting an entry from this table will delete the associated entries in the slaMonitorProbeResultsTable and slaMonitorNamedProbeResultsTable." ::= { slaMonitorProbeConfigurationEntry 10 } slaMonitorProbeConfigurationTrapLatencyThreshold OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-create STATUS current DESCRIPTION "The number of microseconds of round trip network latency that will cause a trap to be generated for this particular probe. A value of 0 means that no traps will be sent." DEFVAL { 2000000 } ::= { slaMonitorProbeConfigurationEntry 11 } slaMonitorProbeResultsTable OBJECT-TYPE SYNTAX SEQUENCE OF SlaMonitorProbeResultsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of results from probes being sent to destinations." ::= { slaMonitorTableObjects 2 } slaMonitorProbeResultsEntry OBJECT-TYPE SYNTAX SlaMonitorProbeResultsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A particular timing result for a particular probe instance." INDEX { slaMonitorProbeResultsIndex } ::= { slaMonitorProbeResultsTable 1 } SlaMonitorProbeResultsEntry ::= SEQUENCE { slaMonitorProbeResultsIndex Unsigned32, slaMonitorProbeResultsProbeName SlaMonitorProbeName, slaMonitorProbeResultsSequenceNumber INTEGER, slaMonitorProbeResultsSendSeconds INTEGER, slaMonitorProbeResultsSendMicroseconds INTEGER, slaMonitorProbeResultsReceiveSeconds INTEGER, slaMonitorProbeResultsReceiveMicroseconds INTEGER, slaMonitorProbeResultsRemoteLatency INTEGER, slaMonitorProbeResultsPacketType INTEGER, slaMonitorProbeResultsNetworkLatency INTEGER } slaMonitorProbeResultsIndex OBJECT-TYPE SYNTAX Unsigned32 (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "The index into the probe results table. When the maximum value is reached, the object is reset to 1 and the table wraps." ::= { slaMonitorProbeResultsEntry 1 } slaMonitorProbeResultsProbeName OBJECT-TYPE SYNTAX SlaMonitorProbeName MAX-ACCESS read-only STATUS current DESCRIPTION "The name of the particular probe." ::= { slaMonitorProbeResultsEntry 2 } slaMonitorProbeResultsSequenceNumber OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A value which represents the position of this probe packet in the sequence of probe packets sent and received. This value is set to 0 upon reboot." ::= { slaMonitorProbeResultsEntry 3 } slaMonitorProbeResultsSendSeconds OBJECT-TYPE SYNTAX INTEGER UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in seconds since 1970 at which the probe packet left the sender." ::= { slaMonitorProbeResultsEntry 4 } slaMonitorProbeResultsSendMicroseconds OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in microseconds at which the probe packet left the sender." ::= { slaMonitorProbeResultsEntry 5 } slaMonitorProbeResultsReceiveSeconds OBJECT-TYPE SYNTAX INTEGER UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in seconds since 1970 at which the probe packet was received by the sender." ::= { slaMonitorProbeResultsEntry 6 } slaMonitorProbeResultsReceiveMicroseconds OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in microseconds at which the probe packet was received by the sender." ::= { slaMonitorProbeResultsEntry 7 } slaMonitorProbeResultsRemoteLatency OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The number of microseconds of remote latency for this probe packet." ::= { slaMonitorProbeResultsEntry 8 } slaMonitorProbeResultsPacketType OBJECT-TYPE SYNTAX INTEGER { data (0), test (1) } MAX-ACCESS read-only STATUS current DESCRIPTION "An indication of whether the probe packet was a test packet." ::= { slaMonitorProbeResultsEntry 9 } slaMonitorProbeResultsNetworkLatency OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The number of microseconds of network latency for this probe packet." ::= { slaMonitorProbeResultsEntry 10 } slaMonitorNamedProbeResultsTable OBJECT-TYPE SYNTAX SEQUENCE OF SlaMonitorNamedProbeResultsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of results from probes being sent to destinations." ::= { slaMonitorTableObjects 3 } slaMonitorNamedProbeResultsEntry OBJECT-TYPE SYNTAX SlaMonitorNamedProbeResultsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A particular timing result for a particular probe instance." INDEX { slaMonitorNamedProbeResultsProbeName, slaMonitorNamedProbeResultsIndex } ::= { slaMonitorNamedProbeResultsTable 1 } SlaMonitorNamedProbeResultsEntry ::= SEQUENCE { slaMonitorNamedProbeResultsProbeName SlaMonitorProbeName, slaMonitorNamedProbeResultsIndex Unsigned32, slaMonitorNamedProbeResultsSequenceNumber INTEGER, slaMonitorNamedProbeResultsSendDateTime DateAndTimeForm, slaMonitorNamedProbeResultsSendSeconds INTEGER, slaMonitorNamedProbeResultsSendMicroseconds INTEGER, slaMonitorNamedProbeResultsReceiveSeconds INTEGER, slaMonitorNamedProbeResultsReceiveMicroseconds INTEGER, slaMonitorNamedProbeResultsRemoteLatency INTEGER, slaMonitorNamedProbeResultsPacketType INTEGER, slaMonitorNamedProbeResultsNetworkLatency INTEGER } slaMonitorNamedProbeResultsProbeName OBJECT-TYPE SYNTAX SlaMonitorProbeName MAX-ACCESS read-only STATUS current DESCRIPTION "The name of the particular probe." ::= { slaMonitorNamedProbeResultsEntry 1 } slaMonitorNamedProbeResultsIndex OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The index into the named probe results table for this particular probe. When the maximum value (represented by slaMonitorProbeConfigurationMaxResults) is reached, the object is reset to 1 and the table entries wrap." ::= { slaMonitorNamedProbeResultsEntry 2 } slaMonitorNamedProbeResultsSequenceNumber OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A value which represents the position of this probe packet in the sequence of probe packets sent and received. This value is set to 0 upon reboot." ::= { slaMonitorNamedProbeResultsEntry 3 } slaMonitorNamedProbeResultsSendDateTime OBJECT-TYPE SYNTAX DateAndTimeForm MAX-ACCESS read-only STATUS current DESCRIPTION "The date and time at which the probe packet left the sender." ::= { slaMonitorNamedProbeResultsEntry 4 } slaMonitorNamedProbeResultsSendSeconds OBJECT-TYPE SYNTAX INTEGER UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in seconds since 1970 at which the probe packet left the sender." ::= { slaMonitorNamedProbeResultsEntry 5 } slaMonitorNamedProbeResultsSendMicroseconds OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in microseconds at which the probe packet left the sender." ::= { slaMonitorNamedProbeResultsEntry 6 } slaMonitorNamedProbeResultsReceiveSeconds OBJECT-TYPE SYNTAX INTEGER UNITS "seconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in seconds since 1970 at which the probe packet was received by the sender." ::= { slaMonitorNamedProbeResultsEntry 7 } slaMonitorNamedProbeResultsReceiveMicroseconds OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The time in microseconds at which the probe packet was received by the sender." ::= { slaMonitorNamedProbeResultsEntry 8 } slaMonitorNamedProbeResultsRemoteLatency OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The number of microseconds of remote latency for this probe packet." ::= { slaMonitorNamedProbeResultsEntry 9 } slaMonitorNamedProbeResultsPacketType OBJECT-TYPE SYNTAX INTEGER { data (0), test (1) } MAX-ACCESS read-only STATUS current DESCRIPTION "An indication of whether the probe packet was a test packet." ::= { slaMonitorNamedProbeResultsEntry 10 } slaMonitorNamedProbeResultsNetworkLatency OBJECT-TYPE SYNTAX INTEGER UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The number of microseconds of network latency for this probe packet." ::= { slaMonitorNamedProbeResultsEntry 11 } -- ******************************************************************* -- Trap Definitions -- ******************************************************************* slaMonitorTraps OBJECT IDENTIFIER ::= { slaMonitorNotifications 1 } slaMonitorTrapPacketLoss NOTIFICATION-TYPE OBJECTS { slaMonitorProbeConfigurationProbeName, slaMonitorProbeConfigurationTrapPacketLossThreshold } STATUS current DESCRIPTION "The number of packets lost for a particular probe configuration has exceeded the slaMonitorProbeConfigurationTrapPacketLossThreshold." ::= { slaMonitorTraps 1 } slaMonitorTrapProbeRemoteLatency NOTIFICATION-TYPE OBJECTS { slaMonitorProbeResultsProbeName, slaMonitorProbeResultsRemoteLatency, slaMonitorProbeConfigurationTrapRemoteLatencyThreshold } STATUS current DESCRIPTION "The remote latency for a particular probe configuration has exceeded the slaMonitorProbeConfigurationTrapRemoteLatencyThreshold." ::= { slaMonitorTraps 2 } slaMonitorTrapProbeNetworkLatency NOTIFICATION-TYPE OBJECTS { slaMonitorProbeResultsProbeName, slaMonitorProbeResultsNetworkLatency, slaMonitorProbeConfigurationTrapLatencyThreshold } STATUS current DESCRIPTION "The remote latency for a particular probe configuration has exceeded the slaMonitorProbeConfigurationTrapLatencyThreshold." ::= { slaMonitorTraps 3 } slaMonitorPollerTraps OBJECT IDENTIFIER ::= { slaMonitorNotifications 2 } slaMonitorPollerTrapTimeout NOTIFICATION-TYPE OBJECTS { slaMonitorPollerLastUpTime, ipAdEntAddr } STATUS current DESCRIPTION "The timeout threshold value as defined in the probe poller application preferences file has been exceeded for this probe target" ::= { slaMonitorPollerTraps 1} slaMonitorPollerTrapMissedPollThreshold NOTIFICATION-TYPE OBJECTS { slaMonitorPollerLastUpTime, ipAdEntAddr } STATUS current DESCRIPTION "The threshold value for polls missed due to general poller errors as defined in the probe poller application preferences file has been exceeded for this probe target. This does not apply to polls missed due to SNMP timeouts." ::= { slaMonitorPollerTraps 2} -- **************************************************************** -- Conformance Statements -- **************************************************************** slaMonitorCompliances OBJECT IDENTIFIER ::= { slaMonitorConformance 1 } slaMonitorGroups OBJECT IDENTIFIER ::= { slaMonitorConformance 2 } -- -- Compliance Statements -- slaMonitorCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "The compliance statement for all agents that support this MIB. A compliant agent implements all objects defined in this MIB." MODULE -- this module MANDATORY-GROUPS { slaMonitorGroup } ::= { slaMonitorCompliances 1 } -- -- Object Groups slaMonitorGroup OBJECT-GROUP OBJECTS { slaMonitorProbeConfigurationTimeLastModification, slaMonitorAutomaticProbeCreation, slaMonitorCurrentProbeResultsIndex, slaMonitorProbeRetries, slaMonitorProbeTimeout, slaMonitorProbePort, slaMonitorProbeDefaultMaxResults, slaMonitorProbeSequenceStart, slaMonitorProbeDefaultProbingInterval, slaMonitorProbeSendAdminStatus, slaMonitorProbeReceiveAdminStatus, slaMonitorProbeConfigurationProbeName, slaMonitorProbeConfigurationRemoteAddress, slaMonitorProbeConfigurationProbingInterval, slaMonitorProbeConfigurationSecretKey, slaMonitorProbeConfigurationTrapPacketLossThreshold, slaMonitorProbeConfigurationTrapRemoteLatencyThreshold, slaMonitorProbeConfigurationMaxResults, slaMonitorProbeConfigurationTestStart, slaMonitorProbeConfigurationSource, slaMonitorProbeConfigurationRowStatus, slaMonitorProbeConfigurationTrapLatencyThreshold, slaMonitorProbeResultsProbeName, slaMonitorProbeResultsIndex, slaMonitorProbeResultsSequenceNumber, slaMonitorProbeResultsSendSeconds, slaMonitorProbeResultsSendMicroseconds, slaMonitorProbeResultsReceiveSeconds, slaMonitorProbeResultsReceiveMicroseconds, slaMonitorProbeResultsRemoteLatency, slaMonitorProbeResultsPacketType, slaMonitorProbeResultsNetworkLatency, slaMonitorNamedProbeResultsProbeName, slaMonitorNamedProbeResultsIndex, slaMonitorNamedProbeResultsSequenceNumber, slaMonitorNamedProbeResultsSendDateTime, slaMonitorNamedProbeResultsSendSeconds, slaMonitorNamedProbeResultsSendMicroseconds, slaMonitorNamedProbeResultsReceiveSeconds, slaMonitorNamedProbeResultsReceiveMicroseconds, slaMonitorNamedProbeResultsRemoteLatency, slaMonitorNamedProbeResultsPacketType, slaMonitorNamedProbeResultsNetworkLatency } STATUS current DESCRIPTION "The set of all accessible objects in this MIB." ::= { slaMonitorGroups 1 } -- END