-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-DM-MIB.mib
1493 lines (1319 loc) · 56.1 KB
/
CISCO-DM-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *********************************************************************
-- CISCO-DM-MIB.my: Domain Manager Mib
--
-- October 2002, Vinay Gaonkar
--
-- Copyright (c) 2002, 2003 by cisco Systems, Inc.
-- All rights reserved.
--
-- *********************************************************************
CISCO-DM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Unsigned32,
Counter32, Integer32, Gauge32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION, TruthValue,
RowStatus FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
ifIndex FROM IF-MIB
ciscoMgmt FROM CISCO-SMI
DomainId, DomainIdOrZero,
FcNameId, FcNameIdOrZero,
FcAddressId FROM CISCO-ST-TC
vsanIndex, notifyVsanIndex FROM CISCO-VSAN-MIB
cffFcFeElementName FROM CISCO-FC-FE-MIB;
ciscoDmMIB MODULE-IDENTITY
LAST-UPDATED "200309220000Z"
ORGANIZATION "Cisco Systems Inc. "
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553 -NETS
E-mail: [email protected]"
DESCRIPTION
"The MIB module for the domain management functionality
defined by the Fibre Channel standards (FC-SW2). For the
purposes of this MIB, 'Domain Manager' is the software
functionality which executes in both the principal switch
and other switches."
REVISION "200309220000Z"
DESCRIPTION
"Added a new table dmAllowedDomainIDListTable.
Added a new compliance statement dmMIBCompliance2 which
obseletes dmMIBCompliance1."
REVISION "200306200000Z"
DESCRIPTION
"Changed the default values for dmEnable, dmFabricName
and dmFcIdPersistencyNum."
REVISION "200302270000Z"
DESCRIPTION
"Updated the copyright"
REVISION "200302210000Z"
DESCRIPTION
"Fixed a problem with dmFcIdPersistencyGroup being both
mandatory and conditional."
REVISION "200301280000Z"
DESCRIPTION
"Changed the SYNTAX of dmFcIdPersistencyNum to INTEGER from
Unsigned32."
REVISION "200301020000Z"
DESCRIPTION
"Added objects dmFcIdPersistency and dmFcIdPurge to dmTable.
Added a new table dmFcIdPersistencyTable.
Added objects dmLocalPrincipalSwitchSelctns."
REVISION "200210040000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 302 }
ciscoDmMIBObjects OBJECT IDENTIFIER ::= { ciscoDmMIB 1 }
dmMIBConformance OBJECT IDENTIFIER ::= { ciscoDmMIB 2 }
dmConfiguration OBJECT IDENTIFIER ::= { ciscoDmMIBObjects 1 }
dmInfo OBJECT IDENTIFIER ::= { ciscoDmMIBObjects 2 }
dmNotificationPrefix OBJECT IDENTIFIER ::= { ciscoDmMIBObjects 3 }
-- Textual Conventions
DomainPriority ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Priority of the switch.
The principal switch selection is influenced by the
priority of the switch.
Some values are of importance are:
1 : The highest priority in principal switch
selection and is used by the user to establish
which switch becomes the principal switch.
255 : Indicates that the switch is not capable of
acting as a principal switch."
SYNTAX Unsigned32 (1..255)
DomainPriorityOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This is an extension of the DomainPriority. In
addition to the DomainPriority range, this also
includes 0 in its range of values. The value '0' means
that the priority is not known. If the meaning is
different from this, then it should mentioned in the
description of the object using this textual
convention."
SYNTAX Integer32 (0..255)
DomainInterfaceRole ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Role of the Domain Manager interface.
nonPrincipal (1) - non-principal interface
principalUpstream (2) - upstream principal interface
principalDownsteam (3) - downstream principal interface
isolated (4) - isolated interface
down (5) - down interface
unknown (6) - unknown interface
"
SYNTAX INTEGER {
nonPrincipal (1),
principalUpstream (2),
principalDownsteam (3),
isolated (4),
down (5),
unknown (6)
}
DmState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"State of the Domain Manager.
starting(1)-
unconfigured(2) -
principalSwitchSelection(3) - principal switch
- selection in progress.
domainIdDistribution(4) - domain ID distribution
- in progress.
buildFabricPhase(5) - BuildFabric in
- progress.
reconfigureFabricPhase(6) - ReconfigureFabric in
- progress.
stable(7) - stable.
stableWithNoEports(8) - stable with No present.
stableWithDomainConfigured(9) - stable with domain
- configured.
noDomains(10) - no domain
- configured/assigned.
disabled(11) - domain manager disabled.
suspended(12) - corresponding VSAN is
- suspended.
unknown(13) - unknown.
"
SYNTAX INTEGER {
starting(1),
unconfigured(2),
principalSwitchSelection(3),
domainIdDistribution(4),
buildFabricPhase(5),
reconfigureFabricPhase(6),
stable(7),
stableWithNoEports(8),
stableWithDomainConfigured(9),
noDomains(10),
disabled(11),
suspended(12),
unknown(13)
}
--
-- dmTable
--
dmTable OBJECT-TYPE
SYNTAX SEQUENCE OF DmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Domain Manager related parameters
which can be configured and monitored. There is one
entry for each of the VSANs configured on this switch.
An entry will be created whenever a VSAN is created on
the switch. The entry will be removed when the
corresponding VSAN is deleted."
::= { dmConfiguration 1 }
dmEntry OBJECT-TYPE
SYNTAX DmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry provides information on the domain manager
for a VSAN."
INDEX { vsanIndex }
::= { dmTable 1 }
DmEntry ::= SEQUENCE {
dmConfigDomainId DomainIdOrZero,
dmConfigDomainIdType INTEGER,
dmEnable TruthValue,
dmAutoReconfigure TruthValue,
dmContiguousAllocation TruthValue,
dmPriority DomainPriority,
dmRestart INTEGER,
dmFabricName FcNameIdOrZero,
dmPrincipalSwitchWwn FcNameIdOrZero,
dmLocalSwitchWwn FcNameIdOrZero,
dmAssignedAreaIdList OCTET STRING,
dmFcIdsGranted Counter32,
dmFcIdsRecovered Counter32,
dmFreeFcIds Gauge32,
dmAssignedFcIds Gauge32,
dmReservedFcIds Gauge32,
dmRunningPriority DomainPriority,
dmPrincSwRunningPriority DomainPriority,
dmState DmState,
dmPrincipalSwitchSelections Counter32,
dmBuildFabrics Counter32,
dmFabricReconfigures Counter32,
dmDomainId DomainIdOrZero,
dmLocalPrincipalSwitchSelctns Counter32,
dmFcIdPersistency TruthValue,
dmFcIdPurge INTEGER
}
dmConfigDomainId OBJECT-TYPE
SYNTAX DomainIdOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured Domain ID of the local switch on this
VSAN or zero if no Domain ID has been configured.
The meaning of this object depends on
dmConfigDomainIdType object.
If dmConfigDomainIdType is 'preferred', then domain ID
configured is called 'preferred Domain ID'. The valid
values are between 0 and 239. In a situation where
this domain could not be assigned, any other domain ID
would be acceptable. The value '0' means any domain ID.
If dmConfigDomainIdType is 'static', then domain ID is
called 'static Domain ID' and valid values are between
1 and 239. In a situation where this domain was
non-zero but could not be assigned, no other domain ID
would be acceptable.
If the Domain Manager is enabled on the VSAN, then a
RDI (Request Domain ID) will be sent requesting this
Domain ID. If no Domain ID can be granted in the case
of 'preferred' or if the configured 'static' domain ID
cannot be not granted then, it is an error condition.
When this error occurs, the E_ports on that VSAN will be
isolated and user will be informed via
'dmDomainIdNotAssigned' notification.
If the domain manager is not enabled, then the static
Domain ID is assumed to be granted, if it has been
configured (to a valid number).
If either of the domain IDs are not configured with a
non-zero value on this VSAN and if the domain manager is
not enabled, then
- switch will isolate all of its E_ports on this VSAN.
- The user will be informed via a notification
'dmDomainIdNotAssigned'."
DEFVAL { 0 }
::= { dmEntry 1 }
dmConfigDomainIdType OBJECT-TYPE
SYNTAX INTEGER {
static (1),
preferred(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of configured Domain ID."
DEFVAL { preferred }
::= { dmEntry 2 }
dmEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables the Domain Manager on this VSAN.
If enabled on an active VSAN, the switch will
participate in principal switch selection.
If disabled, the switch will participate in neither
the principal switch selection nor domain allocation.
Thus, Domain ID needs to be configured statically."
DEFVAL { true }
::= { dmEntry 3 }
dmAutoReconfigure OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object determines how the switch responds to
certain error conditions.
The condition that can cause these errors is
merging of two disjoint fabrics that have
overlapping Domain ID list.
If value of this object is 'true', the switch will
send a RCF (ReConfigureFabric) to rebuild the
Fabric.
If 'false' the switch will isolate the E_ports on
which the errors happened."
DEFVAL { false }
::= { dmEntry 4 }
dmContiguousAllocation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines how the switch behaves when elected
as the principal switch.
If true, switch won't accept non-contiguous domain
IDs in RDIs and will try to replace all the Domain IDs
in the list with contiguous domain IDs if a RDI for a
contiguous Domain ID can not be fulfilled.
If false, then the switch acts normally in granting
the Domain IDs even if they are not contiguous."
::= { dmEntry 5 }
dmPriority OBJECT-TYPE
SYNTAX DomainPriority
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Priority of the switch to be used in principal switch
selection process."
::= { dmEntry 6 }
dmRestart OBJECT-TYPE
SYNTAX INTEGER {
nonDisruptive(1),
disruptive(2),
noOp(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object tells the Domain Manager to rebuild the
Domain ID tree all over again.
If this object is set to 'disruptive', then a RCF
(ReConfigure Fabric) is generated in the VSAN in
order for the fabric to recover from the errors.
If this object is set to 'nonDisruptive', then a
BF (Build Fabric) is generated in the VSAN.
No action is taken if this object is set to 'noOp'.
The value of the object when read is always 'noOp'."
::= { dmEntry 7 }
dmFabricName OBJECT-TYPE
SYNTAX FcNameIdOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The WWN that is used for fabric logins on this VSAN.
This object is used only if the value of dmEnable is
false. If the value of dmEnable is true, then principal
switch WWN is used.
It is automatically set to the default value when set to
zero-length value."
DEFVAL {'20010005300028df'H}
::= { dmEntry 8 }
dmPrincipalSwitchWwn OBJECT-TYPE
SYNTAX FcNameIdOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The WWN of the Principal Switch on this VSAN, or
zero-length string if the identity of the principal
switch is unknown."
DEFVAL { ''H }
::= { dmEntry 9 }
dmLocalSwitchWwn OBJECT-TYPE
SYNTAX FcNameIdOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The WWN of the local Switch on this VSAN."
::= { dmEntry 10 }
dmAssignedAreaIdList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The list of Area IDs which have been assigned in this
VSAN, formatted as an array of octets in ascending order.
There could zero or more Area IDs assigned on this VSAN.
Area ID is an 8-bit value. And therefore, each octet
represents one Area ID. So, the list containing the
area_IDs 23, 45, 235 and 56 would be formatted as the
4-octet string x'172d38eb'.
Each of these area_IDs can be used as an index to the
dmAreaTable to get the statistics on the area."
::= { dmEntry 11 }
dmFcIdsGranted OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FC IDs that are granted (for local
use) by the Domain Manager on the local switch since the
switch has been initialized. Note that all such FC IDs
have the local switch's Domain ID."
::= { dmEntry 12 }
dmFcIdsRecovered OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of FC IDs that are recovered by the
Domain Manager on the local switch since the switch has
been initialized. A recovered FC ID is one that is
explicitly returned after previously being granted for
local use."
::= { dmEntry 13 }
dmFreeFcIds OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of FC IDs that are unassigned on this VSAN."
::= { dmEntry 14 }
dmAssignedFcIds OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of FC IDs that are assigned on this VSAN."
::= { dmEntry 15 }
dmReservedFcIds OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of FC IDs that are reserved on this VSAN."
::= { dmEntry 16 }
dmRunningPriority OBJECT-TYPE
SYNTAX DomainPriority
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The running priority of the local switch on this VSAN."
::= { dmEntry 17 }
dmPrincSwRunningPriority OBJECT-TYPE
SYNTAX DomainPriority
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The running priority of the principal switch on this
VSAN."
::= { dmEntry 18 }
dmState OBJECT-TYPE
SYNTAX DmState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the Domain Manager on the local switch on
this VSAN."
::= { dmEntry 19 }
dmPrincipalSwitchSelections OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of principal switch selections on this VSAN."
::= { dmEntry 20 }
dmBuildFabrics OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 'BuildFabrics' (BFs) that have occurred
on this VSAN."
::= { dmEntry 21 }
dmFabricReconfigures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 'ReconfigureFabrics' (RCFs) that have
occurred on this VSAN."
::= { dmEntry 22 }
dmDomainId OBJECT-TYPE
SYNTAX DomainIdOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Domain ID of the local switch on this VSAN or zero
if no Domain ID has been assigned."
::= { dmEntry 23 }
dmLocalPrincipalSwitchSelctns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the local switch became
the principal switch on this VSAN."
::= { dmEntry 24 }
dmFcIdPersistency OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if the FC IDs assigned on this VSAN are
persistent or not.
If this object is set to 'true', then all the FC ID
assigned on this VSAN are made persistent on this VSAN.
If this object is set to 'false', then all the entries on
VSAN in dmFcIdPersistencyTable are deleted.
An entry (or entries) is (or are) automatically created
in the dmFcIdPersistencyTable with dmFcIfPersistencyWwn
equal to either WWN of the FC device (if the local port
is a F_port) for which the FC ID was assigned or WWN of
local port (if the local port is a FL_port) and
dmFcIdPersistencyType equal to 'dynamic'.
The FC ID persistency can be enabled on this VSAN only
if all the following conditions are satisfied:
- the VSAN is active.
- if dmConfigDomainIdType is equal is 'static' and
dmConfigDomainId is not equal to zero on this VSAN.
- if the dmConfigDomainId is equal to dmDomainId on
this VSAN.
"
DEFVAL { false }
::= { dmEntry 25 }
dmFcIdPurge OBJECT-TYPE
SYNTAX INTEGER {
noOp (1),
enable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object tells the Domain Manager to purge the FC IDs
on this VSAN in the FC ID persistency database.
If the value of this object is 'enable', then
the FC IDs which are dynamic and not currently used are
purged from the persistency database."
::= { dmEntry 26 }
--
-- dmIfTable - Interface configuration
--
dmIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DmIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains interface configuration of the
domain manager per VSAN.
An entry in this table is automatically created when
an E_port becomes non-isolated and there is a
entry in dmTable for that VSAN.
An entry is deleted automatically from this table if :
a) the correponding interface becomes non-existent, or
b) the correponding interface becomes a non-E_port
and all the writable objects has default values.
or
c) the dmTable entry for the corresponding VSAN is
deleted.
Entries in this table can be created via dmIfRowStatus
only as the means to specify non-default parameter values
for an interface at a time when that interface is either
down or is a non-E_port.
So an entry in this table exists when one or both of
these conditions holds:
- one or more configuration parameters have non-default
values for an interface which is either down or a
non-E_port and corresponding VSAN has an entry in the
dmTable, and/or
- the interface is an E_port and it is up.
This has a number of consequences:
- an entry exists for a non-E_port or an E_port which is
down whenever that interface has non-default parameters
and the corresponding VSAN has an entry in the dmTable;
- an entry cannot be created (via dmIfRowStatus) for an
interface with default parameters; instead, the agent
creates/deletes an entry for an interface with default
parameters according to whether the E_port is up or
down.
- an entry can not be created via dmIfRowStatus unless
non-default parameter values are (simultaneously)
configured for an interface which is a non-E_port or a
down interface, and the correspoding VSAN has an entry
in the dmTable.
- deleting an entry via RowStatus when either the
interface is down and configured with non-default
values or the interface is up, is equivalent to
resetting its parameters to their default values.
If the interface is down and was configured with
default- values, then the entry would be deleted."
::= { dmConfiguration 2 }
dmIfEntry OBJECT-TYPE
SYNTAX DmIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry gives information on interface
configuration on a particular VSAN."
INDEX { vsanIndex, ifIndex}
::= { dmIfTable 1 }
DmIfEntry ::= SEQUENCE {
dmIfRcfReject TruthValue,
dmIfRole DomainInterfaceRole,
dmIfRowStatus RowStatus
}
dmIfRcfReject OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object determines if the incoming ReConfigure
Fabric (RCF) messages on this interface on this vsan
is accepted or not. If this object is 'true', then the
incoming RCF is rejected. If 'false', incoming RCF
is accepted.
Note that this object does not apply to the outgoing
RCFs generated by this interface."
DEFVAL {false}
::= { dmIfEntry 1 }
dmIfRole OBJECT-TYPE
SYNTAX DomainInterfaceRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The role of this interface."
::= { dmIfEntry 2 }
dmIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
This object can be used to create an entry only if the
corresponding interface exists. If the interface does
not exists, a create will fail."
::= { dmIfEntry 3 }
--
-- dmAreaTable
--
dmAreaTable OBJECT-TYPE
SYNTAX SEQUENCE OF DmAreaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains area statistics on this domain
manager per VSAN. Each octet in the dmAssignedAreaList
can be used to index this table to find information on
each area."
::= { dmInfo 1 }
dmAreaEntry OBJECT-TYPE
SYNTAX DmAreaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry gives information on the Area ID and all
Port IDs that were assigned for within an area for
a particular VSAN."
INDEX { vsanIndex, dmAreaAreaId}
::= { dmAreaTable 1 }
DmAreaEntry ::= SEQUENCE {
dmAreaAreaId Unsigned32,
dmAreaAssignedPortIdList OCTET STRING
}
dmAreaAreaId OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Area ID of this area."
::= { dmAreaEntry 1 }
dmAreaAssignedPortIdList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The list of Port IDs which have been assigned in
this Area and VSAN, formatted as an array of octets
in ascending order. There could be zero or more Port
IDs assigned on this Area and VSAN.
Port ID is an 8-bit value. And therefore, each octet
represents one Port ID. So, the list containing the
Port IDs 23, 45, 235 and 56 would be formatted as the
4-octet string x'172d38eb'."
::= { dmAreaEntry 2 }
--
-- dmDatabaseTable
-- .
dmDatabaseTable OBJECT-TYPE
SYNTAX SEQUENCE OF DmDatabaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all information known by the
local switch about all the domains which have been
assigned in each of the VSANs."
::= { dmInfo 2 }
dmDatabaseEntry OBJECT-TYPE
SYNTAX DmDatabaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dmDatabaseTable
containing information about one Domain ID in one
VSAN."
INDEX { vsanIndex , dmDatabaseDomainId}
::= { dmDatabaseTable 1 }
DmDatabaseEntry ::= SEQUENCE {
dmDatabaseDomainId DomainId,
dmDatabaseSwitchWwn FcNameId
}
dmDatabaseDomainId OBJECT-TYPE
SYNTAX DomainId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Domain ID for which this row contains
information."
::= { dmDatabaseEntry 1 }
dmDatabaseSwitchWwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The WWN of the switch to which the corresponding
value of dmDatabaseDomainId is currently assigned
for the particular VSAN."
::= { dmDatabaseEntry 2 }
--
-- Domain Manager FC ID cache information
--
dmMaxFcIdCacheSize OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of FC IDs that can be cached in the
dmFcIdCacheTable."
::= { dmInfo 3 }
--
-- dmFcIdCacheTable
--
dmFcIdCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF DmFcIdCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all the FC IDs that have recently
been released. So it lists all the FC IDs that have
valid WWN to FC ID mappings and currently not assigned
to any ports. These FC ID were assigned to ports and now,
have been released. This cached FC ID contains only Area
ID and Port ID information. The FC ID cache is kept to
provide best effort re-assignment of same FC IDs. i.e,
an Nx_port would get the same FC ID when it asks for a FC
ID again, after releasing it."
::= { dmInfo 4 }
dmFcIdCacheEntry OBJECT-TYPE
SYNTAX DmFcIdCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dmFcIdCacheTable
containing information about one FC ID that was
released from a WWN, corresponding to a range of one or
more ports. An entry is created when a FC ID is
released by the last port in the range. An entry is
deleted either when the number of rows in this table
reaches 'dmMaxFcIdCacheSize' if it is the oldest entry
(depending on the value of the object
'dmFcIdCacheReleasedTime') to make room for the a new
entry or when the this FC ID is assinged to a port."
INDEX { vsanIndex, dmFcIdCacheWwn}
::= { dmFcIdCacheTable 1 }
DmFcIdCacheEntry ::= SEQUENCE {
dmFcIdCacheWwn FcNameId,
dmFcIdCacheAreaIdPortId OCTET STRING,
dmFcIdCachePortIds Unsigned32
}
dmFcIdCacheWwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The WWN of the port associated this entry."
::= { dmFcIdCacheEntry 1 }
dmFcIdCacheAreaIdPortId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Area ID and Port ID of FC ID that was assigned
and has since been released by this port on this
VSAN.
Note that this object is only 2 bytes and only
contains the Area ID and Port ID."
::= { dmFcIdCacheEntry 2 }
dmFcIdCachePortIds OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of port IDs assigned and/or released starting
from Port ID contained in the second byte of
dmFcIdCacheAreaIdPortId for the Area ID contained in
the first byte of object dmFcIdCacheAreaIdPortId."
::= { dmFcIdCacheEntry 3 }
-- Notification control object.
dmReConfFabricChangeNotifyEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether or not the local switch should issue a
dmFabricChangeNotify notification on sending or receiving
ReConfigureFabric (RCF) on a VSAN.
If the value of the object is 'true, then the
notification is generated. If the value is 'false',
notification is not generated."
DEFVAL { false }
::= { dmConfiguration 3 }
--
-- FcID Persistency table
--
dmFcIdPersistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF DmFcIdPersistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the FC IDs which are in the FC ID
persistency database.
The FC ID persistency is a feature which enables FC
devices to get same FC IDs even if they disappear and
appear back, if enabled.
The FC ID persistency database contains information
about the FC IDs which are assigned to FC devices
either statically (configured) or dynamically.
Entries are automatically created when a FC ID is
assigned and dmFcIdPersistency is 'true' on this VSAN.
The entries can also be created and deleted via
the dmFcIdPersistencyRowStatus object.
Entries are deleted when corresponding
dmFcIdPersistencyType is 'dynamic' and
dmFcIdPersistencyUsed is 'false' if the object
dmFcIdPurge is set to 'enable'.
An entry cannot be created if the dmFcIdPersistency
is 'false'.
If the dmDomainId is changed on a VSAN, then all the
entries on that VSAN in this table are deleted. Also,
if the dmConfigDomainId is not equal to dmDomainId on
a VSAN, then all the entries in that VSAN are deleted.
"
::= { dmConfiguration 4 }
dmFcIdPersistencyEntry OBJECT-TYPE
SYNTAX DmFcIdPersistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry provides information about a persistent FC ID."
INDEX { vsanIndex, dmFcIdPersistencyWwn }
::= { dmFcIdPersistencyTable 1 }
DmFcIdPersistencyEntry ::= SEQUENCE {
dmFcIdPersistencyWwn FcNameId,
dmFcIdPersistencyFcId FcAddressId,
dmFcIdPersistencyNum INTEGER,
dmFcIdPersistencyUsed TruthValue,
dmFcIdPersistencyType INTEGER,
dmFcIdPersistencyRowStatus RowStatus
}
dmFcIdPersistencyWwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is either the port WWN of the FC device if the
local port is a F_port or WWN of the local port if the
local port is a FL_port. The local port is the port on
the local device to which the FC device is attached."
::= { dmFcIdPersistencyEntry 1 }
dmFcIdPersistencyFcId OBJECT-TYPE
SYNTAX FcAddressId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The FC ID assigned for this WWN on this VSAN.
The third octet of this object must be '0x00' if
value of dmFcIdPersistencyNum is 'area'.
This object cannot be changed if either the value of
dmFcIdPersistencyUsed is 'true' or if the
new value being set is already assigned on this VSAN."
::= { dmFcIdPersistencyEntry 2 }
dmFcIdPersistencyNum OBJECT-TYPE
SYNTAX INTEGER {
one (1),
area (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION