Imported Upstream version 0.4.8
[platform/upstream/libsmi.git] / mibs / ietf / EBN-MIB
1 EBN-MIB DEFINITIONS ::= BEGIN
2
3  IMPORTS
4          MODULE-IDENTITY, OBJECT-TYPE, Unsigned32
5                      FROM SNMPv2-SMI
6          MODULE-COMPLIANCE, OBJECT-GROUP
7                      FROM SNMPv2-CONF
8          DisplayString, TEXTUAL-CONVENTION
9                      FROM SNMPv2-TC
10          SnaControlPointName
11                  -- Because the characters allowed in an SNA control
12                  -- point name come from a restricted character set,
13                  -- these names are not subject to internationalization.
14                  FROM APPN-MIB
15          snanauMIB
16                  FROM SNA-NAU-MIB;
17
18  ebnMIB   MODULE-IDENTITY
19         LAST-UPDATED "9804281800Z" -- April 28, 1998
20         ORGANIZATION  "IETF SNA NAU MIB WG / AIW APPN MIBs SIG"
21         CONTACT-INFO
22                 "
23                         Bob Clouston
24                         Cisco Systems
25                         7025 Kit Creek Road
26                         P.O. Box 14987
27                         Research Triangle Park, NC 27709, USA
28                         Tel:    1 919 472 2333
29                         E-mail: clouston@cisco.com
30
31                         Bob Moore
32                         IBM Corporation
33                         BRQA/501
34                         P.O. Box 12195
35                         Research Triangle Park, NC 27709, USA
36                         Tel:    1 919 254 4436
37                         E-mail: remoore@us.ibm.com
38                 "
39
40         DESCRIPTION
41             " The MIB Module for Extended Border Node"
42
43         ::= { snanauMIB 7 }
44
45  -- snanauMIB ::= { mib-2 34 }
46
47  -- ******************************************************************
48  -- Textual Conventions
49  -- ------------------------------------------------------------------
50  SnaNAUWildcardName   ::= TEXTUAL-CONVENTION
51       STATUS current
52       DESCRIPTION
53           "Fully-qualified network NAU name. Entries take one of three
54           forms:
55              - Explicit entries do not contain the character '*'.
56              - Partial Wildcard entries have the form 'ccc*', where
57                'ccc' represents one to sixteen characters in a legal
58                SNA NAU Name.
59              - A full wildcard  consists of a single character '*'.
60
61           Because the characters allowed in an SNA NAU name come from
62           a restricted character set, these names are not subject to
63           internationalization."
64
65  SYNTAX DisplayString(SIZE(1..17))
66
67  -- ******************************************************************
68  ebnObjects              OBJECT IDENTIFIER ::= { ebnMIB 1 }
69  -- ******************************************************************
70
71  -- ******************************************************************
72  -- EBN Directory Group
73  -- The ebnDirTable is an extension to the appnDirTable.  It specifies
74  -- the subnet affiliation for LUs in the EBN's directory.
75  -- ******************************************************************
76
77  ebnDir                  OBJECT IDENTIFIER ::= { ebnObjects 1 }
78
79  ebnDirTable OBJECT-TYPE
80       SYNTAX SEQUENCE OF EbnDirEntry
81       MAX-ACCESS not-accessible
82       STATUS current
83       DESCRIPTION
84           "The EBN Directory Table.  This table is an extension
85           to the APPN MIB's appnDirTable.  Entries in this table
86           are in one-to-one correspondence with entries in the
87           appnDirTable, with corresponding entries having identical
88           values for their respective indexes."
89
90       ::= { ebnDir 1 }
91
92  ebnDirEntry OBJECT-TYPE
93       SYNTAX EbnDirEntry
94       MAX-ACCESS not-accessible
95       STATUS current
96       DESCRIPTION
97           "Entry in the EBN Directory Table."
98
99       INDEX { ebnDirLuName }
100
101       ::= { ebnDirTable 1 }
102
103  EbnDirEntry ::= SEQUENCE {
104          ebnDirLuName             SnaNAUWildcardName,
105          ebnDirSubnetAffiliation  INTEGER     }
106
107  ebnDirLuName OBJECT-TYPE
108       SYNTAX SnaNAUWildcardName
109       MAX-ACCESS not-accessible
110       STATUS current
111       DESCRIPTION
112           "Fully qualified network LU name in the domain of a serving
113           network node.  If this object has the same value as the
114           appnDirLuName object in the APPN MIB, then the two objects
115           are referring to the same LU."
116
117       ::= { ebnDirEntry 1 }
118
119  ebnDirSubnetAffiliation OBJECT-TYPE
120       SYNTAX INTEGER { native (1),
121                        nonNative (2),
122                        subarea (3) }
123       MAX-ACCESS read-only
124       STATUS current
125       DESCRIPTION
126           "Specifies the subnetwork affiliation of the LU:
127               - native(1)    : The LU is in the native APPN subnetwork.
128               - nonNative(2) : The LU is in a non-native APPN subnetwork.
129               - subarea(3)   : The LU is in a subarea network."
130
131       ::= { ebnDirEntry 2 }
132
133  -- ******************************************************************
134  -- EBN Intermediate Session RSCV Group
135  -- This table is a sparse extension to the appnIsInTable.  For
136  -- sessions crossing ISTGs adjacent to the EBN, it contains the RSCV
137  -- and COS used in the direction of the BIND destination.
138  -- ******************************************************************
139
140  ebnIsRscv               OBJECT IDENTIFIER ::= { ebnObjects 2 }
141
142  ebnIsRscvTable OBJECT-TYPE
143       SYNTAX SEQUENCE OF EbnIsRscvEntry
144       MAX-ACCESS not-accessible
145       STATUS current
146       DESCRIPTION
147           "The EBN Intermediate Session RSCV table.  This table is an
148           extension to the appnIsInTable.  It contains the RSCV and COS
149           used in the direction of the BIND destination.  There is an
150           entry in this table for each session that traverses an ISTG
151           when it enters or leaves this EBN, with corresponding entries
152           having identical values for their respective indexes."
153
154       ::= { ebnIsRscv 1}
155
156  ebnIsRscvEntry OBJECT-TYPE
157       SYNTAX EbnIsRscvEntry
158       MAX-ACCESS not-accessible
159       STATUS current
160       DESCRIPTION
161           "Entry in ebnIsRscvTable."
162       INDEX { ebnIsRscvCpName,
163               ebnIsRscvPcid }
164
165       ::= { ebnIsRscvTable 1 }
166
167  EbnIsRscvEntry ::= SEQUENCE {
168          ebnIsRscvCpName            SnaControlPointName,
169          ebnIsRscvPcid              OCTET STRING,
170          ebnIsRscvDestinationRoute  OCTET STRING,
171          ebnIsRscvDestinationCos    DisplayString }
172
173  ebnIsRscvCpName OBJECT-TYPE
174       SYNTAX SnaControlPointName
175       MAX-ACCESS not-accessible
176       STATUS current
177       DESCRIPTION
178           "The network-qualified control point name of the node at
179           which the session and PCID originated.  For APPN and LEN
180           nodes, this is either CP name of the APPN node at which
181           the origin LU is located or the CP name of the NN serving
182           the LEN node at which the origin LU is located.  For DLUR
183           resources it is the name of the owning SSCP.
184
185           If this object has the same value as the appnIsInFqCpName
186           object in the APPN MIB, then the two objects are referring to
187           the same APPN control point."
188
189       ::= { ebnIsRscvEntry 1 }
190
191  ebnIsRscvPcid OBJECT-TYPE
192       SYNTAX OCTET STRING (SIZE (8))
193       MAX-ACCESS not-accessible
194       STATUS current
195       DESCRIPTION
196           "The procedure correlation identifier (PCID) of a session.
197           It is an 8-octet value.
198
199           If this object has the same value as the appnIsInPcid object
200           in the APPN MIB, and if the corresponding ebnIsRscvCpName
201           object has the same value as the corresponding
202           appnIsInFqCpName object, then the entries indexed by these
203           objects are referring to the same session."
204
205       ::= { ebnIsRscvEntry 2 }
206
207  ebnIsRscvDestinationRoute OBJECT-TYPE
208       SYNTAX OCTET STRING(SIZE (0..255))
209       MAX-ACCESS read-only
210
211       STATUS current
212       DESCRIPTION
213           "The route selection control vector (RSCV x'2B') used in the
214           direction towards the SLU."
215
216       ::= { ebnIsRscvEntry 3 }
217
218  ebnIsRscvDestinationCos OBJECT-TYPE
219       SYNTAX DisplayString (SIZE (1..8))
220       MAX-ACCESS read-only
221       STATUS current
222       DESCRIPTION
223           "The Class of Service (COS) name used in the direction
224           towards the SLU.
225
226           Because the characters allowed in an SNA COS name come from
227           a restricted character set, these names are not subject to
228           internationalization."
229
230       ::= { ebnIsRscvEntry 4 }
231
232  -- ******************************************************************
233  -- EBN Directory Config Group
234  -- The following simple objects provide information about EBN
235  -- directory.
236  -- ******************************************************************
237
238  ebnDirConfig            OBJECT IDENTIFIER ::= { ebnObjects 3 }
239
240  ebnSearchCacheTime    OBJECT-TYPE
241       SYNTAX Unsigned32
242       UNITS "minutes"
243       MAX-ACCESS read-only
244       STATUS current
245       DESCRIPTION
246           "The amount of time in minutes an extended border node will
247           retain information about a multi-subnetwork search, once
248           that that search terminates.  A value 0 indicates that the
249           EBN has no defined limit, and the number of entries is
250           bounded only by memory."
251
252       ::= { ebnDirConfig 1 }
253
254  ebnMaxSearchCache OBJECT-TYPE
255       SYNTAX Unsigned32
256       UNITS "entries"
257       MAX-ACCESS read-only
258       STATUS current
259       DESCRIPTION
260           "The maximum number of multi-subnet entries to be cached.
261           The value 0 indicates that the local node has no defined
262           limit, and the number of entries is bounded only by
263           memory."
264
265       ::= { ebnDirConfig 2 }
266
267  ebnDefaultSubnetVisitCount  OBJECT-TYPE
268       SYNTAX Unsigned32
269       UNITS "topology subnetworks"
270       MAX-ACCESS read-only
271       STATUS current
272       DESCRIPTION
273           "The default maximum number of subnetworks a LOCATE search
274           procedure may traverse."
275
276       ::= { ebnDirConfig 3 }
277
278  -- ******************************************************************
279  -- EBN COS Mapping Group
280  -- The ebnCosMap Table specifies how non-native COS values are mapped
281  -- to COS values defined in the native subnetwork.  The COS mappings
282  -- that an EBN performs are determined by multiple factors, one of
283  -- which is a set of user-defined mappings.  This table returns the
284  -- COS mappings that the EBN is actually performing, rather than
285  -- the user-defined mappings.
286  -- ******************************************************************
287  ebnCOS                  OBJECT IDENTIFIER ::= { ebnObjects 4 }
288
289  ebnCosMapTable OBJECT-TYPE
290       SYNTAX SEQUENCE OF EbnCosMapEntry
291       MAX-ACCESS not-accessible
292       STATUS current
293       DESCRIPTION
294           "The EBN COS Mapping Table.  This table specifies how non-
295           native COS values are mapped to COS values defined in the
296           native subnetwork.
297
298           Note:  The COS mappings that an EBN performs are determined
299           by multiple factors, one of which is a set of user-defined
300           initial mappings.  This table returns the COS mappings that
301           the EBN is actually performing at the time it is queried,
302           rather than the user-defined initial ones."
303
304       ::= { ebnCOS 1 }
305
306  ebnCosMapEntry OBJECT-TYPE
307       SYNTAX EbnCosMapEntry
308       MAX-ACCESS not-accessible
309       STATUS current
310       DESCRIPTION
311           "An entry in the EBN COS Mapping table."
312
313       INDEX { ebnCosMapCpName,
314               ebnCosMapNonNativeCos }
315
316       ::= { ebnCosMapTable 1 }
317
318  EbnCosMapEntry ::= SEQUENCE {
319          ebnCosMapCpName              SnaNAUWildcardName,
320          ebnCosMapNonNativeCos        DisplayString,
321          ebnCosMapNativeCos           DisplayString }
322
323  ebnCosMapCpName OBJECT-TYPE
324       SYNTAX SnaNAUWildcardName
325       MAX-ACCESS not-accessible
326       STATUS current
327       DESCRIPTION
328           "Fully qualified network CP name for which the COS mapping
329           applies."
330
331       ::= { ebnCosMapEntry 1 }
332
333  ebnCosMapNonNativeCos OBJECT-TYPE
334       SYNTAX DisplayString (SIZE(1..8))
335       MAX-ACCESS not-accessible
336       STATUS current
337       DESCRIPTION
338           "This object contains one of the following values:
339
340              - An 8-character COS name used in a non-native subnetwork.
341              - The single character '*', identifying the entry with the
342                default native COS for a non-native CP name.  This entry
343                is used when there is no entry in the table for a
344                non-native CP name / non-native COS pair.
345
346           Because the characters allowed in an SNA COS name come from
347           a restricted character set, these names are not subject to
348           internationalization."
349
350       ::= { ebnCosMapEntry 2 }
351
352  ebnCosMapNativeCos OBJECT-TYPE
353       SYNTAX DisplayString (SIZE(1..8))
354       MAX-ACCESS read-only
355       STATUS current
356       DESCRIPTION
357           "An 8-byte name for the class-of-service, as known in the
358           native subnetwork.
359
360           Because the characters allowed in an SNA COS name come from
361           a restricted character set, these names are not subject to
362           internationalization."
363
364       ::= { ebnCosMapEntry 3 }
365
366  -- ******************************************************************
367  -- EBN Subnet Routing List Group
368  -- The EBN Subnet Routing List indicates to which nodes an EBN
369  -- forwards search request.  This group contains information
370  -- pertaining to the CONFIGURED Subnet Routing List at an EBN.  How a
371  -- particular search request is routed is determined by a transient
372  -- list that the EBN creates based on the configured list and other
373  -- factors.
374  -- *******************************************************************
375
376  ebnSubnetRoutingList    OBJECT IDENTIFIER ::= { ebnObjects 5 }
377
378  ebnSubnetSearchTable OBJECT-TYPE
379       SYNTAX SEQUENCE OF EbnSubnetSearchEntry
380       MAX-ACCESS not-accessible
381       STATUS current
382       DESCRIPTION
383           "This table contains one entry for each fully qualified LU
384           name for which an associated subnet routing list has been
385           defined.  An entry in this table contains general
386           characteristics of the subnet search routing list for an
387           LU name.  The routing list itself is represented by a set
388           of contiguous entries in the ebnSearchTable."
389
390       ::= { ebnSubnetRoutingList 1 }
391
392  ebnSubnetSearchEntry OBJECT-TYPE
393       SYNTAX EbnSubnetSearchEntry
394       MAX-ACCESS not-accessible
395       STATUS current
396       DESCRIPTION
397           "An entry for the ebnSubnetSearchTable.  The entry
398           represents the configured parameters the EBN uses when it
399           is determining how to search for the LU identified by the
400           ebnSubnetSearchLuName object."
401
402       INDEX { ebnSubnetSearchLuName }
403
404       ::= { ebnSubnetSearchTable 1 }
405
406  EbnSubnetSearchEntry ::= SEQUENCE {
407          ebnSubnetSearchLuName   SnaNAUWildcardName,
408          ebnSubnetSearchDynamics INTEGER,
409          ebnSubnetSearchOrdering INTEGER   }
410
411  ebnSubnetSearchLuName OBJECT-TYPE
412       SYNTAX SnaNAUWildcardName
413       MAX-ACCESS not-accessible
414       STATUS current
415       DESCRIPTION
416           "Fully qualified network LU name."
417
418       ::= { ebnSubnetSearchEntry 1 }
419
420  ebnSubnetSearchDynamics OBJECT-TYPE
421       SYNTAX INTEGER { none(1),
422                        limited (2),
423                        full (3) }
424       MAX-ACCESS read-only
425       STATUS current
426       DESCRIPTION
427           "Indicates whether an EBN may add dynamic entries to a
428           subnetwork routing list.  none(1) means no entries may be
429           added to the subnetwork routing list.  limited(2) means
430           only likely entries may be added to the subnetwork routing
431           list.  full(3) means all native extended border nodes and
432           adjacent, non-native EBNs and NNs will be added to the
433           subnetwork routing list."
434
435       ::= { ebnSubnetSearchEntry 2 }
436
437  ebnSubnetSearchOrdering OBJECT-TYPE
438       SYNTAX INTEGER{ priority(1),
439                       defined(2) }
440       MAX-ACCESS read-only
441       STATUS current
442       DESCRIPTION
443           "Indicates whether an EBN may reorder a subnetwork routing
444           list so that entries which are more likely to be successful
445           move to the top of the subnetwork routing list and entries
446           which are more likely to be unsuccessful move to the bottom
447           of the list.
448           The following values are defined:
449
450              - priority(1):  Entries may be reordered.
451              - defined(2):   Entries must not be reordered."
452
453       ::= { ebnSubnetSearchEntry 3 }
454
455  -- Border node search table
456
457  ebnSearchTable OBJECT-TYPE
458       SYNTAX SEQUENCE OF EbnSearchEntry
459       MAX-ACCESS not-accessible
460       STATUS current
461       DESCRIPTION
462           "This table indicates the CONFIGURED list of control points
463           to which the EBN sends Locate searches for a given fully
464           qualified LU name.  Each entry in the table indicates one
465           control point that should be included in a multi-subnet
466           search for a particular LU name."
467
468       ::= { ebnSubnetRoutingList 2 }
469
470  ebnSearchEntry OBJECT-TYPE
471       SYNTAX EbnSearchEntry
472       MAX-ACCESS not-accessible
473       STATUS current
474       DESCRIPTION
475           "An entry in the ebnSearchTable.  An entry can exist in
476           this table only if an entry exists in the
477           ebnSubnetSearchTable with an ebnSubnetSearchLuName value
478           matching this entry's ebnSearchLuName.
479           For a given ebnSearchLuName value, the ordering of entries
480           provides by the ebnSearchIndex values corresponds to the
481           order in which the control points to be searched appear in
482           the CONFIGURED search list for the ebnSearchLuName."
483
484       INDEX { ebnSearchLuName,
485               ebnSearchIndex }
486
487       ::= { ebnSearchTable 1 }
488
489  EbnSearchEntry ::= SEQUENCE {
490          ebnSearchLuName  SnaNAUWildcardName,
491          ebnSearchIndex   Unsigned32,
492          ebnSearchCpName  DisplayString,
493          ebnSearchSNVC    Unsigned32  }
494
495  ebnSearchLuName OBJECT-TYPE
496       SYNTAX SnaNAUWildcardName
497       MAX-ACCESS not-accessible
498       STATUS current
499       DESCRIPTION
500           "Fully qualified network LU name.  If this object has the
501           same value as the ebnSubnetSearchLuName object, then the
502           two objects are referring to the same LU."
503
504       ::= { ebnSearchEntry 1 }
505
506  ebnSearchIndex OBJECT-TYPE
507       SYNTAX Unsigned32
508       MAX-ACCESS not-accessible
509       STATUS current
510       DESCRIPTION
511           "Secondary index enumerating the CONFIGURED order in which
512           a search is forwarded to CPs for a particular LU name.  The
513           order for an actual search is determined dynamically by the
514           EBN, based on this configured information and on other
515           factors, including whether search dynamics and search
516           ordering are enabled.  Information on these last two settings
517           is available in, respectively, the ebnSubnetSearchDynamics
518           and ebnSubnetSearch ordering objects."
519
520       ::= { ebnSearchEntry 2 }
521
522  ebnSearchCpName OBJECT-TYPE
523       SYNTAX DisplayString(SIZE(1..17))
524       MAX-ACCESS read-only
525       STATUS current
526       DESCRIPTION
527           "This object specifies the CP(s) to which a search should be
528           forwarded.  It either follows the SnaNAUWildcardName textual
529           convention or takes one of the following special formats:
530
531              '*' indicates that all native EBNs and all adjacent non-
532              native EBNs and NNs may be added to the routing list
533              dynamically,
534
535              '*SELF' indicates that the EBN should search itself and
536              its native subnetwork at this time during the
537              cross-subnet search,
538
539              '*EBNS' indicates all native EBNs.
540
541           Because the characters allowed in a CP name come from a
542           restricted character set, and because the three formats
543           listed here use no special characters, this object is not
544           subject to internationalization."
545
546       ::= { ebnSearchEntry 3 }
547
548  ebnSearchSNVC OBJECT-TYPE
549       SYNTAX Unsigned32
550       MAX-ACCESS read-only
551       STATUS current
552       DESCRIPTION
553           "The maximum number of subnets a Locate search procedure may
554           traverse.  "
555
556       ::= { ebnSearchEntry 4 }
557
558  -- *******************************************************************
559  -- HPR Extended Border Node Intermediate Session Group
560  -- The hbnIsInTable is a sparse extension to the appnIsInTable.
561  -- For sessions that use back-to-back RTP connections in an HBN,
562  -- this table provides the network connection endpoint identifier
563  -- (NceId) and the transport connection identifier (Tcid) for the
564  -- second RTP connection.
565  -- *******************************************************************
566
567  hbn                     OBJECT IDENTIFIER ::= { ebnObjects 6 }
568
569  hbnIsInTable OBJECT-TYPE
570       SYNTAX SEQUENCE OF HbnIsInEntry
571       MAX-ACCESS not-accessible
572       STATUS current
573       DESCRIPTION
574           "The HBN Intermediate Session table."
575       ::= { hbn 1}
576
577  hbnIsInEntry OBJECT-TYPE
578       SYNTAX HbnIsInEntry
579       MAX-ACCESS not-accessible
580       STATUS current
581       DESCRIPTION
582           "Entry of the HBN Intermediate Session Table.  An entry
583           exists in this table for every intermediate session being
584           routed between back-to-back RTP connections in the HBN.
585
586           When an entry for a session exists in this table, the
587           NceIds and Tcids for the back-to-back RTP connections are
588           made available in the following four objects:
589
590              RTP connection in the direction of the PLU:
591                 - NceId:  appnIsInRtpNceId (in the APPN MIB)
592                 - Tcid:   appnIsinRtpTcid (in the APPN MIB).
593
594              RTP connection in the direction of the SLU:
595                 - NceId:  hbnIsInRtpNceId (in this table)
596                 - Tcid:   hbnIsInRtpTcid (in this table)."
597
598       INDEX { hbnIsInFqCpName,
599               hbnIsInPcid }
600
601  ::= { hbnIsInTable 1 }
602
603  HbnIsInEntry ::= SEQUENCE {
604          hbnIsInFqCpName    SnaControlPointName,
605          hbnIsInPcid        OCTET STRING,
606          hbnIsInRtpNceId    OCTET STRING,
607          hbnIsInRtpTcid     OCTET STRING }
608
609  hbnIsInFqCpName OBJECT-TYPE
610       SYNTAX SnaControlPointName
611       MAX-ACCESS not-accessible
612       STATUS current
613       DESCRIPTION
614           "The network-qualified control point name of the node at
615           which the session and PCID originated.  For APPN and LEN
616           nodes, this is either the CP name of the APPN node at
617           which the origin LU is located or the CP name of the NN
618           serving the LEN node at which the origin LU is located.
619
620           If this object has the same value as the appnIsInFqCpName
621           object in the APPN MIB, then the two objects are referring
622           to the same APPN control point."
623       ::= { hbnIsInEntry 1 }
624
625  hbnIsInPcid OBJECT-TYPE
626       SYNTAX OCTET STRING (SIZE(8))
627       MAX-ACCESS not-accessible
628       STATUS current
629       DESCRIPTION
630           "The procedure correlation identifier (PCID) of a session.
631           It is an 8-octet value.
632
633           If this object has the same value as the appnIsInPcid object
634           in the APPN MIB, and if the corresponding hbnIsInFqCpName
635           object has the same value as the corresponding
636           appnIsInFqCpName object, then the entries indexed by these
637           objects are referring to the same session."
638
639       ::= { hbnIsInEntry 2 }
640
641  hbnIsInRtpNceId OBJECT-TYPE
642       SYNTAX OCTET STRING (SIZE(1..8))
643       MAX-ACCESS read-only
644       STATUS current
645       DESCRIPTION
646           "The HPR local Network Connection Endpoint of the session in
647           the direction of the SLU."
648
649       ::= { hbnIsInEntry 3 }
650
651  hbnIsInRtpTcid OBJECT-TYPE
652       SYNTAX OCTET STRING (SIZE(8))
653       MAX-ACCESS read-only
654       STATUS current
655       DESCRIPTION
656           "The RTP connection local TCID of the session in the direction
657           of the SLU."
658
659       ::= { hbnIsInEntry 4 }
660
661  -- *******************************************************************
662  -- Conformance Statement
663  -- *******************************************************************
664  ebnConformance          OBJECT IDENTIFIER ::= { ebnMIB 2 }
665
666  ebnCompliances          OBJECT IDENTIFIER ::= { ebnConformance 1 }
667  ebnGroups               OBJECT IDENTIFIER ::= { ebnConformance 2 }
668
669  -- Compliance statements
670  ebnCompliance     MODULE-COMPLIANCE
671    STATUS current
672    DESCRIPTION
673        "The compliance statement for the SNMPv2 entities which
674        implement the ebnMIB."
675
676    MODULE   -- this module
677
678    --  Unconditionally mandatory groups
679        MANDATORY-GROUPS {
680                  ebnDirectoryGroup,
681                  ebnIsRscvGroup,
682                  ebnDirectoryConfigGroup,
683                  ebnCosMappingGroup,
684                  ebnSubnetRoutingListGroup }
685
686    -- Conditionally mandatory groups
687       GROUP hbnIsInGroup
688       DESCRIPTION
689           "The hbnIsInGroup is mandatory only for HPR extended border
690           nodes."
691
692       ::= {ebnCompliances 1 }
693
694  -- Group definitions
695  ebnDirectoryGroup OBJECT-GROUP
696       OBJECTS { ebnDirSubnetAffiliation }
697       STATUS current
698       DESCRIPTION
699           "The EBN-related directory objects."
700
701       ::= { ebnGroups 1 }
702
703
704  ebnIsRscvGroup OBJECT-GROUP
705       OBJECTS { ebnIsRscvDestinationRoute,
706                 ebnIsRscvDestinationCos }
707       STATUS current
708       DESCRIPTION
709           "Two objects representing RSCV and class of service
710           information saved by an EBN."
711
712       ::= { ebnGroups 2 }
713
714  ebnDirectoryConfigGroup OBJECT-GROUP
715       OBJECTS { ebnSearchCacheTime,
716                 ebnMaxSearchCache,
717                 ebnDefaultSubnetVisitCount }
718       STATUS current
719       DESCRIPTION
720           "The EBN Directory Configuration Group."
721
722       ::= { ebnGroups 3 }
723
724  ebnCosMappingGroup OBJECT-GROUP
725       OBJECTS {  ebnCosMapNativeCos }
726       STATUS current
727       DESCRIPTION
728           "The EBN COS Mapping Group."
729
730       ::= { ebnGroups 4 }
731
732  ebnSubnetRoutingListGroup OBJECT-GROUP
733       OBJECTS { ebnSubnetSearchDynamics,
734                 ebnSubnetSearchOrdering,
735                 ebnSearchCpName,
736                  ebnSearchSNVC }
737       STATUS current
738       DESCRIPTION
739           "The Subnet Routing List Group."
740
741       ::= { ebnGroups 5 }
742
743  hbnIsInGroup OBJECT-GROUP
744       OBJECTS { hbnIsInRtpNceId, hbnIsInRtpTcid }
745       STATUS current
746       DESCRIPTION
747           "The HBN-related Intermediate Session Objects."
748
749       ::= { ebnGroups 6 }
750
751 END