-- extracted from draft-ietf-gsmp-mib-01.txt -- at Fri Mar 17 12:29:49 2000 GSMP-MIB DEFINITIONS ::= BEGIN IMPORTS OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE, Unsigned32, experimental, Counter32,IpAddress FROM SNMPv2-SMI MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF TEXTUAL-CONVENTION, TruthValue, RowStatus, TimeInterval FROM SNMPv2-TC InterfaceIndex FROM IF-MIB ; gsmpMIB MODULE-IDENTITY LAST-UPDATED "20000310Z" -- 10 March 2000 ORGANIZATION "General Switch Management Protocol (gsmp) Working Group" CONTACT-INFO "Hans Sjostrand (hans.Sjostrand@etx.ericsson.se) Ericsson Joachim Burkle (joachim.buerkle@marconicomms.com) Marconi Communications GmbH Balaji Srinivasan (balaji@cplane.com) CPlane Inc." DESCRIPTION "This MIB contains managed object definitions for the General Switch Management Protocol, GSMP, version 3" ::= { experimental 9877 } -- to be assigned --**************************************************************** -- GSMP Textual Conventions --**************************************************************** gsmpObjects OBJECT IDENTIFIER ::= { gsmpMIB 1 } gsmpNotifications OBJECT IDENTIFIER ::= { gsmpMIB 2 } gsmpConformance OBJECT IDENTIFIER ::= { gsmpMIB 3 } --**************************************************************** -- IANA Textual Conventions --**************************************************************** GsmpServiceModelType ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The definition of this textual convention with the addition of newly assigned values is published periodically by the IANA, in either the Assigned Numbers RFC, or some derivative of it specific to Internet Network Management number assignments. (The latest arrangements can be obtained by contacting the IANA.) The enumerations are described as: default(0) -- Indicates use of the default GSMP model qGSMP(1) -- Indicates use of IEEE qGSMP model 2 - 200 -- Reserved 201 - 255 -- Experimental Requests for new values should be made to IANA via email (iana@iana.org)." SYNTAX INTEGER { default(0), qGSMP(1) } --**************************************************************** -- ATM MIB Textual Conventions --**************************************************************** AtmVpIdentifier ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The VPI value for a VPL. The value VPI=0 is not used for a VPL not associated with a VCL. For ATM UNIs supporting VPCs the VPI value ranges from 1 to 255. For ATM UNIs supporting VCCs the VPI value ranges from 0 to 255. The maximum VPI value cannot exceed the value allowable by atmInterfaceMaxVpiBits defined in ATM-MIB." SYNTAX Unsigned32 (0..4095) AtmVcIdentifier ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The VCI value for a VCL. The maximum VCI value cannot exceed the value allowable by atmInterfaceMaxVciBits defined in ATM-MIB." SYNTAX Unsigned32 (0..65535) --**************************************************************** -- GSMP Encap Objects --**************************************************************** -- -- GSMP Session table -- gsmpSessionTable OBJECT-TYPE SYNTAX SEQUENCE OF GsmpSessionEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table represents the sessions between VSCE and VSE pairs. " ::= { gsmpObjects 1 } gsmpSessionEntry OBJECT-TYPE SYNTAX GsmpSessionEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An entry in the table showing the data for a specific VSCE and VSE pair." INDEX { gsmpSessionVsceId, gsmpSessionVseId } ::= { gsmpSessionTable 1 } GsmpSessionEntry ::= SEQUENCE { gsmpSessionVsceId OCTET STRING, gsmpSessionVseId OCTET STRING, gsmpSessionEncapType INTEGER, gsmpSessionVersion INTEGER, gsmpSessionMaxVsceVersion INTEGER, gsmpSessionMaxVseVersion INTEGER, gsmpSessionServiceModel GsmpServiceModelType, gsmpSessionSwitchType Unsigned32, gsmpSessionTimer Unsigned32, gsmpSessionState INTEGER, gsmpSessionVsceName OCTET STRING, gsmpSessionVseName OCTET STRING, gsmpSessionVscePort Unsigned32, gsmpSessionVsePort Unsigned32, gsmpSessionVsceInstance Unsigned32, gsmpSessionVseInstance Unsigned32, gsmpSessionPartitionId OCTET STRING, gsmpSessionRowStatus RowStatus } gsmpSessionVsceId OBJECT-TYPE SYNTAX OCTET STRING (SIZE(6)) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The Virtual Switch Controller Entity Id is a 48- bit quantity that is unique within the operational context of the device. A 48-bit IEEE 802 MAC address, if available, may be used for the VCSE Id." ::= { gsmpSessionEntry 1 } gsmpSessionVseId OBJECT-TYPE SYNTAX OCTET STRING (SIZE(6)) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The Virtual Switch Entity Id is a 48- bit quantity that is unique within the operational context of the device. A 48-bit IEEE 802 MAC address, if available, may be used for the VSE Id." ::= { gsmpSessionEntry 2 } gsmpSessionEncapType OBJECT-TYPE SYNTAX INTEGER { ethernet(1), atm(2), tcpip(3) } MAX-ACCESS read-create STATUS current DESCRIPTION "The encapsulation used to for this session. If atm, a corresponing row in the gsmpAtmEncapTable has to be defined. If tcpip, a corresponing row in the gsmpTcpIpEncapTable has to be defined." ::= { gsmpSessionEntry 3 } gsmpSessionVersion OBJECT-TYPE SYNTAX INTEGER { version1-1(1), version2-0(2), version3(3) } MAX-ACCESS read-only STATUS current DESCRIPTION "The version number of the GSMP protocol being used in this session. The version is negotiated by the adjacency protocol." ::= { gsmpSessionEntry 4 } gsmpSessionMaxVsceVersion OBJECT-TYPE SYNTAX INTEGER { version1-1(1), version2-0(2), version3(3) } MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum version number supported by the VSCE" ::= { gsmpSessionEntry 5 } gsmpSessionMaxVseVersion OBJECT-TYPE SYNTAX INTEGER { version1-1(1), version2-0(2), version3(3) } MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum version number supported by the VSE" ::= { gsmpSessionEntry 6 } gsmpSessionServiceModel OBJECT-TYPE SYNTAX GsmpServiceModelType MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the service model used in the session QoS Configuration type." ::= { gsmpSessionEntry 7 } gsmpSessionSwitchType OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "A 16-bit field allocated by the manufacturer of the switch. The Switch Type identifies the product. When the Switch Type is combined with the OUI from the VSE Name the product is uniquely identified." ::= { gsmpSessionEntry 8 } gsmpSessionTimer OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The timer specifies the nominal time between periodic adjacency protocol messages. It is a constant for the duration of a GSMP session. The timer is specified in units of 100ms." ::= { gsmpSessionEntry 9 } gsmpSessionState OBJECT-TYPE SYNTAX INTEGER { null(1), synsent(2), synrcvd(3), estab(4) } MAX-ACCESS read-only STATUS current DESCRIPTION "The state the session currently is in. " ::= { gsmpSessionEntry 10 } gsmpSessionVsceName OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The name of the VSCE as advertised in the adjacency message. The most first three octets must be an Organisationally Unique Identifier (OUI) that identifies the manufacturer of the VSCE. If the VSCE name is unknown then this will be null. " ::= {gsmpSessionEntry 11} gsmpSessionVseName OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The name of the VSE as advertised in the adjacency message. The most first three octets must be an Organisationally Unique Identifier (OUI) that identifies the manufacturer of the VSE. If the VSE name is unknown then this will be null. " ::= {gsmpSessionEntry 12} gsmpSessionVscePort OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The local port number for the Virtual Switch Controller Entity. If the local port number for the VSCE is unknown, e.g because it's on the far side of the link and noy yet announced this object is zero." ::= { gsmpSessionEntry 13 } gsmpSessionVsePort OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The local port number for the Virtual Switch Entity. If the local port number for the VSE is unknown, e.g because it's on the far side of the link and noy yet announced this object is zero." ::= { gsmpSessionEntry 14 } gsmpSessionVsceInstance OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The instance number for the Virtual Switch Controller Entity. If the instance number for the VSCE is unknown, e.g because it's on the far side of the link and noy yet announced this object is zero." ::= { gsmpSessionEntry 15 } gsmpSessionVseInstance OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The instance number for the Virtual Switch Entity. If the instance number for the VSE is unknown, e.g because it's on the far side of the link and noy yet announced this object is zero." ::= { gsmpSessionEntry 16 } gsmpSessionPartitionId OBJECT-TYPE SYNTAX OCTET STRING (SIZE(1)) MAX-ACCESS read-only STATUS current DESCRIPTION "The Id for the specific switch partition that this session is concerned with. The format of the Partition ID is not defined in GSMP. If desired, the Partition ID can be divided into multiple sub-identifiers within a single partition." ::= { gsmpSessionEntry 17 } gsmpSessionRowStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "An object that allows entries in this table to be created and deleted using the RowStatus convention." ::= { gsmpSessionEntry 18 } -- -- GSMP Session stat table -- gsmpSessionStatTable OBJECT-TYPE SYNTAX SEQUENCE OF GsmpSessionStatEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains the statistics collected for the different sessions. " ::= { gsmpObjects 2 } gsmpSessionStatEntry OBJECT-TYPE SYNTAX GsmpSessionStatEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An entry in the table contains statistics data for a specific session." AUGMENTS { gsmpSessionEntry } ::= { gsmpSessionStatTable 1 } GsmpSessionStatEntry ::= SEQUENCE { gsmpSessionStatUptime Counter32, gsmpSessionStatSendmessages Counter32, gsmpSessionStatFailiureIndication Counter32, gsmpSessionStatReceivedmessages Counter32, gsmpSessionStatReceivedFailiure Counter32 } gsmpSessionStatUptime OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The time in seconds that the session has been in established state." ::= { gsmpSessionStatEntry 1 } gsmpSessionStatSendmessages OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of messages that has been sent in this session." ::= { gsmpSessionStatEntry 2 } gsmpSessionStatFailiureIndication OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of messages that has been sent with a failiure indication in this session." ::= { gsmpSessionStatEntry 3 } gsmpSessionStatReceivedmessages OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of messages that has been received in this session." ::= { gsmpSessionStatEntry 4 } gsmpSessionStatReceivedFailiure OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of messages that has been received in this session with a failiure indication." ::= { gsmpSessionStatEntry 5 } -- -- GSMP ATM Encapsulation Table -- gsmpAtmEncapTable OBJECT-TYPE SYNTAX SEQUENCE OF GsmpAtmEncapEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains the atm encapsulation data for the VSCE and VSE pairs that uses atm as encapsulation." ::= { gsmpObjects 3 } gsmpAtmEncapEntry OBJECT-TYPE SYNTAX GsmpAtmEncapEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An entry in the table showing the encapsulation data for a specific VSCE and VSE pair." INDEX { gsmpSessionVsceId, gsmpSessionVseId } ::= { gsmpAtmEncapTable 1 } GsmpAtmEncapEntry ::= SEQUENCE { gsmpAtmEncapIfIndex InterfaceIndex, gsmpAtmEncapVpi Unsigned32, gsmpAtmEncapVci Unsigned32 } gsmpAtmEncapIfIndex OBJECT-TYPE SYNTAX InterfaceIndex MAX-ACCESS read-create STATUS current DESCRIPTION " The interface index for the virtual channel over which the GSMP session is established over, i.e the GSMP control channel for LLC/SNAP encapsulated GSMP messages on an ATM data link layer" ::= { gsmpAtmEncapEntry 1 } gsmpAtmEncapVpi OBJECT-TYPE SYNTAX AtmVpIdentifier MAX-ACCESS read-create STATUS current DESCRIPTION " The VPI value for the virtual channel over which the GSMP session is established over, i.e the GSMP control channel for LLC/SNAP encapsulated GSMP messages on an ATM data link layer" DEFVAL { 0 } ::= { gsmpAtmEncapEntry 2 } gsmpAtmEncapVci OBJECT-TYPE SYNTAX AtmVcIdentifier MAX-ACCESS read-create STATUS current DESCRIPTION " The VCI value for the virtual channel over which the GSMP session is established over, i.e the GSMP control channel for LLC/SNAP encapsulated GSMP messages on an ATM data link layer" DEFVAL { 15 } ::= { gsmpAtmEncapEntry 3 } -- -- GSMP TCP/IP Encapsulation Table -- gsmpTcpIpEncapTable OBJECT-TYPE SYNTAX SEQUENCE OF GsmpTcpIpEncapEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains the atm encapsulation data for the VSCE and VSE pairs that uses atmTCP/IP as encapsulation." ::= { gsmpObjects 4 } gsmpTcpIpEncapEntry OBJECT-TYPE SYNTAX GsmpTcpIpEncapEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An entry in the table showing the encapsulation data for a specific VSCE and VSE pair." INDEX { gsmpSessionVsceId, gsmpSessionVseId } ::= { gsmpTcpIpEncapTable 1 } GsmpTcpIpEncapEntry ::= SEQUENCE { gsmpTcpIpEncapAddress IpAddress, gsmpTcpIpPortNumber Unsigned32 } gsmpTcpIpEncapAddress OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-create STATUS current DESCRIPTION "The IP address of the GSMP session peer." ::= { gsmpTcpIpEncapEntry 1 } gsmpTcpIpPortNumber OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-create STATUS current DESCRIPTION "The TCP port number used for the TCP session to the GSMP peer. The defaut value of this object is the well know GSMP port number. " ::= { gsmpTcpIpEncapEntry 2 } --****************************************************************** -- Module Compliance Statement --****************************************************************** gsmpGroups OBJECT IDENTIFIER ::= { gsmpConformance 1 } gsmpCompliances OBJECT IDENTIFIER ::= { gsmpConformance 2 } gsmpModuleCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "The compliance statement for agents that support the GSMP MIB." MODULE -- this module MANDATORY-GROUPS { gsmpSessionGroup } ::= { gsmpCompliances 1 } -- units of conformance gsmpSessionGroup OBJECT-GROUP OBJECTS { gsmpSessionEncapType, gsmpSessionVersion, gsmpSessionMaxVsceVersion, gsmpSessionMaxVseVersion, gsmpSessionServiceModel, gsmpSessionSwitchType, gsmpSessionTimer, gsmpSessionState, gsmpSessionVsceName, gsmpSessionVseName, gsmpSessionVscePort, gsmpSessionVsePort, gsmpSessionVsceInstance, gsmpSessionVseInstance, gsmpSessionPartitionId, gsmpSessionRowStatus, gsmpSessionStatUptime, gsmpSessionStatSendmessages, gsmpSessionStatFailiureIndication, gsmpSessionStatReceivedmessages, gsmpSessionStatReceivedFailiure, gsmpAtmEncapIfIndex, gsmpAtmEncapVpi, gsmpAtmEncapVci, gsmpTcpIpEncapAddress, gsmpTcpIpPortNumber } STATUS current DESCRIPTION "Objects that apply to all GSMP implementations." ::= { gsmpGroups 1 } END -- -- Copyright (C) The Internet Society (1999). All Rights Reserved. -- -- This document and translations of it may be copied and furnished -- to others, and derivative works that comment on or otherwise -- explain it or assist in its implementation may be prepared, -- copied, published and distributed, in whole or in part, without -- restriction of any kind, provided that the above copyright notice -- and this paragraph are included on all such copies and derivative -- works. However, this document itself may not be modified in any -- way, such as by removing the copyright notice or references to the -- Internet Society or other Internet organizations, except as needed -- for the purpose of developing Internet standards in which case -- the procedures for copyrights defined in the Internet Standards -- process must be followed, or as required to translate it into -- languages other than English. -- The limited permissions granted above are perpetual and will not -- be revoked by the Internet Society or its successors or assigns. -- -- This document and the information contained herein is provided on -- an "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET -- ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF -- THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED -- WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.