1-- *********************************************************************
2-- CISCO-RSCN-MIB.my: Registered State Change Notificaton (RSCN) Mib
3--
4-- September 2002, H K Vivek
5--
6-- Copyright (c) 2002-2004, 2005, 2006, 2009 by cisco Systems Inc.
7-- All rights reserved.
8--
9-- *********************************************************************
10
11CISCO-RSCN-MIB DEFINITIONS ::= BEGIN
12
13IMPORTS
14    MODULE-IDENTITY,
15    OBJECT-TYPE,
16    NOTIFICATION-TYPE,
17    Counter32,
18    Integer32,
19    Unsigned32
20        FROM SNMPv2-SMI
21    MODULE-COMPLIANCE,
22    OBJECT-GROUP,
23    NOTIFICATION-GROUP
24        FROM SNMPv2-CONF
25    TruthValue
26        FROM SNMPv2-TC
27    FcAddressId
28        FROM CISCO-ST-TC
29    vsanIndex
30        FROM CISCO-VSAN-MIB
31    FcGs3RejectReasonCode
32        FROM CISCO-NS-MIB
33    ciscoMgmt
34        FROM CISCO-SMI;
35
36
37ciscoRscnMIB MODULE-IDENTITY
38    LAST-UPDATED    "200809010000Z"
39    ORGANIZATION    "Cisco Systems Inc."
40    CONTACT-INFO
41            "Cisco Systems
42            Customer Service
43            Postal: 170 W Tasman Drive
44            San Jose, CA  95134
45            USA
46            Tel: +1 800 553 -NETS
47            E-mail: cs-san@cisco.com"
48    DESCRIPTION
49        "The MIB module for the management of the Fibre
50        Channel's Registered State Change Notification
51        (RSCN) functionality, which is specified by
52        FC-FLA and FC-FS.
53        GLOSSARY :
54        RSCN    - Registered State Change Notification.
55                  RSCN Notifications are sent to Nx_ports
56                  and other switches to notify that an event
57                  has occured.
58        SW_RSCN - Switch Registered State Change Notification.
59                  SW_RSCN Notifications are sent to neighbouring
60                  switches in a fabric to notify that an
61                  event has occured.
62         ELS    - Extended Link Service.
63                  RSCN Software module uses ELS frame formats
64                  to send RSCN messages.
65         ILS    - Inter Link Service.
66                  RSCN Software module uses ILS frame formats
67                  to send SW-RSCN messages."
68    REVISION        "200809010000Z"
69    DESCRIPTION
70        "modified rscnEventTov range from '1..2000' to '0.2000'."
71    REVISION        "200608170000Z"
72    DESCRIPTION
73        "Added following notifications
74        -rscnIlsRxRejectReqNotify
75        -rscnElsRxRejectReqNotify
76
77        Added 2 new notification control objects:
78        - rscnIlsRxRejectReqNotifyEnable
79        - rscnElsRxRejectReqNotifyEnable
80
81        Added rscnNotifyControlGroupSup1 OBJECT-GROUP
82        Added rscnRejectNotifyGroup NOTIFICATION-GROUP
83        Added rscnMIBComplianceRev3 MODULE-COMPLIANCE"
84    REVISION        "200505060000Z"
85    DESCRIPTION
86        "Added rscnEventTovTable."
87    REVISION        "200310160000Z"
88    DESCRIPTION
89        "Added rscnMultiPidTable."
90    REVISION        "200209200000Z"
91    DESCRIPTION
92        "Initial version of this MIB module."
93    ::= { ciscoMgmt 292 }
94
95
96ciscoRscnMIBObjects  OBJECT IDENTIFIER
97    ::= { ciscoRscnMIB 1 }
98
99rscnMIBConformance  OBJECT IDENTIFIER
100    ::= { ciscoRscnMIB 2 }
101
102rscnConfiguration  OBJECT IDENTIFIER
103    ::= { ciscoRscnMIBObjects 1 }
104
105rscnStats  OBJECT IDENTIFIER
106    ::= { ciscoRscnMIBObjects 2 }
107
108rscnInformation  OBJECT IDENTIFIER
109    ::= { ciscoRscnMIBObjects 3 }
110
111rscnNotification  OBJECT IDENTIFIER
112    ::= { ciscoRscnMIBObjects 4 }
113
114rscnNotifications  OBJECT IDENTIFIER
115    ::= { rscnNotification 0 }
116
117
118-- State Change Registration Table
119
120rscnScrNumber OBJECT-TYPE
121    SYNTAX          Integer32 (0..2147483647)
122    MAX-ACCESS      read-only
123    STATUS          current
124    DESCRIPTION
125        "The number of Nx_Ports currently registered
126        to receive RSCNs."
127    ::= { rscnConfiguration 1 }
128
129rscnScrTable OBJECT-TYPE
130    SYNTAX          SEQUENCE OF RscnScrEntry
131    MAX-ACCESS      not-accessible
132    STATUS          current
133    DESCRIPTION
134        "A table of Nx_Ports that have registered to
135        receive RSCNs on all VSANs configured on the
136        local switch."
137    ::= { rscnConfiguration 2 }
138
139rscnScrEntry OBJECT-TYPE
140    SYNTAX          RscnScrEntry
141    MAX-ACCESS      not-accessible
142    STATUS          current
143    DESCRIPTION
144        "An entry (conceptual row) containing information
145        about one Nx_Port which has registered to receive
146        RSCNs on the VSAN indicated by vsanIndex."
147    INDEX           {
148                        vsanIndex,
149                        rscnScrFcId
150                    }
151    ::= { rscnScrTable 1 }
152
153RscnScrEntry ::= SEQUENCE {
154        rscnScrFcId    FcAddressId,
155        rscnScrRegType INTEGER
156}
157
158rscnScrFcId OBJECT-TYPE
159    SYNTAX          FcAddressId
160    MAX-ACCESS      not-accessible
161    STATUS          current
162    DESCRIPTION
163        "The Fibre Channel Identifier (FC-ID) of the
164        subscribing Nx_Port."
165    ::= { rscnScrEntry 1 }
166
167rscnScrRegType OBJECT-TYPE
168    SYNTAX          INTEGER  {
169                        fromFabricCtrlr(1),
170                        fromNxPort(2),
171                        fromBoth(3)
172                    }
173    MAX-ACCESS      read-only
174    STATUS          current
175    DESCRIPTION
176        "This object indicates the type of registration
177        desired by the subscriber.
178
179        'fromFabricCtrlr' indicates RSCNs generated by the
180        Fabric Controller.
181
182        'fromNxPort' indicates RSCNs generated by
183        Nx_Ports.
184
185        'fromBoth' indicates RSCNs generated by Fabric
186        Controller and Nx_Ports."
187    ::= { rscnScrEntry 2 }
188
189
190
191-- Statistics
192
193rscnScrTotalRejects OBJECT-TYPE
194    SYNTAX          Counter32
195    MAX-ACCESS      read-only
196    STATUS          current
197    DESCRIPTION
198        "The total number of SCRs rejected
199        across all VSANs by the local switch."
200    ::= { rscnStats 1 }
201
202rscnRscnReqTotalRejects OBJECT-TYPE
203    SYNTAX          Counter32
204    MAX-ACCESS      read-only
205    STATUS          current
206    DESCRIPTION
207        "The total number of RSCN requests rejected
208        across all VSANs by the local switch."
209    ::= { rscnStats 2 }
210
211rscnSwRscnReqTotalRejects OBJECT-TYPE
212    SYNTAX          Counter32
213    MAX-ACCESS      read-only
214    STATUS          current
215    DESCRIPTION
216        "The total number of SW_RSCN requests rejected
217        across all VSANs by the local switch."
218    ::= { rscnStats 3 }
219
220rscnStatsTable OBJECT-TYPE
221    SYNTAX          SEQUENCE OF RscnStatsEntry
222    MAX-ACCESS      not-accessible
223    STATUS          current
224    DESCRIPTION
225        "The statistics related to the RSCN module. The
226        statistics are maintained per VSAN."
227    ::= { rscnStats 4 }
228
229rscnStatsEntry OBJECT-TYPE
230    SYNTAX          RscnStatsEntry
231    MAX-ACCESS      not-accessible
232    STATUS          current
233    DESCRIPTION
234        "An entry (conceptual row) in this table."
235    INDEX           { vsanIndex }
236    ::= { rscnStatsTable 1 }
237
238RscnStatsEntry ::= SEQUENCE {
239        rscnRxScrs       Counter32,
240        rscnRxRscns      Counter32,
241        rscnTxRscns      Counter32,
242        rscnRxSwRscns    Counter32,
243        rscnTxSwRscns    Counter32,
244        rscnScrRej       Counter32,
245        rscnRscnReqRej   Counter32,
246        rscnSwRscnReqRej Counter32
247}
248
249rscnRxScrs OBJECT-TYPE
250    SYNTAX          Counter32
251    MAX-ACCESS      read-only
252    STATUS          current
253    DESCRIPTION
254        "The number of SCRs received from Nx_Ports
255        on this VSAN."
256    ::= { rscnStatsEntry 1 }
257
258rscnRxRscns OBJECT-TYPE
259    SYNTAX          Counter32
260    MAX-ACCESS      read-only
261    STATUS          current
262    DESCRIPTION
263        "The number of RSCNs from Nx_Ports received on
264        this VSAN."
265    ::= { rscnStatsEntry 2 }
266
267rscnTxRscns OBJECT-TYPE
268    SYNTAX          Counter32
269    MAX-ACCESS      read-only
270    STATUS          current
271    DESCRIPTION
272        "The total number of RSCNs transmitted on this
273        VSAN."
274    ::= { rscnStatsEntry 3 }
275
276rscnRxSwRscns OBJECT-TYPE
277    SYNTAX          Counter32
278    MAX-ACCESS      read-only
279    STATUS          current
280    DESCRIPTION
281        "The number of Inter-Switch Registered State
282        Change Notifications (SW_RSCN) received on this
283        VSAN from other switches."
284    ::= { rscnStatsEntry 4 }
285
286rscnTxSwRscns OBJECT-TYPE
287    SYNTAX          Counter32
288    MAX-ACCESS      read-only
289    STATUS          current
290    DESCRIPTION
291        "The number of Inter-Switch Registered State
292        Change Notifications (SW_RSCN) transmitted
293        on this VSAN to other switches."
294    ::= { rscnStatsEntry 5 }
295
296rscnScrRej OBJECT-TYPE
297    SYNTAX          Counter32
298    MAX-ACCESS      read-only
299    STATUS          current
300    DESCRIPTION
301        "The number of SCR rejected on this VSAN."
302    ::= { rscnStatsEntry 6 }
303
304rscnRscnReqRej OBJECT-TYPE
305    SYNTAX          Counter32
306    MAX-ACCESS      read-only
307    STATUS          current
308    DESCRIPTION
309        "The number of RSCN requests rejected on this VSAN."
310    ::= { rscnStatsEntry 7 }
311
312rscnSwRscnReqRej OBJECT-TYPE
313    SYNTAX          Counter32
314    MAX-ACCESS      read-only
315    STATUS          current
316    DESCRIPTION
317        "The number of SW_RSCN requests rejected on this VSAN."
318    ::= { rscnStatsEntry 8 }
319
320
321
322-- Notification Information
323
324rscnIlsRejReasonCode OBJECT-TYPE
325    SYNTAX          FcGs3RejectReasonCode
326    MAX-ACCESS      read-only
327    STATUS          current
328    DESCRIPTION
329        "The reason code corresponding to an ILS
330        request rejection. This object contains the
331        reason code corresponding to the most recent
332        SCR or RSCN  request rejection by the RSCN
333        module."
334    ::= { rscnInformation 1 }
335
336rscnElsRejReasonCode OBJECT-TYPE
337    SYNTAX          FcGs3RejectReasonCode
338    MAX-ACCESS      read-only
339    STATUS          current
340    DESCRIPTION
341        "The reason code corresponding to an ELS
342        request rejection. This object contains the
343        reason code corresponding the most recent
344        SW_RSCN request rejection by the RSCN module."
345    ::= { rscnInformation 2 }
346
347-- Notification control objects
348
349rscnIlsRejectReqNotifyEnable OBJECT-TYPE
350    SYNTAX          TruthValue
351    MAX-ACCESS      read-write
352    STATUS          current
353    DESCRIPTION
354        "This object specifies if the RSCN module should
355        generate 'rscnIlsRejectReqNotify' notifications.
356
357        If value of this object is 'true', then the
358        notification is generated when a SW_RSCN request
359        is rejected.
360
361        If it is 'false', the notification is not generated."
362    DEFVAL          { false }
363    ::= { rscnConfiguration 3 }
364
365rscnElsRejectReqNotifyEnable OBJECT-TYPE
366    SYNTAX          TruthValue
367    MAX-ACCESS      read-write
368    STATUS          current
369    DESCRIPTION
370        "This object specifies if the RSCN module should
371        generate 'rscnElsRejectReqNotify' notifications.
372
373        If value of this object is 'true', then  the
374        notification is generated when a SCR or RSCN request
375        is rejected.
376
377        If it is 'false', the notification is not generated."
378    DEFVAL          { false }
379    ::= { rscnConfiguration 4 }
380
381rscnNotifyFcId OBJECT-TYPE
382    SYNTAX          FcAddressId
383    MAX-ACCESS      accessible-for-notify
384    STATUS          current
385    DESCRIPTION
386        "The FC-ID of an Nx_Port.
387        This object is to be used in the notifications:
388        rscnElsRejectReqNotify, rscnIlsRejectReqNotify,
389        rscnElsRxRejectReqNotify and rscnIlsRxRejectReqNotify.
390        This object is defined since the rscnScrFcId
391        object in the rscnScrTable is not-accessible."
392    ::= { rscnConfiguration 5 }
393
394rscnMultiPidTable OBJECT-TYPE
395    SYNTAX          SEQUENCE OF RscnMultiPidEntry
396    MAX-ACCESS      not-accessible
397    STATUS          current
398    DESCRIPTION
399        "This table contains the configuration information
400        for multi-pid option for all VSANs on the local
401        device."
402    ::= { rscnConfiguration 6 }
403
404rscnMultiPidEntry OBJECT-TYPE
405    SYNTAX          RscnMultiPidEntry
406    MAX-ACCESS      not-accessible
407    STATUS          current
408    DESCRIPTION
409        "An entry (conceptual row) in this table."
410    INDEX           { vsanIndex }
411    ::= { rscnMultiPidTable 1 }
412
413RscnMultiPidEntry ::= SEQUENCE {
414        rscnMultiPidEnable TruthValue
415}
416
417rscnMultiPidEnable OBJECT-TYPE
418    SYNTAX          TruthValue
419    MAX-ACCESS      read-write
420    STATUS          current
421    DESCRIPTION
422        "This object specifies whether the multi-pid
423        option is enabled on this VSAN.
424
425        If this object is set to 'true', then the
426        multi-pid option is enabled. If this object is
427        set to 'false, then the multi-pid option is
428        disabled.
429
430        If the multi-pid option is enabled, then RSCNs
431        generated to the registered Nx ports may contain
432        more than one affected port ID. By enabling this
433        option, the number of RSCNs generated can be
434        reduced."
435    DEFVAL          { false }
436    ::= { rscnMultiPidEntry 1 }
437
438
439
440rscnEventTovTable OBJECT-TYPE
441    SYNTAX          SEQUENCE OF RscnEventTovEntry
442    MAX-ACCESS      not-accessible
443    STATUS          current
444    DESCRIPTION
445        "This table contains the configuration information
446        for Event Time Out Value option for all VSANs on
447        the local device. The Event TOV value is used to
448        send the coalesced RSCNs to the registered user."
449    ::= { rscnConfiguration 7 }
450
451rscnEventTovEntry OBJECT-TYPE
452    SYNTAX          RscnEventTovEntry
453    MAX-ACCESS      not-accessible
454    STATUS          current
455    DESCRIPTION
456        "An entry (conceptual row) in this table represents
457        the Event Time out value on a VSAN."
458    INDEX           { vsanIndex }
459    ::= { rscnEventTovTable 1 }
460
461RscnEventTovEntry ::= SEQUENCE {
462        rscnEventTov Unsigned32
463}
464
465rscnEventTov OBJECT-TYPE
466    SYNTAX          Unsigned32 (0..2000)
467    UNITS           "milli-secs"
468    MAX-ACCESS      read-write
469    STATUS          current
470    DESCRIPTION
471        "This object specifies the event time-out value
472        configured for the VSAN. This timeout value
473        corresponds to the coalescing timeout.
474        This object is used to merge a number of RSCNs
475        into a single frame and send them out when
476        timer expires. The value of zero indicates that
477        frames will not be coalesced."
478    DEFVAL          { 2000 }
479    ::= { rscnEventTovEntry 1 }
480
481
482
483rscnIlsRxRejectReqNotifyEnable OBJECT-TYPE
484    SYNTAX          TruthValue
485    MAX-ACCESS      read-write
486    STATUS          current
487    DESCRIPTION
488        "This object specifies if the RSCN module should
489        generate 'rscnIlsRxRejectReqNotify' notifications.
490
491        If value of this object is 'true', then
492        the notification is generated when a SW_RSCN
493        that is rejected by another device is received
494        on the local device.
495
496        If it is 'false', the notification is not generated."
497    DEFVAL          { false }
498    ::= { rscnConfiguration 8 }
499
500rscnElsRxRejectReqNotifyEnable OBJECT-TYPE
501    SYNTAX          TruthValue
502    MAX-ACCESS      read-write
503    STATUS          current
504    DESCRIPTION
505        "This object specifies if the RSCN module should
506        generate 'rscnElsRxRejectReqNotify' notifications.
507
508        If value of this object is 'true', then the
509        notification is generated when a RSCN request that is
510        rejected by another device is received on the local
511        device.
512
513        If it is 'false', the notification is not generated."
514    DEFVAL          { false }
515    ::= { rscnConfiguration 9 }
516
517-- Notifications
518
519rscnElsRejectReqNotify NOTIFICATION-TYPE
520    OBJECTS         {
521                        rscnElsRejReasonCode,
522                        rscnNotifyFcId
523                    }
524    STATUS          current
525    DESCRIPTION
526        "This notification is generated by the RSCN module
527        on this switch whenever it rejects a SCR or RSCN
528        request.
529
530        The rscnScrFcId object indicates the FC-ID of the
531        sender of the request that was rejected."
532   ::= { rscnNotifications 1 }
533
534rscnIlsRejectReqNotify NOTIFICATION-TYPE
535    OBJECTS         {
536                        rscnIlsRejReasonCode,
537                        rscnNotifyFcId
538                    }
539    STATUS          current
540    DESCRIPTION
541        "This notification is generated by the RSCN module
542        on this switch whenever it rejects a SW_RSCN
543        request.
544
545        The rscnScrFcId object contains the FC-ID of the
546        sender of the request that was rejected."
547   ::= { rscnNotifications 2 }
548
549rscnElsRxRejectReqNotify NOTIFICATION-TYPE
550    OBJECTS         {
551                        rscnElsRejReasonCode,
552                        rscnNotifyFcId
553                    }
554    STATUS          current
555    DESCRIPTION
556        "This notification is generated by the RSCN module
557        on this switch whenever it receives a rejected
558        RSCN request.
559
560        The rscnScrFcId object indicates the FC-ID of the
561        sender where the request was rejected."
562   ::= { rscnNotifications 3 }
563
564rscnIlsRxRejectReqNotify NOTIFICATION-TYPE
565    OBJECTS         {
566                        rscnIlsRejReasonCode,
567                        rscnNotifyFcId
568                    }
569    STATUS          current
570    DESCRIPTION
571        "This notification is generated by the RSCN module
572        on this switch whenever it receives a rejected
573        SW_RSCN request.
574
575        The rscnScrFcId object contains the FC-ID of the
576        sender where the request was rejected."
577   ::= { rscnNotifications 4 }
578-- Conformance
579
580rscnMIBCompliances  OBJECT IDENTIFIER
581    ::= { rscnMIBConformance 1 }
582
583rscnMIBGroups  OBJECT IDENTIFIER
584    ::= { rscnMIBConformance 2 }
585
586
587rscnMIBCompliance MODULE-COMPLIANCE
588    STATUS          deprecated
589    DESCRIPTION
590        "The compliance statement for entities which
591        implement RSCN feature."
592    MODULE          -- this module
593    MANDATORY-GROUPS {
594                        rscnConfigGroup,
595                        rscnStatsGroup,
596                        rscnNotifyControlGroup,
597                        rscnNotifyGroup
598                    }
599    ::= { rscnMIBCompliances 1 }
600
601rscnMIBComplianceRev1 MODULE-COMPLIANCE
602    STATUS          deprecated
603    DESCRIPTION
604        "The compliance statement for entities which
605        implement RSCN feature."
606    MODULE          -- this module
607    MANDATORY-GROUPS {
608                        rscnConfigGroupRev1,
609                        rscnStatsGroup,
610                        rscnNotifyControlGroup,
611                        rscnNotifyGroup
612                    }
613    ::= { rscnMIBCompliances 2 }
614
615rscnMIBComplianceRev2 MODULE-COMPLIANCE
616    STATUS          deprecated
617    DESCRIPTION
618        "The compliance statement for entities which
619        implement RSCN feature."
620    MODULE          -- this module
621    MANDATORY-GROUPS {
622                        rscnConfigGroupRev1,
623                        rscnStatsGroup,
624                        rscnNotifyControlGroup,
625                        rscnNotifyGroup,
626                        rscnConfigGroupRev1Sup1
627                    }
628    ::= { rscnMIBCompliances 3 }
629
630rscnMIBComplianceRev3 MODULE-COMPLIANCE
631    STATUS          current
632    DESCRIPTION
633        "The compliance statement for entities which
634        implement RSCN feature."
635    MODULE          -- this module
636    MANDATORY-GROUPS {
637                        rscnConfigGroupRev1,
638                        rscnStatsGroup,
639                        rscnNotifyControlGroup,
640                        rscnNotifyGroup,
641                        rscnConfigGroupRev1Sup1,
642                        rscnRejectNotifyGroup,
643                        rscnNotifyControlGroupSup1
644                    }
645    ::= { rscnMIBCompliances 4 }
646
647-- Units of conformance
648
649rscnConfigGroup OBJECT-GROUP
650    OBJECTS         {
651                        rscnScrNumber,
652                        rscnScrRegType,
653                        rscnNotifyFcId
654                    }
655    STATUS          deprecated
656    DESCRIPTION
657        "A collection of objects for configuring
658        and displaying SCR entries."
659    ::= { rscnMIBGroups 1 }
660
661rscnStatsGroup OBJECT-GROUP
662    OBJECTS         {
663                        rscnScrTotalRejects,
664                        rscnRscnReqTotalRejects,
665                        rscnSwRscnReqTotalRejects,
666                        rscnRxScrs,
667                        rscnRxRscns,
668                        rscnTxRscns,
669                        rscnRxSwRscns,
670                        rscnTxSwRscns,
671                        rscnScrRej,
672                        rscnRscnReqRej,
673                        rscnSwRscnReqRej
674                    }
675    STATUS          current
676    DESCRIPTION
677        "A collection of objects for displaying
678        RSCN statistics."
679    ::= { rscnMIBGroups 2 }
680
681rscnNotifyControlGroup OBJECT-GROUP
682    OBJECTS         {
683                        rscnIlsRejReasonCode,
684                        rscnElsRejReasonCode,
685                        rscnIlsRejectReqNotifyEnable,
686                        rscnElsRejectReqNotifyEnable
687                    }
688    STATUS          current
689    DESCRIPTION
690        "A collection of notification control and
691        notification information objects."
692    ::= { rscnMIBGroups 3 }
693
694rscnNotifyGroup NOTIFICATION-GROUP
695   NOTIFICATIONS    {
696                        rscnIlsRejectReqNotify,
697                        rscnElsRejectReqNotify
698                    }
699    STATUS          current
700    DESCRIPTION
701        "A collection of notifications for monitoring
702        ILS and ELS request rejection by the RSCN
703        module."
704    ::= { rscnMIBGroups 4 }
705
706rscnConfigGroupRev1 OBJECT-GROUP
707    OBJECTS         {
708                        rscnScrNumber,
709                        rscnScrRegType,
710                        rscnNotifyFcId,
711                        rscnMultiPidEnable
712                    }
713    STATUS          current
714    DESCRIPTION
715        "A collection of objects for configuring
716        and displaying SCR entries and multi-pid
717        option."
718    ::= { rscnMIBGroups 5 }
719
720rscnConfigGroupRev1Sup1 OBJECT-GROUP
721    OBJECTS         { rscnEventTov }
722    STATUS          current
723    DESCRIPTION
724        "A collection of object(s) for configuring
725        the Event time out option."
726    ::= { rscnMIBGroups 6 }
727
728rscnRejectNotifyGroup NOTIFICATION-GROUP
729   NOTIFICATIONS    {
730                        rscnIlsRxRejectReqNotify,
731                        rscnElsRxRejectReqNotify
732                    }
733    STATUS          current
734    DESCRIPTION
735        "A collection of notifications for monitoring
736        ILS and ELS request rejection by other switches/
737        devices."
738    ::= { rscnMIBGroups 7 }
739
740rscnNotifyControlGroupSup1 OBJECT-GROUP
741    OBJECTS         {
742                        rscnIlsRxRejectReqNotifyEnable,
743                        rscnElsRxRejectReqNotifyEnable
744                    }
745    STATUS          current
746    DESCRIPTION
747        "A collection of notification control objects."
748    ::= { rscnMIBGroups 8 }
749
750END
751
752
753
754