📄 rfc2457.txt
字号:
Clouston & Moore Standards Track [Page 7]RFC 2457 Extended Border Node MIB November 19983.1.4 ebnCos group The ebnCos group contains the ebnCosMapTable, which specifies how COS values are mapped between the non-native subnetwork and the native subnetwork.3.1.5 ebnSubnetRoutingList group The ebnSubnetRoutingList group contains information about the customer-supplied EBN subnetwork routing list, which indicates to which adjacent nodes an EBN will forward LOCATE search requests. It consists of the following tables: 1. ebnSubnetSearchTable This table has an entry for each LU name that has a defined subnet routing list. The LU name may identify a single LU, or it may contain a wildcard character that could identify a group of LUs (partial wildcard) or all LUs (full wildcard). The objects in the table indicate whether the EBN may add dynamic entries to the subnet routing list, and whether the subnet routing list entries may be reordered for better search performance. 2. ebnSearchTable This table has an entry for each control point name which is included in a multi-subnet search for a particular LU name. The index to the table is the LU name to be searched for, and an index which lists the order in which the CP names are to be searched. Both the CP name and the LU name entries in the table allow for partial and full wildcards. The CP name also allows for special entries that indicate that the EBN will search itself and its own native subnetwork at this point in the search, or will search all native EBNs.3.1.6 hbn group The hbn group contains information about HBN (HPR EBN) intermediate sessions. The hbnIsInTable is an extension to the appnIsInTable. This table is present for intermediate sessions when there are back- to-back RTP (Rapid Transport Protocol) connections in an HBN. It provides the NCE ID (network connection endpoint identifier) and TCID (transport connection identifier) for the second RTP connection.Clouston & Moore Standards Track [Page 8]RFC 2457 Extended Border Node MIB November 19984.0 Definitions EBN-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Unsigned32 FROM SNMPv2-SMI MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF DisplayString, TEXTUAL-CONVENTION FROM SNMPv2-TC SnaControlPointName -- Because the characters allowed in an SNA control -- point name come from a restricted character set, -- these names are not subject to internationalization. FROM APPN-MIB snanauMIB FROM SNA-NAU-MIB; ebnMIB MODULE-IDENTITY LAST-UPDATED "9804281800Z" -- April 28, 1998 ORGANIZATION "IETF SNA NAU MIB WG / AIW APPN MIBs SIG" CONTACT-INFO " Bob Clouston Cisco Systems 7025 Kit Creek Road P.O. Box 14987 Research Triangle Park, NC 27709, USA Tel: 1 919 472 2333 E-mail: clouston@cisco.com Bob Moore IBM Corporation BRQA/501 P.O. Box 12195 Research Triangle Park, NC 27709, USA Tel: 1 919 254 4436 E-mail: remoore@us.ibm.com " DESCRIPTION " The MIB Module for Extended Border Node" ::= { snanauMIB 7 } -- snanauMIB ::= { mib-2 34 }Clouston & Moore Standards Track [Page 9]RFC 2457 Extended Border Node MIB November 1998 -- ****************************************************************** -- Textual Conventions -- ------------------------------------------------------------------ SnaNAUWildcardName ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "Fully-qualified network NAU name. Entries take one of three forms: - Explicit entries do not contain the character '*'. - Partial Wildcard entries have the form 'ccc*', where 'ccc' represents one to sixteen characters in a legal SNA NAU Name. - A full wildcard consists of a single character '*'. Because the characters allowed in an SNA NAU name come from a restricted character set, these names are not subject to internationalization." SYNTAX DisplayString(SIZE(1..17)) -- ****************************************************************** ebnObjects OBJECT IDENTIFIER ::= { ebnMIB 1 } -- ****************************************************************** -- ****************************************************************** -- EBN Directory Group -- The ebnDirTable is an extension to the appnDirTable. It specifies -- the subnet affiliation for LUs in the EBN's directory. -- ****************************************************************** ebnDir OBJECT IDENTIFIER ::= { ebnObjects 1 } ebnDirTable OBJECT-TYPE SYNTAX SEQUENCE OF EbnDirEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The EBN Directory Table. This table is an extension to the APPN MIB's appnDirTable. Entries in this table are in one-to-one correspondence with entries in the appnDirTable, with corresponding entries having identical values for their respective indexes." ::= { ebnDir 1 } ebnDirEntry OBJECT-TYPE SYNTAX EbnDirEntry MAX-ACCESS not-accessibleClouston & Moore Standards Track [Page 10]RFC 2457 Extended Border Node MIB November 1998 STATUS current DESCRIPTION "Entry in the EBN Directory Table." INDEX { ebnDirLuName } ::= { ebnDirTable 1 } EbnDirEntry ::= SEQUENCE { ebnDirLuName SnaNAUWildcardName, ebnDirSubnetAffiliation INTEGER } ebnDirLuName OBJECT-TYPE SYNTAX SnaNAUWildcardName MAX-ACCESS not-accessible STATUS current DESCRIPTION "Fully qualified network LU name in the domain of a serving network node. If this object has the same value as the appnDirLuName object in the APPN MIB, then the two objects are referring to the same LU." ::= { ebnDirEntry 1 } ebnDirSubnetAffiliation OBJECT-TYPE SYNTAX INTEGER { native (1), nonNative (2), subarea (3) } MAX-ACCESS read-only STATUS current DESCRIPTION "Specifies the subnetwork affiliation of the LU: - native(1) : The LU is in the native APPN subnetwork. - nonNative(2) : The LU is in a non-native APPN subnetwork. - subarea(3) : The LU is in a subarea network." ::= { ebnDirEntry 2 } -- ****************************************************************** -- EBN Intermediate Session RSCV Group -- This table is a sparse extension to the appnIsInTable. For -- sessions crossing ISTGs adjacent to the EBN, it contains the RSCV -- and COS used in the direction of the BIND destination. -- ****************************************************************** ebnIsRscv OBJECT IDENTIFIER ::= { ebnObjects 2 } ebnIsRscvTable OBJECT-TYPEClouston & Moore Standards Track [Page 11]RFC 2457 Extended Border Node MIB November 1998 SYNTAX SEQUENCE OF EbnIsRscvEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The EBN Intermediate Session RSCV table. This table is an extension to the appnIsInTable. It contains the RSCV and COS used in the direction of the BIND destination. There is an entry in this table for each session that traverses an ISTG when it enters or leaves this EBN, with corresponding entries having identical values for their respective indexes." ::= { ebnIsRscv 1} ebnIsRscvEntry OBJECT-TYPE SYNTAX EbnIsRscvEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Entry in ebnIsRscvTable." INDEX { ebnIsRscvCpName, ebnIsRscvPcid } ::= { ebnIsRscvTable 1 } EbnIsRscvEntry ::= SEQUENCE { ebnIsRscvCpName SnaControlPointName, ebnIsRscvPcid OCTET STRING, ebnIsRscvDestinationRoute OCTET STRING, ebnIsRscvDestinationCos DisplayString } ebnIsRscvCpName OBJECT-TYPE SYNTAX SnaControlPointName MAX-ACCESS not-accessible STATUS current DESCRIPTION "The network-qualified control point name of the node at which the session and PCID originated. For APPN and LEN nodes, this is either CP name of the APPN node at which the origin LU is located or the CP name of the NN serving the LEN node at which the origin LU is located. For DLUR resources it is the name of the owning SSCP. If this object has the same value as the appnIsInFqCpName object in the APPN MIB, then the two objects are referring to the same APPN control point." ::= { ebnIsRscvEntry 1 }Clouston & Moore Standards Track [Page 12]RFC 2457 Extended Border Node MIB November 1998 ebnIsRscvPcid OBJECT-TYPE SYNTAX OCTET STRING (SIZE (8)) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The procedure correlation identifier (PCID) of a session. It is an 8-octet value. If this object has the same value as the appnIsInPcid object in the APPN MIB, and if the corresponding ebnIsRscvCpName object has the same value as the corresponding appnIsInFqCpName object, then the entries indexed by these objects are referring to the same session." ::= { ebnIsRscvEntry 2 } ebnIsRscvDestinationRoute OBJECT-TYPE SYNTAX OCTET STRING(SIZE (0..255)) MAX-ACCESS read-only STATUS current DESCRIPTION "The route selection control vector (RSCV x'2B') used in the direction towards the SLU." ::= { ebnIsRscvEntry 3 } ebnIsRscvDestinationCos OBJECT-TYPE SYNTAX DisplayString (SIZE (1..8)) MAX-ACCESS read-only STATUS current DESCRIPTION "The Class of Service (COS) name used in the direction towards the SLU. Because the characters allowed in an SNA COS name come from a restricted character set, these names are not subject to internationalization." ::= { ebnIsRscvEntry 4 } -- ****************************************************************** -- EBN Directory Config Group -- The following simple objects provide information about EBN -- directory. -- ****************************************************************** ebnDirConfig OBJECT IDENTIFIER ::= { ebnObjects 3 }Clouston & Moore Standards Track [Page 13]RFC 2457 Extended Border Node MIB November 1998 ebnSearchCacheTime OBJECT-TYPE SYNTAX Unsigned32 UNITS "minutes" MAX-ACCESS read-only STATUS current DESCRIPTION "The amount of time in minutes an extended border node will retain information about a multi-subnetwork search, once that that search terminates. A value 0 indicates that the EBN has no defined limit, and the number of entries is bounded only by memory." ::= { ebnDirConfig 1 } ebnMaxSearchCache OBJECT-TYPE SYNTAX Unsigned32 UNITS "entries" MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum number of multi-subnet entries to be cached. The value 0 indicates that the local node has no defined limit, and the number of entries is bounded only by memory." ::= { ebnDirConfig 2 } ebnDefaultSubnetVisitCount OBJECT-TYPE SYNTAX Unsigned32 UNITS "topology subnetworks" MAX-ACCESS read-only STATUS current DESCRIPTION "The default maximum number of subnetworks a LOCATE search procedure may traverse." ::= { ebnDirConfig 3 } -- ****************************************************************** -- EBN COS Mapping Group -- The ebnCosMap Table specifies how non-native COS values are mapped -- to COS values defined in the native subnetwork. The COS mappings -- that an EBN performs are determined by multiple factors, one of -- which is a set of user-defined mappings. This table returns the -- COS mappings that the EBN is actually performing, rather than -- the user-defined mappings. -- ******************************************************************Clouston & Moore Standards Track [Page 14]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -