MARCONI-RSVPTE-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Gauge32, NOTIFICATION-TYPE, Integer32, mib-2, enterprises, IpAddress, TimeTicks FROM SNMPv2-SMI TEXTUAL-CONVENTION, TruthValue, RowStatus, TimeStamp, TestAndIncr, TimeInterval, DisplayString FROM SNMPv2-TC MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF Port, SessionNumber, SessionType, Protocol, QosService, intSrvFlowStatus, MessageSize, BitRate, BurstSize FROM INTEGRATED-SERVICES-MIB ifIndex, InterfaceIndex FROM IF-MIB admin FROM Fore-Common-MIB; -- ------------------------------------------------------------ -- -- -- The following OBJECT IDENTIFIER definition should be moved to -- some other location, to conform with the statement in RFC 1442 -- that the MODULE-IDENTITY section must appear immediately after -- any IMPORTs or EXPORTs statements. -- -- However, some MIB utilities don't like MODULE-IDENTITY OIDs of -- the form { enterprises atmForum(353) ... 1 }. Separate OBJECT -- IDENTIFIER definitions appear to be more widely accepted - so, -- in the interests of compatibility, it remains. -- -- ------------------------------------------------------------ -- marconiRSVPTEMIB MODULE-IDENTITY LAST-UPDATED "9912100315Z" ORGANIZATION "MARCONI Plc" CONTACT-INFO "Aman Devgan Internet : adevgan@marconi.com Postal: Marconi Plc 1593 Spring Hill Road 5th Floor Vienna, VA 22182 Phone: 703-245-4566" DESCRIPTION "This module defines a portion of the proprietary management information base (MIB) for managing RSVP-TE protocol." ::= { admin 26 } rsvpteObjects OBJECT IDENTIFIER ::= { marconiRSVPTEMIB 1 } -- tables rsvpteGenObjects OBJECT IDENTIFIER ::= { marconiRSVPTEMIB 2 } -- global objects RefreshInterval ::= TEXTUAL-CONVENTION DISPLAY-HINT "d" STATUS current DESCRIPTION "The number of milliseconds that are expected to elapse between refreshes of path or reserva- tion state. Unrefreshed Path or reservation state is removed after a small multiple of this period." SYNTAX INTEGER (0..'7FFFFFFF'h) LsrRole ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The role of a label-switched router: ingress, egress or transit." SYNTAX INTEGER { ingress (1), transit (2), egress (3) } -- Status Values Status ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The status of an interface: 'enabled' indicates that it is willing to communicate with other RSVPTE switches, while 'disabled' indicates that it is not." SYNTAX INTEGER { enabled (1), disabled (2) } rsvpteAdminStat OBJECT-TYPE SYNTAX Status MAX-ACCESS read-write STATUS current DESCRIPTION "The admin status of the RSVPTE instance. The value is either 'enabled' or 'disabled'." ::= { rsvpteGenObjects 1 } -- RsvpteBeType values RsvpteBeType ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The type of TSPEC/ADSPEC used to represent a best-effort service in RSVPTE. Null Service is based on RFC 2997. CoS is deprecated (expired RSVPTE-TE draft). Controlled Load is an informal mechanism that the oldest implementation use." SYNTAX INTEGER { nullSvc (1), cos (2), controlledLoad (3) } rsvpteBeType OBJECT-TYPE SYNTAX RsvpteBeType MAX-ACCESS read-write STATUS current DESCRIPTION "The type of TSPEC/ADSPEC used to represent best-effort service when originating an RSVPTE Path." ::= { rsvpteGenObjects 2 } rsvpteIntServType OBJECT-TYPE SYNTAX QosService MAX-ACCESS read-write STATUS current DESCRIPTION "The type of service RSVPTE will report to LSP Signaling when terminating a Path message with an IntServ TSPEC and an ADSPEC with no services (or a missing ADSPEC)." ::= { rsvpteGenObjects 3 } rsvpteMsgIdEpoch OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-create STATUS current DESCRIPTION " Epoch for all outgoing Message IDs." ::= { rsvpteGenObjects 4 } -- The RSVPTE Session Statistics Database displays statistics -- relating to the number of senders and receivers in each -- session. rsvpteSessionTable OBJECT-TYPE SYNTAX SEQUENCE OF RsvpteSessionEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A table of all sessions seen by a given sys- tem." ::= { rsvpteObjects 1 } rsvpteSessionEntry OBJECT-TYPE SYNTAX RsvpteSessionEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A single session seen by a given system." INDEX { rsvpteSessionNumber } ::= { rsvpteSessionTable 1 } RsvpteSessionEntry ::= SEQUENCE { rsvpteSessionNumber SessionNumber, rsvpteSessionType SessionType, rsvpteSessionSenders Gauge32, rsvpteSessionReceivers Gauge32, rsvpteSessionTeiAddr IpAddress, rsvpteSessionTunnelId INTEGER, rsvpteSessionExtTunnelId IpAddress, rsvpteSessionRequests Integer32 } rsvpteSessionNumber OBJECT-TYPE SYNTAX SessionNumber MAX-ACCESS not-accessible STATUS current DESCRIPTION "The number of this session. This is for SNMP Indexing purposes only and has no relation to any protocol value." ::= { rsvpteSessionEntry 1 } rsvpteSessionType OBJECT-TYPE SYNTAX SessionType MAX-ACCESS read-only STATUS current DESCRIPTION "The type of session (IP4, IP6, IP6 with flow information, etc)." ::= { rsvpteSessionEntry 2 } rsvpteSessionSenders OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of distinct senders currently known to be part of this session." ::= { rsvpteSessionEntry 3 } rsvpteSessionReceivers OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of reservations being requested of this system for this session." ::= { rsvpteSessionEntry 4 } rsvpteSessionTeiAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of the egress node for the tunnel." ::= { rsvpteSessionEntry 5 } rsvpteSessionTunnelId OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A 16-bit identifier used in this session that remains constant over the life of the tunnel." ::= { rsvpteSessionEntry 6 } rsvpteSessionExtTunnelId OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "A 32-bit identifier used in this session that remains constant over the life of the tunnel. Normally set to all zeros. Ingress nodes that wish to narrow the scope of a session to the ingress-egress pair may place their IPv4 address here as a globally unique identifier." ::= { rsvpteSessionEntry 7 } rsvpteSessionRequests OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of Resv generated for this session." ::= { rsvpteSessionEntry 8 } -- The RSVPTE Session Sender Database contains the information -- displayed by senders regarding their potential contribution -- to session data content. It is in essence a list of the -- valid PATH messages that the RSVPTE Router or Host is receiving. rsvpteSenderTable OBJECT-TYPE SYNTAX SEQUENCE OF RsvpteSenderEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Information describing the state information displayed by senders in PATH messages." ::= { rsvpteObjects 2 } rsvpteSenderEntry OBJECT-TYPE SYNTAX RsvpteSenderEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Information describing the state information displayed by a single sender's PATH message." INDEX { rsvpteSessionNumber, rsvpteSenderNumber } ::= { rsvpteSenderTable 1 } RsvpteSenderEntry ::= SEQUENCE { rsvpteSenderNumber SessionNumber, rsvpteSenderSessionType SessionType, rsvpteSenderRole LsrRole, rsvpteSenderHopAddr IpAddress, rsvpteSenderHopLih Integer32, rsvpteSenderInterface InterfaceIndex, rsvpteSenderServType INTEGER, rsvpteSenderTSpecRate BitRate, rsvpteSenderTSpecPeakRate BitRate, rsvpteSenderTSpecBurst BurstSize, rsvpteSenderTSpecMinPU MessageSize, rsvpteSenderTSpecMaxTU MessageSize, rsvpteSenderInterval RefreshInterval, rsvpteSenderMarconiLspType INTEGER, rsvpteSenderLastChange TimeStamp, rsvpteSenderAdspecBreak TruthValue, rsvpteSenderAdspecHopCount INTEGER, rsvpteSenderAdspecPathBw BitRate, rsvpteSenderAdspecMinLatency Integer32, rsvpteSenderAdspecMtu INTEGER, rsvpteSenderAdspecGuaranteedSvc TruthValue, rsvpteSenderAdspecGuaranteedBreak TruthValue, rsvpteSenderAdspecGuaranteedCtot Integer32, rsvpteSenderAdspecGuaranteedDtot Integer32, rsvpteSenderAdspecGuaranteedCsum Integer32, rsvpteSenderAdspecGuaranteedDsum Integer32, rsvpteSenderAdspecGuaranteedHopCount INTEGER, rsvpteSenderAdspecGuaranteedPathBw BitRate, rsvpteSenderAdspecGuaranteedMinLatency Integer32, rsvpteSenderAdspecGuaranteedMtu INTEGER, rsvpteSenderAdspecCtrlLoadSvc TruthValue, rsvpteSenderAdspecCtrlLoadBreak TruthValue, rsvpteSenderAdspecCtrlLoadHopCount INTEGER, rsvpteSenderAdspecCtrlLoadPathBw BitRate, rsvpteSenderAdspecCtrlLoadMinLatency Integer32, rsvpteSenderAdspecCtrlLoadMtu INTEGER, rsvpteSenderTTL INTEGER, rsvpteSenderTeiAddr IpAddress, rsvpteSenderTunnelId INTEGER, rsvpteSenderExtTunnelId IpAddress, rsvpteSenderTunnelSenderAddr IpAddress, rsvpteSenderLspId INTEGER, rsvpteSenderSessionName DisplayString, rsvpteSenderPhopIfAddr IpAddress, rsvpteSenderSetupPriority Integer32, rsvpteSenderHoldingPriority Integer32, rsvpteSenderLocalProtection INTEGER, rsvpteSenderLabelRecord INTEGER, rsvpteSenderSEStyleRequest INTEGER, rsvpteSenderAffinitiesExcludeAny Integer32, rsvpteSenderAffinitiesIncludeAny Integer32, rsvpteSenderAffinitiesIncludeAll Integer32, rsvpteSenderDiffservLlspPsc Integer32, rsvpteSenderDiffservElspPhb Integer32, rsvpteSenderDiffservElspExpMask Integer32, rsvpteSenderInMsgIdEpoch Integer32, rsvpteSenderInMsgIdId Integer32, rsvpteSenderOutMsgId Integer32, rsvpteSenderDiffservteClasstype INTEGER } rsvpteSenderSessionType OBJECT-TYPE SYNTAX SessionType MAX-ACCESS read-only STATUS current DESCRIPTION "The type of session (IP4, IP6, IP6 with flow information, etc)." ::= { rsvpteSenderEntry 1 } rsvpteSenderRole OBJECT-TYPE SYNTAX LsrRole MAX-ACCESS read-only STATUS current DESCRIPTION "The role this router is acting as for this session. Valid values are ingress, transit or egress" ::= { rsvpteSenderEntry 2 } rsvpteSenderHopAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "The address used by the previous RSVPTE hop (which may be the original sender)." ::= { rsvpteSenderEntry 3 } rsvpteSenderHopLih OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The Logical Interface Handle used by the pre- vious RSVPTE hop (which may be the original sender)." ::= { rsvpteSenderEntry 4 } rsvpteSenderInterface OBJECT-TYPE SYNTAX InterfaceIndex MAX-ACCESS read-only STATUS current DESCRIPTION "The ifIndex value of the interface on which this PATH message was most recently received." ::= { rsvpteSenderEntry 5 } rsvpteSenderServType OBJECT-TYPE SYNTAX INTEGER { cos(1), intserv(2) } MAX-ACCESS read-only STATUS current DESCRIPTION "The service type of this session. For COS service type, the following TSpec parameters do not make sense" ::= { rsvpteSenderEntry 6 } rsvpteSenderTSpecRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "The Average Bit Rate of the sender's data stream. Within a transmission burst, the ar- rival rate may be as fast as rsvpteSenderTSpec- PeakRate (if supported by the service model); however, averaged across two or more burst in- tervals, the rate should not exceed rsvpteSen- derTSpecRate. Note that this is a prediction, often based on the general capability of a type of codec or particular encoding; the measured average rate may be significantly lower." ::= { rsvpteSenderEntry 7 } rsvpteSenderTSpecPeakRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "The Peak Bit Rate of the sender's data stream. Traffic arrival is not expected to exceed this rate at any time, apart from the effects of jitter in the network. If not specified in the TSpec, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 8 } rsvpteSenderTSpecBurst OBJECT-TYPE SYNTAX BurstSize UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "The size of the largest burst expected from the sender at a time." ::= { rsvpteSenderEntry 9 } rsvpteSenderTSpecMinPU OBJECT-TYPE SYNTAX MessageSize MAX-ACCESS read-only STATUS current DESCRIPTION "The minimum policed message size for this flow. The policing algorithm will treat smaller messages as though they are this size." ::= { rsvpteSenderEntry 10 } rsvpteSenderTSpecMaxTU OBJECT-TYPE SYNTAX MessageSize MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum message size for this flow. The admission algorithm will reject TSpecs whose Maximum Transmission Unit, plus the interface headers, exceed the interface MTU." ::= { rsvpteSenderEntry 11 } rsvpteSenderInterval OBJECT-TYPE SYNTAX RefreshInterval MAX-ACCESS read-only STATUS current DESCRIPTION "The interval between refresh messages as ad- vertised by the Previous Hop." ::= { rsvpteSenderEntry 12 } rsvpteSenderMarconiLspType OBJECT-TYPE SYNTAX INTEGER (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "Marconi LSP type associated with this sender." ::= { rsvpteSenderEntry 13 } rsvpteSenderLastChange OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The time of the last change in this PATH mes- sage; This is either the first time it was re- ceived or the time of the most recent change in parameters." ::= { rsvpteSenderEntry 14 } rsvpteSenderAdspecBreak OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "The global break bit general characterization parameter from the ADSPEC. If TRUE, at least one non-IS hop was detected in the path. If FALSE, no non-IS hops were detected." ::= { rsvpteSenderEntry 15 } rsvpteSenderAdspecHopCount OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "The hop count general characterization parame- ter from the ADSPEC. A return of zero or noSuchValue indicates one of the following con- ditions: the invalid bit was set the parameter was not present" ::= { rsvpteSenderEntry 16 } rsvpteSenderAdspecPathBw OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "The path bandwidth estimate general character- ization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the fol- lowing conditions: the invalid bit was set the parameter was not present" ::= { rsvpteSenderEntry 17 } rsvpteSenderAdspecMinLatency OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "The minimum path latency general characteriza- tion parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the fol- lowing conditions: the invalid bit was set the parameter was not present" ::= { rsvpteSenderEntry 18 } rsvpteSenderAdspecMtu OBJECT-TYPE SYNTAX INTEGER (0..65535) UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "The composed Maximum Transmission Unit general characterization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following conditions: the invalid bit was set the parameter was not present" ::= { rsvpteSenderEntry 19 } rsvpteSenderAdspecGuaranteedSvc OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If TRUE, the ADSPEC contains a Guaranteed Ser- vice fragment. If FALSE, the ADSPEC does not contain a Guaranteed Service fragment." ::= { rsvpteSenderEntry 20 } rsvpteSenderAdspecGuaranteedBreak OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If TRUE, the Guaranteed Service fragment has its 'break' bit set, indicating that one or more nodes along the path do not support the guaranteed service. If FALSE, and rsvpteSen- derAdspecGuaranteedSvc is TRUE, the 'break' bit is not set. If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns FALSE or noSuchValue." ::= { rsvpteSenderEntry 21 } rsvpteSenderAdspecGuaranteedCtot OBJECT-TYPE SYNTAX Integer32 UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the end-to-end composed value for the guaranteed service 'C' parameter. A return of zero or noSuchValue indicates one of the fol- lowing conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 22 } rsvpteSenderAdspecGuaranteedDtot OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the end-to-end composed value for the guaranteed service 'D' parameter. A return of zero or noSuchValue indicates one of the fol- lowing conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 23 } rsvpteSenderAdspecGuaranteedCsum OBJECT-TYPE SYNTAX Integer32 UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the composed value for the guaranteed ser- vice 'C' parameter since the last reshaping point. A return of zero or noSuchValue indi- cates one of the following conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 24 } rsvpteSenderAdspecGuaranteedDsum OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the composed value for the guaranteed ser- vice 'D' parameter since the last reshaping point. A return of zero or noSuchValue indi- cates one of the following conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 25 } rsvpteSenderAdspecGuaranteedHopCount OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the service-specific override of the hop count general characterization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 26 } rsvpteSenderAdspecGuaranteedPathBw OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the service-specific override of the path bandwidth estimate general characterization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following con- ditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 27 } rsvpteSenderAdspecGuaranteedMinLatency OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the service-specific override of the minimum path latency general characterization parameter from the ADSPEC. A return of zero or noSuch- Value indicates one of the following condi- tions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 28 } rsvpteSenderAdspecGuaranteedMtu OBJECT-TYPE SYNTAX INTEGER (0..65535) UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecGuaranteedSvc is TRUE, this is the service-specific override of the com- posed Maximum Transmission Unit general charac- terization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecGuaranteedSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 29 } rsvpteSenderAdspecCtrlLoadSvc OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If TRUE, the ADSPEC contains a Controlled Load Service fragment. If FALSE, the ADSPEC does not contain a Controlled Load Service frag- ment." ::= { rsvpteSenderEntry 30 } rsvpteSenderAdspecCtrlLoadBreak OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If TRUE, the Controlled Load Service fragment has its 'break' bit set, indicating that one or more nodes along the path do not support the controlled load service. If FALSE, and rsvpteSenderAdspecCtrlLoadSvc is TRUE, the 'break' bit is not set. If rsvpteSenderAdspecCtrlLoadSvc is FALSE, this returns FALSE or noSuchValue." ::= { rsvpteSenderEntry 31 } rsvpteSenderAdspecCtrlLoadHopCount OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecCtrlLoadSvc is TRUE, this is the service-specific override of the hop count general characterization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecCtrlLoadSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 32 } rsvpteSenderAdspecCtrlLoadPathBw OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecCtrlLoadSvc is TRUE, this is the service-specific override of the path bandwidth estimate general characterization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following con- ditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecCtrlLoadSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 33 } rsvpteSenderAdspecCtrlLoadMinLatency OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecCtrlLoadSvc is TRUE, this is the service-specific override of the minimum path latency general characterization parameter from the ADSPEC. A return of zero or noSuch- Value indicates one of the following condi- tions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecCtrlLoadSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 34 } rsvpteSenderAdspecCtrlLoadMtu OBJECT-TYPE SYNTAX INTEGER (0..65535) UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "If rsvpteSenderAdspecCtrlLoadSvc is TRUE, this is the service-specific override of the com- posed Maximum Transmission Unit general charac- terization parameter from the ADSPEC. A return of zero or noSuchValue indicates one of the following conditions: the invalid bit was set the parameter was not present If rsvpteSenderAdspecCtrlLoadSvc is FALSE, this returns zero or noSuchValue." ::= { rsvpteSenderEntry 35 } rsvpteSenderTTL OBJECT-TYPE SYNTAX INTEGER (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "The TTL value in the RSVPTE header that was last received." ::= { rsvpteSenderEntry 36 } rsvpteSenderTeiAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of the egress node for the tunnel." ::= { rsvpteSenderEntry 37 } rsvpteSenderTunnelId OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A 16-bit identifier used in this session that remains constant over the life of the tunnel." ::= { rsvpteSenderEntry 38 } rsvpteSenderExtTunnelId OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "A 32-bit identifier used in this session that remains constant over the life of the tunnel. Normally set to all zeros. Ingress nodes that wish to narrow the scope of a session to the ingress-egress pair may place their IPv4 address here as a globally unique identifier." ::= { rsvpteSenderEntry 39 } rsvpteSenderTunnelSenderAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of the sender node" ::= { rsvpteSenderEntry 40 } rsvpteSenderLspId OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A 16-bit identifier used in the SENDER_TEMPLATE and the FILTER_SPEC that can be changed to allow a sender to share resources with itself." ::= { rsvpteSenderEntry 41 } rsvpteSenderSessionName OBJECT-TYPE SYNTAX DisplayString (SIZE(0..255)) MAX-ACCESS read-only STATUS current DESCRIPTION "An user friendly name associated with this session." ::= { rsvpteSenderEntry 42 } rsvpteSenderPhopIfAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of the previous hop interface." ::= { rsvpteSenderEntry 43 } rsvpteSenderSetupPriority OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Setup priority for the sender's session." ::= { rsvpteSenderEntry 44 } rsvpteSenderHoldingPriority OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Holding priority for the sender's session." ::= { rsvpteSenderEntry 45 } rsvpteSenderLocalProtection OBJECT-TYPE SYNTAX INTEGER { yes (1), no (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "Whether the local protection has been requested for this session." ::= { rsvpteSenderEntry 46 } rsvpteSenderLabelRecord OBJECT-TYPE SYNTAX INTEGER { yes (1), no (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "Whether the label record has been requested for this session." ::= { rsvpteSenderEntry 47 } rsvpteSenderSEStyleRequest OBJECT-TYPE SYNTAX INTEGER { yes (1), no (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "Whether SE style signalling has been requested for this session." ::= { rsvpteSenderEntry 48 } rsvpteSenderAffinitiesExcludeAny OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Resource affinities - Exclude-any." ::= { rsvpteSenderEntry 49 } rsvpteSenderAffinitiesIncludeAny OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Resource affinities - Include-any." ::= { rsvpteSenderEntry 50 } rsvpteSenderAffinitiesIncludeAll OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Resource affinities - Include-all." ::= { rsvpteSenderEntry 51 } rsvpteSenderDiffservLlspPsc OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Diffserv LLSP PSC value." ::= { rsvpteSenderEntry 52 } rsvpteSenderDiffservElspPhb OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Diffserv ELSP PHB value. Array of eight bytes. Not all values in the array may be valid. The rsvpteSenderDiffservElspExpMask determines which values in array are valid." ::= { rsvpteSenderEntry 53 } rsvpteSenderDiffservElspExpMask OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Determines which values of ElspPhb are valid. For each bit that is set in this mask, the corresponding index value for rsvpteSenderDiffservElspPhb is valid. ie. if the the 0th bit of rsvpteSenderDiffservElspExpMask is set, the value at rsvpteSenderDiffservElspPhb[0] is valid." ::= { rsvpteSenderEntry 54 } rsvpteSenderInMsgIdEpoch OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Epoch value of incoming Message ID" ::= { rsvpteSenderEntry 55 } rsvpteSenderInMsgIdId OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Id value of incoming Message ID" ::= { rsvpteSenderEntry 56 } rsvpteSenderOutMsgId OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Id value of outgoing Message ID" ::= { rsvpteSenderEntry 57 } rsvpteSenderNumber OBJECT-TYPE SYNTAX SessionNumber MAX-ACCESS not-accessible STATUS current DESCRIPTION "The number of this sender. This is for SNMP Indexing purposes only and has no relation to any protocol value." ::= { rsvpteSenderEntry 58 } rsvpteSenderDiffservteClasstype OBJECT-TYPE SYNTAX INTEGER (0..7) MAX-ACCESS read-only STATUS current DESCRIPTION "DiffServ-TE Class-type value" ::= { rsvpteSenderEntry 59 } -- The RSVPTE Reservation Requests Received Table contains the -- information displayed by receivers regarding their needs with -- respect to sessions and senders. It is in essence a list of the -- valid RESV messages that the RSVPTE Router or Host is receiving. rsvpteResvTable OBJECT-TYPE SYNTAX SEQUENCE OF RsvpteResvEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Information describing the state information described RESV messages for nhop." ::= { rsvpteObjects 3 } rsvpteResvEntry OBJECT-TYPE SYNTAX RsvpteResvEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Information describing the state information displayed by a single receiver's RESV message concerning a single sender." INDEX { rsvpteSessionNumber, rsvpteResvNumber } ::= { rsvpteResvTable 1 } RsvpteResvEntry ::= SEQUENCE { rsvpteResvNumber SessionNumber, rsvpteResvType SessionType, rsvpteResvHopAddr IpAddress, rsvpteResvHopLih Integer32, rsvpteResvInterface InterfaceIndex, rsvpteResvService QosService, rsvpteResvTSpecRate BitRate, rsvpteResvTSpecPeakRate BitRate, rsvpteResvTSpecBurst BurstSize, rsvpteResvTSpecMinPU MessageSize, rsvpteResvTSpecMaxTU MessageSize, rsvpteResvRSpecRate BitRate, rsvpteResvRSpecSlack Integer32, rsvpteResvInterval RefreshInterval, rsvpteResvShared TruthValue, rsvpteResvExplicit TruthValue, rsvpteResvLastChange TimeStamp, rsvpteResvTTL INTEGER, rsvpteResvTeiAddr IpAddress, rsvpteResvTunnelId INTEGER, rsvpteResvExtTunnelId IpAddress, rsvpteResvTunnelSenderAddr IpAddress, rsvpteResvLspId INTEGER, rsvpteResvNhopIfAddr IpAddress, rsvpteResvStyle INTEGER, rsvpteResvInMsgIdEpoch Integer32, rsvpteResvInMsgIdId Integer32, rsvpteResvOutMsgId Integer32, rsvpteResvLspIdx Integer32 } rsvpteResvNumber OBJECT-TYPE SYNTAX SessionNumber MAX-ACCESS not-accessible STATUS current DESCRIPTION "The number of this reservation request. This is for SNMP Indexing purposes only and has no relation to any protocol value." ::= { rsvpteResvEntry 1 } rsvpteResvType OBJECT-TYPE SYNTAX SessionType MAX-ACCESS read-only STATUS current DESCRIPTION "The type of session (IP4, IP6, IP6 with flow information, etc)." ::= { rsvpteResvEntry 2 } rsvpteResvHopAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "The address used by the next RSVPTE hop (which may be the ultimate receiver)." ::= { rsvpteResvEntry 3 } rsvpteResvHopLih OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The Logical Interface Handle received from the previous RSVPTE hop (which may be the ultimate receiver)." ::= { rsvpteResvEntry 4 } rsvpteResvInterface OBJECT-TYPE SYNTAX InterfaceIndex MAX-ACCESS read-only STATUS current DESCRIPTION "The ifIndex value of the interface on which this RESV message was most recently received." ::= { rsvpteResvEntry 5 } rsvpteResvService OBJECT-TYPE SYNTAX QosService MAX-ACCESS read-only STATUS current DESCRIPTION "The QoS Service classification requested by the receiver." ::= { rsvpteResvEntry 6 } rsvpteResvTSpecRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "The Average Bit Rate of the sender's data stream. Within a transmission burst, the ar- rival rate may be as fast as rsvpteResvTSpec- PeakRate (if supported by the service model); however, averaged across two or more burst in- tervals, the rate should not exceed rsvpteResvTSpecRate. Note that this is a prediction, often based on the general capability of a type of codec or particular encoding; the measured average rate may be significantly lower." ::= { rsvpteResvEntry 7 } rsvpteResvTSpecPeakRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "The Peak Bit Rate of the sender's data stream. Traffic arrival is not expected to exceed this rate at any time, apart from the effects of jitter in the network. If not specified in the TSpec, this returns zero or noSuchValue." ::= { rsvpteResvEntry 8 } rsvpteResvTSpecBurst OBJECT-TYPE SYNTAX BurstSize UNITS "bytes" MAX-ACCESS read-only STATUS current DESCRIPTION "The size of the largest burst expected from the sender at a time. If this is less than the sender's advertised burst size, the receiver is asking the network to provide flow pacing beyond what would be provided under normal circumstances. Such pac- ing is at the network's option." ::= { rsvpteResvEntry 9 } rsvpteResvTSpecMinPU OBJECT-TYPE SYNTAX MessageSize MAX-ACCESS read-only STATUS current DESCRIPTION "The minimum message size for this flow. The policing algorithm will treat smaller messages as though they are this size." ::= { rsvpteResvEntry 10 } rsvpteResvTSpecMaxTU OBJECT-TYPE SYNTAX MessageSize MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum message size for this flow. The admission algorithm will reject TSpecs whose Maximum Transmission Unit, plus the interface headers, exceed the interface MTU." ::= { rsvpteResvEntry 11 } rsvpteResvRSpecRate OBJECT-TYPE SYNTAX BitRate UNITS "bits per second" MAX-ACCESS read-only STATUS current DESCRIPTION "If the requested service is Guaranteed, as specified by rsvpteResvService, this is the clearing rate that is being requested. Other- wise, it is zero, or the agent may return noSuchValue." ::= { rsvpteResvEntry 12 } rsvpteResvRSpecSlack OBJECT-TYPE SYNTAX Integer32 UNITS "microseconds" MAX-ACCESS read-only STATUS current DESCRIPTION "If the requested service is Guaranteed, as specified by rsvpteResvService, this is the delay slack. Otherwise, it is zero, or the agent may return noSuchValue." ::= { rsvpteResvEntry 13 } rsvpteResvInterval OBJECT-TYPE SYNTAX RefreshInterval MAX-ACCESS read-only STATUS current DESCRIPTION "The interval between refresh messages as ad- vertised by the Next Hop." ::= { rsvpteResvEntry 14 } rsvpteResvShared OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If TRUE, a reservation shared among senders is requested. If FALSE, a reservation specific to this sender is requested." ::= { rsvpteResvEntry 15 } rsvpteResvExplicit OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If TRUE, individual senders are listed using Filter Specifications. If FALSE, all senders are implicitly selected. The Scope Object will contain a list of senders that need to receive this reservation request for the purpose of routing the RESV message." ::= { rsvpteResvEntry 16 } rsvpteResvLastChange OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The time of the last change in this reserva- tion request; This is either the first time it was received or the time of the most recent change in parameters." ::= { rsvpteResvEntry 17 } rsvpteResvTTL OBJECT-TYPE SYNTAX INTEGER (0..255) MAX-ACCESS read-only STATUS current DESCRIPTION "The TTL value in the RSVPTE header that was last received." ::= { rsvpteResvEntry 18 } rsvpteResvTeiAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of the egress node for the tunnel." ::= { rsvpteResvEntry 19 } rsvpteResvTunnelId OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A 16-bit identifier used in this session that remains constant over the life of the tunnel." ::= { rsvpteResvEntry 20 } rsvpteResvExtTunnelId OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "A 32-bit identifier used in this session that remains constant over the life of the tunnel. Normally set to all zeros. Ingress nodes that wish to narrow the scope of a session to the ingress-egress pair may place their IPv4 address here as a globally unique identifier." ::= { rsvpteResvEntry 21 } rsvpteResvTunnelSenderAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of the sender node" ::= { rsvpteResvEntry 22 } rsvpteResvLspId OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "A 16-bit identifier used in the SENDER_TEMPLATE and the FILTER_SPEC that can be changed to allow a sender to share resources with itself." ::= { rsvpteResvEntry 23 } rsvpteResvNhopIfAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "IPv4 address of next hop interface" ::= { rsvpteResvEntry 24 } rsvpteResvStyle OBJECT-TYPE SYNTAX INTEGER { ff(1), se(2), wf(3), unknown(4) } MAX-ACCESS read-only STATUS current DESCRIPTION "The reservation style for this reservation." ::= { rsvpteResvEntry 25 } rsvpteResvInMsgIdEpoch OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Inbound Message ID (Epoch)." ::= { rsvpteResvEntry 26 } rsvpteResvInMsgIdId OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Inbound Message ID (ID)." ::= { rsvpteResvEntry 27 } rsvpteResvOutMsgId OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Outbound Message ID (ID)." ::= { rsvpteResvEntry 28 } rsvpteResvLspIdx OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "LSP Index as informed by Connection Manager." ::= { rsvpteResvEntry 29 } -- The RSVPTE Interface Attributes Database contains the -- RSVPTE-specific information for an interface. Information -- that is shared with other reservation procedures such -- as ST-II is in the Integrated Interface Attributes -- Database. rsvpteIfTable OBJECT-TYPE SYNTAX SEQUENCE OF RsvpteIfEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The RSVPTE-specific attributes of the system's interfaces." ::= { rsvpteObjects 4 } rsvpteIfEntry OBJECT-TYPE SYNTAX RsvpteIfEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The RSVPTE-specific attributes of the a given interface." INDEX { rsvpteIfIpName } ::= { rsvpteIfTable 1 } RsvpteIfEntry ::= SEQUENCE { rsvpteIfIpAddress IpAddress, rsvpteIfEnabled TruthValue, rsvpteIfState INTEGER, rsvpteIfRefreshMultiple INTEGER, rsvpteIfRefreshInterval TimeInterval, rsvpteIfRefreshIntervalLong TimeInterval, rsvpteIfTTL INTEGER, rsvpteIfHelloInterval TimeInterval, rsvpteIfHelloMultiple INTEGER, rsvpteIfHelloEnabled TruthValue, rsvpteIfHelloStatus OCTET STRING, rsvpteIfHelloResetTimeout INTEGER, rsvpteIfHelloResetIdMismatch INTEGER, rsvpteIfRefRedAdmin TruthValue, rsvpteIfRefRedOper OCTET STRING, rsvpteIfMsgIdAckCount INTEGER, rsvpteIfStatus RowStatus, rsvpteIfIpName OCTET STRING, rsvpteIfIpNeighborAddress IpAddress, rsvpteIfNeighborLinkIfId INTEGER, rsvpteIfLocalLinkIfId INTEGER } rsvpteIfIpAddress OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "The IP Address of this RSVPTE interface." ::= { rsvpteIfEntry 1 } rsvpteIfEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-create STATUS current DESCRIPTION "If TRUE, RSVPTE is enabled on this Interface. If FALSE, RSVPTE is not enabled on this inter- face." ::= { rsvpteIfEntry 2 } rsvpteIfState OBJECT-TYPE SYNTAX INTEGER { up (1), down (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "The oper status of the interface." ::= { rsvpteIfEntry 3 } rsvpteIfRefreshMultiple OBJECT-TYPE SYNTAX INTEGER (1..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "The value of the RSVPTE value 'K', which is the number of refresh intervals which must elapse (minimum) before a PATH or RESV message which is not being refreshed will be aged out." DEFVAL { 3 } ::= { rsvpteIfEntry 4 } rsvpteIfRefreshInterval OBJECT-TYPE SYNTAX TimeInterval UNITS "milliseconds" MAX-ACCESS read-create STATUS current DESCRIPTION "The value of the RSVPTE value 'R', which is the minimum period between refresh transmissions of a given PATH or RESV message on an interface." DEFVAL { 30000 } -- 30 seconds ::= { rsvpteIfEntry 5 } rsvpteIfRefreshIntervalLong OBJECT-TYPE SYNTAX TimeInterval UNITS "milliseconds" MAX-ACCESS read-create STATUS current DESCRIPTION "The value used when using refresh reduction." DEFVAL { 30000000 } -- 30000 seconds ::= { rsvpteIfEntry 6 } rsvpteIfTTL OBJECT-TYPE SYNTAX INTEGER (0..255) MAX-ACCESS read-create STATUS current DESCRIPTION "The value of SEND_TTL used on this interface for messages this node originates. If set to zero, the node determines the TTL via other means." DEFVAL { 0 } -- which is to say, no override ::= { rsvpteIfEntry 7 } rsvpteIfHelloInterval OBJECT-TYPE SYNTAX TimeInterval UNITS "milliseconds" MAX-ACCESS read-create STATUS current DESCRIPTION "Hello Interval" DEFVAL { 30000 } -- 30 seconds ::= { rsvpteIfEntry 8 } rsvpteIfHelloMultiple OBJECT-TYPE SYNTAX INTEGER (1..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "Hello Multiple" DEFVAL { 3 } ::= { rsvpteIfEntry 9 } rsvpteIfHelloEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-create STATUS current DESCRIPTION "If TRUE, Hello is enabled on this Interface. If FALSE, Hello is not enabled on this inter- face." ::= { rsvpteIfEntry 10 } rsvpteIfHelloStatus OBJECT-TYPE SYNTAX OCTET STRING (SIZE (1..64)) MAX-ACCESS read-only STATUS current DESCRIPTION "The admin status of HELLO messages on the interface." ::= { rsvpteIfEntry 11 } rsvpteIfHelloResetTimeout OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "Number of resets due to HELLO timeout" DEFVAL { 0 } ::= { rsvpteIfEntry 12 } rsvpteIfHelloResetIdMismatch OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "Number of resets due to HELLO ID mismatch" DEFVAL { 0 } ::= { rsvpteIfEntry 13 } rsvpteIfRefRedAdmin OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-create STATUS current DESCRIPTION "Admin status of Refresh reduction on this interface." ::= { rsvpteIfEntry 14 } rsvpteIfRefRedOper OBJECT-TYPE SYNTAX OCTET STRING (SIZE (1..64)) MAX-ACCESS read-only STATUS current DESCRIPTION "The operational status of refresh reduction on the interface." ::= { rsvpteIfEntry 15 } rsvpteIfMsgIdAckCount OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "Message IDs that were ackd" DEFVAL { 0 } ::= { rsvpteIfEntry 16 } rsvpteIfStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "'active' on interfaces that are configured for RSVPTE." ::= { rsvpteIfEntry 17 } rsvpteIfIpName OBJECT-TYPE SYNTAX OCTET STRING (SIZE (1..64)) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The IP Name of this RSVPTE interface." ::= { rsvpteIfEntry 18 } rsvpteIfIpNeighborAddress OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "The IP Address of the RSVPTE neighbor on this interface." ::= { rsvpteIfEntry 19 } rsvpteIfNeighborLinkIfId OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "The Link If Id of the neighbor on this interface. It is valid only for unnumbered links and is zero otherwise." DEFVAL { 0 } ::= { rsvpteIfEntry 20 } rsvpteIfLocalLinkIfId OBJECT-TYPE SYNTAX INTEGER (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "The Link If Id of this interface. It is valid only for unnumbered links and is zero otherwise." DEFVAL { 0 } ::= { rsvpteIfEntry 21 } rsvpteStatsGroup OBJECT IDENTIFIER ::= { rsvpteObjects 5} rsvptePathSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Path packets sent since last cleared." ::= { rsvpteStatsGroup 1 } rsvptePathReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Path packets received since last cleared." ::= { rsvpteStatsGroup 2 } rsvptePathErrSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of PathErr packets sent since last cleared." ::= { rsvpteStatsGroup 3 } rsvptePathErrReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of PathErr packets recieved since last cleared." ::= { rsvpteStatsGroup 4 } rsvptePathTearSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of PathTear packets sent since last cleared." ::= { rsvpteStatsGroup 5 } rsvptePathTearReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of PathTear packets received since last cleared." ::= { rsvpteStatsGroup 6 } rsvpteResvFFSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Resv FF packets sent since last cleared." ::= { rsvpteStatsGroup 7 } rsvpteResvFFReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Resv FF packets received since last cleared." ::= { rsvpteStatsGroup 8 } rsvpteResvSESentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Resv SE packets sent since last cleared." ::= { rsvpteStatsGroup 9 } rsvpteResvSEReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Resv SE packets received since last cleared." ::= { rsvpteStatsGroup 10 } rsvpteResvErrSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvErr packets sent since last cleared." ::= { rsvpteStatsGroup 11 } rsvpteResvErrReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvErr packets received since last cleared." ::= { rsvpteStatsGroup 12 } rsvpteResvTearSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvTear packets sent since last cleared." ::= { rsvpteStatsGroup 13 } rsvpteResvTearReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvTear packets received since last cleared." ::= { rsvpteStatsGroup 14 } rsvpteResvConfSentPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvConf packets sent since last cleared." ::= { rsvpteStatsGroup 15 } rsvpteResvConfReceivedPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvConf packets received since last cleared." ::= { rsvpteStatsGroup 16 } rsvpteBadLengthPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of bad length packets received since last cleared." ::= { rsvpteStatsGroup 17 } rsvpteUnknownTypePackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of unknown type packets received since last cleared." ::= { rsvpteStatsGroup 18 } rsvpteBadVersionPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of bad version packets received since last cleared." ::= { rsvpteStatsGroup 19 } rsvpteBadCksumPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of bad cksum packets received since last cleared." ::= { rsvpteStatsGroup 20 } rsvpteBadFormatPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of bad format packets received since last cleared." ::= { rsvpteStatsGroup 21 } rsvpteMemoryAllocFailPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of memory allocation failure since last cleared." ::= { rsvpteStatsGroup 22 } rsvpteNoPathInfoPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of no path info packets received since last cleared." ::= { rsvpteStatsGroup 23 } rsvpteResvStyleConflictPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of resv style conflict packets received since RSVPTE was enabled." ::= { rsvpteStatsGroup 24 } rsvptePortConflictPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of port conflict packets received since RSVPTE was enabled." ::= { rsvpteStatsGroup 25 } rsvpteResvNoInterfacePackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of resv no interface packets received since RSVPTE was enabled. An interface for the receive reservation packets cannot be located" ::= { rsvpteStatsGroup 26 } rsvptePathErrToClientPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of PathErr packets delivered to local client since last cleared." ::= { rsvpteStatsGroup 27 } rsvpteResvErrToClientPackets OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of ResvErr packets delivered to local client since last cleared." ::= { rsvpteStatsGroup 28 } rsvptePathTimeouts OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of times the path state timed out since last cleared." ::= { rsvpteStatsGroup 29 } rsvpteResvTimeouts OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of times the reservation timed out since last cleared." ::= { rsvpteStatsGroup 30 } rsvpteResetTime OBJECT-TYPE SYNTAX TimeTicks MAX-ACCESS read-only STATUS current DESCRIPTION "Time since last stats clear" ::= { rsvpteStatsGroup 31 } rsvpteStatsReset OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write STATUS current DESCRIPTION "Writing a 1 in rsvpteStatsReset has the effect of clearing current RSVPTE statistics" ::= { rsvpteStatsGroup 32 } rsvpteSessionCount OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of RSVPTE sessions." ::= { rsvpteStatsGroup 33 } rsvpteSenderCount OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of RSVPTE senders." ::= { rsvpteStatsGroup 34 } rsvpteResvCount OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Resv messages sent." ::= { rsvpteStatsGroup 35 } rsvpteLspsPreempted OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of LSPs preempted." ::= { rsvpteStatsGroup 36 } rsvpteHelloSent OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Hello messages transmitted." ::= { rsvpteStatsGroup 37 } rsvpteHelloReceived OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Hello messages received." ::= { rsvpteStatsGroup 38 } rsvpteHelloAckSent OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Hello Acknowledgements sent." ::= { rsvpteStatsGroup 39 } rsvpteHelloAckReceived OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current DESCRIPTION "Total number of Hello Acknowledgements received." ::= { rsvpteStatsGroup 40 } END