-- extracted from draft-ietf-issll-is802-sbm-mib-01.txt -- at Mon Nov 15 17:11:28 1999 SBM-SERVER-MIB DEFINITIONS ::= BEGIN -- ------------------------------------------------------------- -- ------------------------------------------------------------- IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32, Gauge32 FROM SNMPv2-SMI RmonGauge64 FROM HC-RMON-MIB TimeStamp, TruthValue FROM SNMPv2-TC InterfaceIndex FROM IF-MIB SnmpAdminString FROM SNMP-FRAMEWORK-MIB MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF BurstSize, BitRate, MessageSize FROM INTEGRATED-SERVICES-MIB; -- -- REFERENCE -- "Resource Reservation Protocol (RSVP) - Version 1 Functional -- Specification", RFC 2205" -- -- "SBM (Subnet Bandwidth Manager): A Protocol for Admission -- Control over IEEE 802-style Networks" (draft-ietf-issll-sbm-08.txt) sbmMIB MODULE-IDENTITY LAST-UPDATED "9910190000Z" ORGANIZATION "IETF Integrated Services over Specific Lower-Layers Working Group" CONTACT-INFO " John Wroclawski (Co-chair of ISSLL WG) Phone: +1 617 253 7885 Email: jtw@lcs.mit.edu Eric Crawley (Co-chair of ISSLL WG) Phone: +1 978 486 0665 x125 Email: esc@argon.com Editor: Andrew Smith Phone: +1 408 579 2821 Email: andrew@extremenetworks.com Editor: Ramesh Pabbati Phone: +1 425 936 9438 Email: rameshpa@microsoft.com" DESCRIPTION "The SBM MIB module" REVISION "9910190000Z" DESCRIPTION "This version published as draft-ietf-issll-is80-sbm-mib-01." ::= { xxx 1 } sbmMIBObjects OBJECT IDENTIFIER ::= { sbmMIB 1 } -- ------------------------------------------------------------- -- SBM Server Parameters -- ------------------------------------------------------------- sbmConfigTable OBJECT-TYPE SYNTAX SEQUENCE OF SbmConfigEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A table of configuration information per SBM instance. There may be one instance per subnet for a shared LAN. For a switched LAN there may be once instance per LAN segment/network-interface. For a full- duplex switched LAN segment the SBM instance only represents the transmit direction: in this case the receive controls will have no effect. Entries in this table are created automatically by the agent when a new SBM entity is created e.g. by addition of new physical hardware or creation of a new subnet." ::= { sbmMIBObjects 1 } sbmConfigEntry OBJECT-TYPE SYNTAX SbmConfigEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A set of SBM protocol configuration variables for a given SBM instance." INDEX { sbmIndex } ::= { sbmConfigTable 1 } SbmConfigEntry ::= SEQUENCE { sbmIndex Integer32, sbmDescription SnmpAdminString, sbmType INTEGER, sbmIfIndex InterfaceIndex, sbmEnable TruthValue, sbmDsbmRefreshInterval Integer32, sbmDsbmDeadInterval Integer32, sbmDsbmElectionPriority INTEGER, sbmDsbmElectionState INTEGER, sbmDsbmLastStateChange TimeStamp, sbmDsbmMaxNonResvTxBucketRate BitRate, sbmDsbmMaxNonResvTxBucketDepth BurstSize, sbmDsbmMaxNonResvTxPeakRate BitRate, sbmDsbmMaxNonResvTxMinPolicedSize MessageSize, sbmDsbmMaxNonResvTxMaxPacketSize MessageSize } sbmIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current DESCRIPTION "An integer representing a particular SBM instance." ::= { sbmConfigEntry 1 } sbmDescription OBJECT-TYPE SYNTAX SnmpAdminString MAX-ACCESS read-write STATUS current DESCRIPTION "A description of this SBM instance." ::= { sbmConfigEntry 2 } sbmType OBJECT-TYPE SYNTAX INTEGER { sbmTypeOther(1), sbmTypeUnknown(2), sbmTypeSubnet(3), sbmTypeHalfDuplexInterface(4), sbmTypeFullDuplexTxInterface(5) } MAX-ACCESS read-only STATUS current DESCRIPTION "An indicator of the type of LAN segment or domain of control of this SBM instance. A value of sbmTypeSubnet(3) indicates that this SBM instance performs RSVP admission control for a complete IP subnet that is reached through the interface indicated by sbmIfIndex. A value of sbmTypeHalfDuplexInterface(4) indicated that this SBM instance performs RSVP admission control for just the LAN segment that is reached through the interface indicated by sbmIfIndex which is a half-duplex segment with other potential transmitters on it. A value of sbmTypeFullDuplexTxInterface(5) indicates that this SBM instance performs RSVP admission control for just the transmit direction of the full-duplex LAN segment that is reached through the interface indicated by sbmIfIndex: this segment, by definition, will have no other transmitters on it. In this case, the receive statistics in sbmStatsTable may be invalid. A value of sbmTypeUnknown(2) indicates that the domain of control for this SBM instance is not yet known. A value of sbmTypeOther(1) indicates that this SBM instance has some other domain of control." ::= { sbmConfigEntry 3 } sbmIfIndex OBJECT-TYPE SYNTAX InterfaceIndex MAX-ACCESS read-only STATUS current DESCRIPTION "The interface index representing the domain of control of this SBM instance: e.g. this might be a physical interface on a switch device or it might be a subnet represented by a propVirtual(53) interface entry. A value of 0 represents an SBM instance that has no association to any one particular ifTable entry." ::= { sbmConfigEntry 4 } sbmEnable OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "Control the SBM processing of messages. This SBM will only attempt to become DSBM and actually control allocation if it wins the DSBM election procedure, as controlled by the following parameters. If this SBM does not win that procedure but this flag is still true(1) then it will act as a client in the SBM protocol and will forward RSVP/SBM messages to the elected DSBM. If this flag is false(2) then this node will act as a normal RSVP protocol entity." DEFVAL { true } ::= { sbmConfigEntry 5 } sbmDsbmRefreshInterval OBJECT-TYPE SYNTAX Integer32 UNITS "seconds" MAX-ACCESS read-write STATUS current DESCRIPTION "DSBM refresh interval." DEFVAL { 5 } ::= { sbmConfigEntry 6 } sbmDsbmDeadInterval OBJECT-TYPE SYNTAX Integer32 UNITS "seconds" MAX-ACCESS read-write STATUS current DESCRIPTION "DSBM Election dead time." DEFVAL { 15 } ::= { sbmConfigEntry 7 } sbmDsbmElectionPriority OBJECT-TYPE SYNTAX INTEGER (0..255) MAX-ACCESS read-write STATUS current DESCRIPTION "Election bid for this SBM to become DSBM." DEFVAL { 4 } ::= { sbmConfigEntry 8 } sbmDsbmElectionState OBJECT-TYPE SYNTAX INTEGER { sbmStateOther(1), sbmStateUnknown(2), sbmStateDetectDsbm(3), sbmStateElectDsbm(4), sbmStateIdle(5), sbmStateIAmDsbm(6), sbmStateShutdown(7) } MAX-ACCESS read-only STATUS current DESCRIPTION "The current state of DSBM election for this SBM instance. Values of sbmStateOther(1) or sbmStateUnknown(2) indicate that this SBM instance is in a non-standard or an unknown state. Values of sbmStateDetectDsbm(3) and sbmStateElectDsbm(4) indicate that this SBM instance is participating in an DSBM election procedure that has not yet completed. A value of sbmStateIdle(5) indicates that this SBM instance has discovered another SBM within its domain of control that has a higher election priority and so it is acting as a SBM client. A value of sbmStateIAmDsbm(6) indicates that this SBM instance is in control of admission control over its domain of control. A value of sbmStateShutdown(7) indicates that this SBM instance is not participating in DSBM election." REFERENCE "draft-ietf-issll-is802-sbm-08 Appendix A." ::= { sbmConfigEntry 9 } sbmDsbmLastStateChange OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The time at which this SBM instance entered the current DSBM election state." ::= { sbmConfigEntry 10 } sbmDsbmMaxNonResvTxBucketRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-write STATUS current DESCRIPTION "Maximum Bucket rate that can be sent with out a reservation. This is one of the parameters of the effective Tspec that senders are allowed to use before any reservation is in place." REFERENCE "RFC2210 section 3.1" ::= { sbmConfigEntry 11 } sbmDsbmMaxNonResvTxBucketDepth OBJECT-TYPE SYNTAX BurstSize UNITS "bytes" MAX-ACCESS read-write STATUS current DESCRIPTION "Maximum Bucket Depth that can be sent with out a reservation. This is one of the parameters of the effective Tspec that senders are allowed to use before any reservation is in place." REFERENCE "RFC2210 section 3.1" ::= { sbmConfigEntry 12 } sbmDsbmMaxNonResvTxPeakRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-write STATUS current DESCRIPTION "Maximum Peak rate that can be sent with out a reservation. This is one of the parameters of the effective Tspec that senders are allowed to use before any reservation is in place." REFERENCE "RFC2210 section 3.1" ::= { sbmConfigEntry 13 } sbmDsbmMaxNonResvTxMinPolicedSize OBJECT-TYPE SYNTAX MessageSize UNITS "bytes" MAX-ACCESS read-write STATUS current DESCRIPTION "Minimum Policed size that can be sent with out a reservation. This is one of the parameters of the effective Tspec that senders are allowed to use before any reservation is in place." REFERENCE "RFC2210 section 3.1" ::= { sbmConfigEntry 14 } sbmDsbmMaxNonResvTxMaxPacketSize OBJECT-TYPE SYNTAX MessageSize UNITS "bytes" MAX-ACCESS read-write STATUS current DESCRIPTION "Maximum packet length that can be sent with out a reservation. This is one of the parameters of the effective Tspec that senders are allowed to use before any reservation is in place." REFERENCE "RFC2210 section 3.1" ::= { sbmConfigEntry 15 } -- ------------------------------------------------------------- -- SBM Traffic Class Mapping Table -- ------------------------------------------------------------- sbmTrafficClassConfigTable OBJECT-TYPE SYNTAX SEQUENCE OF SbmTrafficClassConfigEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A table of parameters for configuring the characteristics of the mapping of sessions into layer-2 traffic classes." ::= { sbmMIBObjects 2 } sbmTrafficClassConfigEntry OBJECT-TYPE SYNTAX SbmTrafficClassConfigEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A set of RSVP protocol configuration variables for a given SBM instance." INDEX { sbmIndex, sbmTrafficClass } ::= { sbmTrafficClassConfigTable 1 } SbmTrafficClassConfigEntry ::= SEQUENCE { sbmTrafficClass INTEGER (0..7), sbmDelayBoundTarget Integer32, sbmTrafficClassEnabled TruthValue } sbmTrafficClass OBJECT-TYPE SYNTAX INTEGER (0..7) MAX-ACCESS not-accessible STATUS current DESCRIPTION "Traffic Class (802.1p user_priority)." REFERENCE "ISO/IEC 15802-3: 1998" ::= { sbmTrafficClassConfigEntry 1 } sbmDelayBoundTarget OBJECT-TYPE SYNTAX Integer32 UNITS "micro-seconds" MAX-ACCESS read-write STATUS current DESCRIPTION "Target delay bound on flows admitted to this class. A value of 0 indicates that there is no quantitative delay bound target associated with this class. Suitable default values for these targets are discussed in a companion document." REFERENCE "draft-ietf-issll-is802-svc-mapping-04.txt" ::= { sbmTrafficClassConfigEntry 2 } sbmTrafficClassEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "Enable admission of flows to this class." DEFVAL { true } ::= { sbmTrafficClassConfigEntry 3 } -- ------------------------------------------------------------- -- RSVP Configuration Parameters -- ------------------------------------------------------------- sbmRsvpConfigTable OBJECT-TYPE SYNTAX SEQUENCE OF SbmRsvpConfigEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A table of configuration information for the RSVP protocol per SBM instance. There may be one instance per subnet for a shared LAN. For a switched LAN there may be once instance per LAN segment/network-interface. For a full-duplex switched LAN segment the SBM instance only represents the transmit direction: in this case the receive controls will have no effect. Entries in this table are created automatically by the agent when a new SBM entity is created e.g. by addition of new physical hardware or creation of a new subnet." ::= { sbmMIBObjects 3 } sbmRsvpConfigEntry OBJECT-TYPE SYNTAX SbmRsvpConfigEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A set of RSVP protocol configuration variables for a given SBM instance." INDEX { sbmIndex } ::= { sbmRsvpConfigTable 1 } SbmRsvpConfigEntry ::= SEQUENCE { sbmRsvpCopsEnabled TruthValue, sbmRsvpSenderPolicyEnabled TruthValue, sbmRsvpReceiverPolicyEnabled TruthValue } sbmRsvpCopsEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "Enable outsourcing of local policy decisions via the COPS protocol." DEFVAL { false } ::= { sbmRsvpConfigEntry 1 } sbmRsvpSenderPolicyEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "Enable processing of RSVP policy objects in PATH messages." DEFVAL { false } ::= { sbmRsvpConfigEntry 2 } sbmRsvpReceiverPolicyEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "Enable processing of RSVP policy objects in RESV messages." DEFVAL { false } ::= { sbmRsvpConfigEntry 3 } -- ------------------------------------------------------------- -- SBM statistics -- ------------------------------------------------------------- sbmStatsTable OBJECT-TYPE SYNTAX SEQUENCE OF SbmStatsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A table of statistics per SBM instance. There may be one instance per subnet for a shared LAN. For a switched LAN there may be once instance per LAN segment/network-interface. For a full-duplex switched LAN segment the SBM instance only represents the transmit direction: in this case the receive statistics will not be valid. Entries in this table are created automatically by the agent when a new SBM entity is created e.g. by addition of new physical hardware or creation of a new subnet. Counters are continuous from restart of the agent." ::= { sbmMIBObjects 4 } sbmStatsEntry OBJECT-TYPE SYNTAX SbmStatsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A set of SBM protocol statistics for a given SBM instance." INDEX { sbmIndex } ::= { sbmStatsTable 1 } SbmStatsEntry ::= SEQUENCE { sbmStatsSbmSentBytes Counter32, sbmStatsSbmReceivedBytes Counter32, sbmStatsReceivedRsvpPathMsgs Counter32, sbmStatsReceivedRsvpResvMsgs Counter32, sbmStatsReceivedRsvpPathErrMsgs Counter32, sbmStatsReceivedRsvpResvErrMsgs Counter32, sbmStatsReceivedRsvpPathTearMsgs Counter32, sbmStatsReceivedRsvpResvTearMsgs Counter32, sbmStatsReceivedRsvpConfirmMsgs Counter32, sbmStatsReceivedRsvpBadMsgs Counter32, sbmStatsSentRsvpPathMsgs Counter32, sbmStatsSentRsvpResvMsgs Counter32, sbmStatsSentRsvpPathErrMsgs Counter32, sbmStatsSentRsvpResvErrMsgs Counter32, sbmStatsSentRsvpPathTearMsgs Counter32, sbmStatsSentRsvpResvTearMsgs Counter32, sbmStatsSentRsvpConfirmMsgs Counter32, sbmStatsAdmissionControlFailures Counter32, sbmStatsPolicyControlFailures Counter32, sbmStatsOtherFailures Counter32, sbmStatsInBlockadeStateResvs Counter32, sbmStatsResvTimeOuts Counter32, sbmStatsPathTimeOuts Counter32, sbmStatsReceiveFailsBigMsg Counter32, sbmStatsSendFailsBigMsg Counter32, sbmStatsReceiveFailsNoResource Counter32, sbmStatsSendFailsNoResource Counter32, sbmStatsActiveOutgoingFlows Gauge32, sbmStatsAllocatedOutgoingBits Gauge32, sbmStatsMaxAllocatedBandwidthBits Gauge32, sbmStatsHCAllocatedOutgoingBits RmonGauge64, sbmStatsHCMaxAllocatedBandwidthBits RmonGauge64 } sbmStatsSbmSentBytes OBJECT-TYPE SYNTAX Counter32 UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "The number of bytes of RSVP messages sent by this SBM instance. This includes only the contents of the messages, not any IP or lower-layer framing headers." ::= { sbmStatsEntry 1 } sbmStatsSbmReceivedBytes OBJECT-TYPE SYNTAX Counter32 UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "The number of bytes of RSVP messages received by this SBM instance. This includes only the contents of the messages, not any IP or lower-layer framing headers." ::= { sbmStatsEntry 2 } sbmStatsReceivedRsvpPathMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP PATH messages received by this SBM instance." ::= { sbmStatsEntry 3 } sbmStatsReceivedRsvpResvMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP RESV messages received by this SBM instance." ::= { sbmStatsEntry 4 } sbmStatsReceivedRsvpPathErrMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP PATH ERROR messages received by this SBM instance." ::= { sbmStatsEntry 5 } sbmStatsReceivedRsvpResvErrMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP RESV ERROR messages received by this SBM instance." ::= { sbmStatsEntry 6 } sbmStatsReceivedRsvpPathTearMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP PATH TEAR messages received by this SBM instance." ::= { sbmStatsEntry 7 } sbmStatsReceivedRsvpResvTearMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP RESV TEAR messages received by this SBM instance." ::= { sbmStatsEntry 8 } sbmStatsReceivedRsvpConfirmMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP CONFIRM messages received by this SBM instance." ::= { sbmStatsEntry 9 } sbmStatsReceivedRsvpBadMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP messages received by this SBM instance with bad syntax or semantics." ::= { sbmStatsEntry 10 } sbmStatsSentRsvpPathMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP PATH messages sent by this SBM instance." ::= { sbmStatsEntry 11 } sbmStatsSentRsvpResvMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP RESV messages sent by this SBM instance." ::= { sbmStatsEntry 12 } sbmStatsSentRsvpPathErrMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP PATH ERROR messages sent by this SBM instance." ::= { sbmStatsEntry 13 } sbmStatsSentRsvpResvErrMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP RESV ERROR messages sent by this SBM instance." ::= { sbmStatsEntry 14 } sbmStatsSentRsvpPathTearMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP PATH TEAR messages sent by this SBM instance." ::= { sbmStatsEntry 15 } sbmStatsSentRsvpResvTearMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP RESV TEAR messages sent by this SBM instance." ::= { sbmStatsEntry 16 } sbmStatsSentRsvpConfirmMsgs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of RSVP CONFIRM messages sent by this SBM instance." ::= { sbmStatsEntry 17 } sbmStatsAdmissionControlFailures OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP session was denied due to lack of data-path resources by this SBM instance." ::= { sbmStatsEntry 18 } sbmStatsPolicyControlFailures OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP session was denied due to failure of policy controls applied by this SBM instance." ::= { sbmStatsEntry 19 } sbmStatsOtherFailures OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP session was denied by this SBM instance due to other reasons." ::= { sbmStatsEntry 20 } sbmStatsInBlockadeStateResvs OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP message caused the creation of blockade state by this SBM instance." ::= { sbmStatsEntry 21 } sbmStatsResvTimeOuts OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP session was torn down by this SBM instance due to timeout of RESV refreshes." ::= { sbmStatsEntry 22 } sbmStatsPathTimeOuts OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP session was torn down by this SBM instance due to timeout of PATH refreshes." ::= { sbmStatsEntry 23 } sbmStatsReceiveFailsBigMsg OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP message was received by this SBM instance but discarded due to excessive size." ::= { sbmStatsEntry 24 } sbmStatsSendFailsBigMsg OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP message should have been transmitted by this SBM instance but was prevented due to excessive size." ::= { sbmStatsEntry 25 } sbmStatsReceiveFailsNoResource OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP message was received by this SBM instance but was discarded due to insufficient resources to process it." ::= { sbmStatsEntry 26 } sbmStatsSendFailsNoResource OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times an RSVP message should have been transmitted by this SBM instance but was prevented due to insufficient resources to send it." ::= { sbmStatsEntry 27 } sbmStatsActiveOutgoingFlows OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "The current number of flows reserved by RSVP by this SBM instance that are outgoing on this interface." ::= { sbmStatsEntry 28 } sbmStatsAllocatedOutgoingBits OBJECT-TYPE SYNTAX Gauge32 UNITS "bps" MAX-ACCESS read-only STATUS current DESCRIPTION "The current allocation of bandwidth to flows reserved by RSVP by this SBM instance that are outgoing on this interface." ::= { sbmStatsEntry 29 } sbmStatsMaxAllocatedBandwidthBits OBJECT-TYPE SYNTAX Gauge32 UNITS "bps" MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum allocation of bandwidth to flows reserved by RSVP by this SBM instance that are outgoing on this interface that has ever occured since the agent restarted." ::= { sbmStatsEntry 30 } sbmStatsHCAllocatedOutgoingBits OBJECT-TYPE SYNTAX RmonGauge64 UNITS "bps" MAX-ACCESS read-only STATUS current DESCRIPTION "The current allocation of bandwidth to flows reserved by RSVP by this SBM instance that are outgoing on this interface. This is a high-capacity version of sbmStatsAllocatedOutgoingBits." ::= { sbmStatsEntry 31 } sbmStatsHCMaxAllocatedBandwidthBits OBJECT-TYPE SYNTAX RmonGauge64 UNITS "bps" MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum allocation of bandwidth to flows reserved by RSVP by this SBM instance that are outgoing on this interface that has ever occured since the agent restarted. This is a high-capacity version of sbmStatsMaxAllocatedBandwidthBits." ::= { sbmStatsEntry 32 } -- ------------------------------------------------------------- -- Conformance Information -- ------------------------------------------------------------- sbmConformance OBJECT IDENTIFIER ::= { sbmMIB 2 } sbmGroups OBJECT IDENTIFIER ::= { sbmConformance 1 } sbmCompliances OBJECT IDENTIFIER ::= { sbmConformance 2 } -- ------------------------------------------------------------- -- units of conformance -- ------------------------------------------------------------- sbmSbmConfigGroup OBJECT-GROUP OBJECTS { sbmDescription, sbmType, sbmIfIndex, sbmEnable, sbmDsbmRefreshInterval, sbmDsbmDeadInterval, sbmDsbmElectionPriority, sbmDsbmElectionState, sbmDsbmLastStateChange, sbmDsbmMaxNonResvTxBucketRate, sbmDsbmMaxNonResvTxBucketDepth, sbmDsbmMaxNonResvTxPeakRate, sbmDsbmMaxNonResvTxMinPolicedSize, sbmDsbmMaxNonResvTxMaxPacketSize, sbmDelayBoundTarget, sbmTrafficClassEnabled } STATUS current DESCRIPTION "A collection of objects providing per-SBM control over operation of the SBM protocol." ::= { sbmGroups 1 } sbmRsvpConfigGroup OBJECT-GROUP OBJECTS { sbmRsvpCopsEnabled, sbmRsvpSenderPolicyEnabled, sbmRsvpReceiverPolicyEnabled } STATUS current DESCRIPTION "A collection of objects providing per-SBM control over operation of the RSVP protocol." ::= { sbmGroups 2 } sbmSbmStatisticsGroup OBJECT-GROUP OBJECTS { sbmStatsSbmSentBytes, sbmStatsSbmReceivedBytes, sbmStatsReceivedRsvpPathMsgs, sbmStatsReceivedRsvpResvMsgs, sbmStatsReceivedRsvpPathErrMsgs, sbmStatsReceivedRsvpResvErrMsgs, sbmStatsReceivedRsvpPathTearMsgs, sbmStatsReceivedRsvpResvTearMsgs, sbmStatsReceivedRsvpConfirmMsgs, sbmStatsReceivedRsvpBadMsgs, sbmStatsSentRsvpPathMsgs, sbmStatsSentRsvpResvMsgs, sbmStatsSentRsvpPathErrMsgs, sbmStatsSentRsvpResvErrMsgs, sbmStatsSentRsvpPathTearMsgs, sbmStatsSentRsvpResvTearMsgs, sbmStatsSentRsvpConfirmMsgs, sbmStatsAdmissionControlFailures, sbmStatsPolicyControlFailures, sbmStatsOtherFailures, sbmStatsInBlockadeStateResvs, sbmStatsResvTimeOuts, sbmStatsPathTimeOuts, sbmStatsReceiveFailsBigMsg, sbmStatsSendFailsBigMsg, sbmStatsReceiveFailsNoResource, sbmStatsSendFailsNoResource, sbmStatsActiveOutgoingFlows, sbmStatsAllocatedOutgoingBits, sbmStatsMaxAllocatedBandwidthBits } STATUS current DESCRIPTION "A collection of objects providing per-SBM statistics of RSVP protocol operations." ::= { sbmGroups 3 } sbmSbmHCStatisticsGroup OBJECT-GROUP OBJECTS { sbmStatsHCAllocatedOutgoingBits, sbmStatsHCMaxAllocatedBandwidthBits } STATUS current DESCRIPTION "A collection of objects providing per-SBM statistics of RSVP protocol operations for high-capacity interfaces, defined as those that have the value of the corresponding instance of ifSpeed greater than 4^^32-1 bits/second." ::= { sbmGroups 4 } -- ------------------------------------------------------------- -- compliance statements -- ------------------------------------------------------------- sbmCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "The compliance statement for SNMP entities which manage SBM protocol entities." MODULE -- this module MANDATORY-GROUPS { sbmSbmConfigGroup, sbmRsvpConfigGroup, sbmSbmStatisticsGroup } GROUP sbmSbmHCStatisticsGroup DESCRIPTION "This group is mandatory for SBM implementations that support high-capacity interfaces. It is optional for all other implementations." OBJECT sbmRsvpEnabled MIN-ACCESS read-only DESCRIPTION "Read-only access is allowed." ::= { sbmCompliances 1 } END