-- extracted from draft-ietf-forces-mib-00.txt -- at Fri Jan 27 06:10:46 2006 FORCES-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE, MODULE-IDENTITY, Integer32, Counter32, Unsigned32 FROM SNMPv2-SMI TEXTUAL-CONVENTION, RowStatus, TimeInterval, TimeStamp FROM SNMPv2-TC; forcesMIB MODULE-IDENTITY LAST-UPDATED "200601241200Z" -- Jan 24, 2006 ORGANIZATION "Forwarding and Control Element Separation (ForCES) Working Group" CONTACT-INFO "Robert Haas (rha@zurich.ibm.com), IBM" DESCRIPTION "Initial version, published as RFC yyyy. This MIB contains managed object definitions for the ForCES Protocol." -- RFC Ed.: replace yyyy with actual RFC number & remove this note ::= { mib-2 XXX } -- RFC Ed.: replace XXX with IANA-assigned number & remove this note --**************************************************************** ForcesID ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The ForCES identifier is a four octet quantity." SYNTAX OCTET STRING (SIZE (4)) ForcesAssociationState ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The value down(1) indicates that the current state of the association is down. establishing(2) indicates that the association is in the process of being set up. up(3) indicates that the association is up." SYNTAX INTEGER { down(1), establishing(2), up(3) } forcesAssociations OBJECT IDENTIFIER ::= { forcesMIB 1 } forcesAssociationTable OBJECT-TYPE SYNTAX SEQUENCE OF ForcesAssociationEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The (conceptual) table of associations." ::= { forcesAssociations 1 } forcesAssociationEntry OBJECT-TYPE SYNTAX ForcesAssociationEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A (conceptual) entry for one association." INDEX { forcesAssociationCEID, forcesAssociationFEID } ::= { forcesAssociationTable 1 } ForcesAssociationEntry ::= SEQUENCE { forcesAssociationCEID ForcesID, forcesAssociationFEID ForcesID, forcesAssociationState ForcesAssociationState, forcesAssociationUptime TimeStamp, forcesAssociationCreated TimeStamp, forcesAssociationTransitionsEstablishing Counter32, forcesAssociationTransitionsUp Counter32, forcesAssociationMsgSent Counter32, forcesAssociationMsgReceived Counter32 } forcesAssociationCEID OBJECT-TYPE SYNTAX ForcesID MAX-ACCESS read-only STATUS current DESCRIPTION "The ForCES ID of the CE." ::= { forcesAssociationEntry 1 } forcesAssociationFEID OBJECT-TYPE SYNTAX ForcesID MAX-ACCESS read-only STATUS current DESCRIPTION "The ForCES ID of the FE." ::= { forcesAssociationEntry 2 } forcesAssociationState OBJECT-TYPE SYNTAX ForcesAssociationState MAX-ACCESS read-only STATUS current DESCRIPTION "The current operational state of the association described by this row of the table." ::= { forcesAssociationEntry 3 } forcesAssociationUptime OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The time when this association came up." ::= { forcesAssociationEntry 4 } forcesAssociationCreated OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The time when this entry in the table was created for this association." ::= { forcesAssociationEntry 5 } forcesAssociationTransitionsEstablishing OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "A counter of how many times this association state changed from down to establishing." ::= { forcesAssociationEntry 6} forcesAssociationTransitionsUp OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "A counter of how many times this association state changed from establishing to up." ::= { forcesAssociationEntry 7} forcesAssociationMsgSent OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "A counter of how many messages have been sent on this association since it is up." ::= { forcesAssociationEntry 8} forcesAssociationMsgReceived OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "A counter of how many messages have been received on this association since it is up." ::= { forcesAssociationEntry 9} END