-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-ISCSI-GW-MIB.mib
2682 lines (2369 loc) · 102 KB
/
CISCO-ISCSI-GW-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-ISCSI-GW-MIB.my: iSCSI-FC Gateway MIB
--
-- October 2002, Vinay Gaonkar
--
-- Copyright (c) 2002, 2003, 2004, 2005 by cisco Systems, Inc.
-- All rights reserved.
--
-- *********************************************************************
CISCO-ISCSI-GW-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32, Counter64 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
RowStatus,
TEXTUAL-CONVENTION,
TruthValue FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
InterfaceIndex,ifIndex FROM IF-MIB
ciscoMgmt FROM CISCO-SMI
ListIndexOrZero, ListIndex, CiscoPort FROM CISCO-TC
FcNameId, FcNameIdOrZero, VsanIndex FROM CISCO-ST-TC
ScsiName,ScsiLUNOrZero,
ciscoScsiLuEntry FROM CISCO-SCSI-MIB
cIscsiInstIndex,
cIscsiNodeAttributesEntry,
cIscsiInstanceAttributesEntry,
cIscsiSessionAttributesEntry FROM CISCO-ISCSI-MIB
FcList FROM CISCO-ZS-MIB;
ciscoIscsiGwMIB MODULE-IDENTITY
LAST-UPDATED "200504290000Z"
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
"MIB module for monitoring and configuring iSCSI
gateway functions. An iSCSI gateway represents FC
(Fibre Channel) targets/initiators as iSCSI
targets/initiators respectively and vice versa. It
means that an iSCSI target/initiator is presented to
the FC network as a virtual FC target/initiator which
can be accessed by the real FC initiators or can access
real FC targets, respectively.
It is up to the gateway implementation how to represent
the targets/initiators in each of the domains. For
example, a gateway implementation may choose to
represent multiple FC targets either as one iSCSI target
or multiple iSCSI targets (one to one). Same applies to
initiators also."
REVISION "200504290000Z"
DESCRIPTION
"Added new table ciscsiConnectionStatsTable.
Added new group cigConnectionStatsGroup.
Added new objects to IscsiIfEntry -
iscsiIfNumNormalConnections
iscsiIfNumDiscovConnections
iscsiIfTcpCWMEnable
iscsiIfTcpCWMBurstSize
iscsiIfTcpMaxJitter
Added new objects to Iscsi2FcNodeEntry -
iscsi2FcTargetUserName
iscsi2FcTargetPassword
Added new objects -
iscsiTargetUserName and
iscsiTargetPassword to ciScsiConfig, global
Scsi configuration."
REVISION "200411160000Z"
DESCRIPTION
"Added new objects iscsiIfTcpRndTrpTimeEst.
Added new group cigIscsiIfGroupRev4.
Added new object iscsiIfTcpLocalTcpPort.
Deprecated iscsiIfTcpLocalPort.
Added a new compliance ciscoiScsiGwMIBCompliance4."
REVISION "200312080000Z"
DESCRIPTION
"Added new objects iscsiIfIntrIdentificationMode,
iscsiIntrIdentificationMode and
iscsiInitiatorIdleTimeout.
Added a new compliance ciscoiScsiGwMIBCompliance3."
REVISION "200311140000Z"
DESCRIPTION
"Added new objects iscsiAuthMethod,iscsi2FcNodeAuthUser,
iscsiIfForwardingMode, and iscsiIfIntrProxyMode.
Added new compliance ciscoiScsiGwMIBCompliance1.
Added new table iscsiGigEIfTable and new comformance
group cigIscsiGigEIfGroup.
Added new objects fc2IscsiNodeTrespassMode and
fc2IscsiNodeRevertToPrimaryPort to fc2IscsiNodeTable."
REVISION "200308180000Z"
DESCRIPTION
"Added a new table iscsiSessionAttributesExtTable.
Added iscsiIfTable.
Added scsiLuExtRemoteSecLun to scsiLyExtTable.
Added new object iscsi2FcNodeFcAddrAssignment to
iscsi2FcNodeTable. Changed MAX-ACCESS of
iscsi2FcNodeDiscovered to read-create. Added a
MIN-ACCESS to to this object to be backward
compatible.
Added new conformance groups cigLuConfigurationGroupRev1
and cigConfigurationGroupRev1. Also added a new
compliance ciscoiScsiGwMIBCompliance1."
REVISION "200305220000Z"
DESCRIPTION
"Fixed the MIB compile errors during MIB release."
REVISION "200304100000Z"
DESCRIPTION
"Changed the syntax of CIscsiTargetDomains to BITS from
INTEGER.
Added a new table iscsiImprtExprtTgtsConfTable instead of
the two scalar objects iscsiImportTargets and
iscsiExportTargets.
Added two new objects iscsi2FcNodeDiscovered and
fc2IscsiNodeDiscovered to iscsi2FcNodeTable and
fc2IscsiNodeTable respectively.
Added new object fc2IscsiNodeAllIntrAccessAllowed.
Changed the range of iscsi2FcPortNumFCAddr to 0-64 from
0-255."
REVISION "200302110000Z"
DESCRIPTION
"Added an enumeration 'none' to the CIscsiTargetDomains TC.
Changed the DESCRIPTION of iscsiImportTargets and
iscsiExportTargets to reflect this change."
REVISION "200210050000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 317 }
ciscoiScsiGwMIBNotifications
OBJECT IDENTIFIER ::= { ciscoIscsiGwMIB 0 }
ciscoiScsiGwMIBObjects
OBJECT IDENTIFIER ::= { ciscoIscsiGwMIB 1 }
ciscoiScsiGwMIBConformance
OBJECT IDENTIFIER ::= { ciscoIscsiGwMIB 2 }
ciScsiConfig OBJECT IDENTIFIER ::=
{ ciscoiScsiGwMIBObjects 1 }
ciScsiStatistics OBJECT IDENTIFIER ::=
{ ciscoiScsiGwMIBObjects 2 }
-- Textual Conventions
CIscsiTargetDomains ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value which identifies zero or more target domains.
One bit is defined for each defined domain, and a domain
is identified if its bit is set."
SYNTAX BITS {
fibreChannel (0)
}
CIscsiNodeRoles ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Role of the iSCSI node.
A node can operate as in one or both of two roles:
a target role and/or an initiator role.
An initiator starts a iSCSI session with a target to
to do any iSCSI transaction."
SYNTAX BITS {
targetTypeNode(0),
initiatorTypeNode(1)
}
IscsiName ::= TEXTUAL-CONVENTION
DISPLAY-HINT "223a"
STATUS current
DESCRIPTION
"This data type is a local refinement of the SnmpAdminString
used to define an iSCSI Name."
REFERENCE
"iSCSI Protocol Specification, Section 3.2.6, iSCSI Names."
SYNTAX OCTET STRING (SIZE(16..223))
IscsiAuthMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The authentication method."
SYNTAX BITS {
none (0),
chap (1)
}
CIscsiIntrIdentificationMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The initiator identification mode. An initiator is
identified either by its iSCSI name (name) or by
its IP address (ipaddress)."
SYNTAX INTEGER {
name (1),
ipaddress (2)
}
-- the iSCSI Configuration group
iscsiImprtExprtTgtsConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF IscsiImprtExprtTgtsConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the configuration of automatic
importing and exporting of targets into and from iSCSI
domain. If a targets is discovered in other domains, it
is automatically imported if it is configured for
automatic importing. Similarly, if an iSCSI target is
discovered, it is automatically exported to other domains
if it is configured to do so."
::= { ciScsiConfig 1 }
iscsiImprtExprtTgtsConfEntry OBJECT-TYPE
SYNTAX IscsiImprtExprtTgtsConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information on configuration of
importing/exporting of the targets into/from iSCSI
domain."
AUGMENTS {cIscsiInstanceAttributesEntry}
::= { iscsiImprtExprtTgtsConfTable 1 }
IscsiImprtExprtTgtsConfEntry ::=
SEQUENCE {
iscsiImprtExprtTgtsConfImport CIscsiTargetDomains,
iscsiImprtExprtTgtsConfExport CIscsiTargetDomains
}
iscsiImprtExprtTgtsConfImport OBJECT-TYPE
SYNTAX CIscsiTargetDomains
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this object identifies zero or more target
domains. If a target domain is identified, then all the
targets in that domain are automatically imported into
iSCSI domain. Note that a target is not imported if it is
already in the iSCSI domain.
If value of this object is '00'H, then no targets are
automatically imported."
DEFVAL { {} }
::= { iscsiImprtExprtTgtsConfEntry 1 }
iscsiImprtExprtTgtsConfExport OBJECT-TYPE
SYNTAX CIscsiTargetDomains
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of this object identifies zero or more target
domains. If a target domain is identified, then all the
targets in the iSCSI domain are automatically exported
to that domain.
Note that only the real iSCSI targets are exported.
No targets are exported if the value of the object
is '00'H."
DEFVAL { {} }
::= { iscsiImprtExprtTgtsConfEntry 2 }
iscsiAuthMethod OBJECT-TYPE
SYNTAX IscsiAuthMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The global authentication method for iSCSI."
DEFVAL { {} }
::= { ciScsiConfig 2 }
--
-- iscsi2FcNodeTable
--
iscsi2FcNodeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Iscsi2FcNodeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists all the nodes in the iSCSI domain
which are currently represented in the FC domain.
Entries in this table are automatically created when
an iSCSI initiator logs (starts a session) into a target
or an iSCSI target is discovered. Entries are also
created when targets are exported from the iSCSI domain
into FC.
Entries in this table are automatically removed when an
iSCSI initiator logs out of all targets or an iSCSI
target disappears.
Entries also can be created and deleted using the
iscsi2FcNodeRowStatus object.
If the entry created in this table exposes either iSCSI
initiator or iSCSI target or both from the local device,
then a entry has to be created implicitly by the agent
in the cIscsiNodeAttributesTable when an entry is
created in this table.
A row in this table can not be made 'active' until values
are explicitly provided for that row's instances of
iscsi2FcNodeName and iscsi2FcNodeRole.
The following objects cannot be modified when the
iscsi2FcNodeRowStatus is 'active' :
iscsi2FcNodeName
iscsi2FcNodeRole
To modify the above objects, the entry must be deleted
and re-created with new values of above objects.
Every node in this table is associated with a iSCSI
instance which is uniquely identified by
cIscsiInstIndex."
::= { ciScsiConfig 3 }
iscsi2FcNodeEntry OBJECT-TYPE
SYNTAX Iscsi2FcNodeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing an iSCSI node which is presented
as a FC node to the FC domain."
INDEX { cIscsiInstIndex, iscsi2FcNodeIndex }
::= { iscsi2FcNodeTable 1 }
Iscsi2FcNodeEntry ::=
SEQUENCE {
iscsi2FcNodeIndex Unsigned32,
iscsi2FcNodeName IscsiName,
iscsi2FcNodeRole CIscsiNodeRoles,
iscsi2FcNodePersistentFCAddr TruthValue,
iscsi2FcPortPersistentFCAddr TruthValue,
iscsi2FcPortNumFCAddr Unsigned32,
iscsi2FcNodeFCAddr FcNameIdOrZero,
iscsi2FcPortFCAddrListIndex ListIndexOrZero,
iscsi2FcNodeVsanList2k FcList,
iscsi2FcNodeVsanList4k FcList,
iscsi2FcNodeDiscovered TruthValue,
iscsi2FcNodeRowStatus RowStatus,
iscsi2FcNodeFcAddrAssignment INTEGER,
iscsi2FcNodeAuthUser SnmpAdminString,
iscsi2FcTargetUserName SnmpAdminString,
iscsi2FcTargetPassword SnmpAdminString
}
iscsi2FcNodeIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer value, which identifies an iSCSI
node in a FC domain."
::= { iscsi2FcNodeEntry 1 }
iscsi2FcNodeName OBJECT-TYPE
SYNTAX IscsiName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A character string that is a globally unique identifier
for the node represented by this entry. The node name
is independent of the location of the node, and can be
resolved into a set of addresses through various
discovery services."
::= { iscsi2FcNodeEntry 2 }
iscsi2FcNodeRole OBJECT-TYPE
SYNTAX CIscsiNodeRoles
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The role of the node represented by this entry.
Note that a gateway implementation may choose not to
allow a node to operate in both roles."
::= { iscsi2FcNodeEntry 3 }
iscsi2FcNodePersistentFCAddr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates if the node FC Address
(iscsi2FcNodeFCAddr) is made persistent or not. If this
object is 'true', then the same FC address is assigned to
the node if it were to be represented again in the FC
domain with the same node name. Note that the node FC
address is either automatically assigned or manually
configured."
::= { iscsi2FcNodeEntry 4 }
iscsi2FcPortPersistentFCAddr OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates if the port FC addresses (given
by iscsi2FcPortFCAddrListIndex) of this node is made
persistent or not.
If this object is 'true', then the same FC address is
assigned to the ports of the node if it were to be
represented again in the FC domain with the same node
name. Note that the port FC address is either
automatically assigned or manually configured.
If this object is 'false', then iscsi2FcPortNumFCAddr
and iscsi2FcPortFCAddrListIndex are not valid as
port FC addresses are dynamically assigned/released."
::= { iscsi2FcNodeEntry 5 }
iscsi2FcPortNumFCAddr OBJECT-TYPE
SYNTAX Unsigned32 (0..64)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of persistent port FC addresses that are
automatically assigned to ports associated with this
node. The fcAddressListTable contains the FC addresses
that are assigned for the node represented by this entry.
If the value of this object is 0, then the port FC
addresses are not automatically assigned.
Otherwise :
- the entries in the fcAddressListTable corresponding to
this automatic assignment as indicated by the object
iscsi2FcPortFCAddrListIndex cannot be either modified
or deleted.
- new entries cannot be created in the fcAddressListTable
with fcAddressListIndex which is equal to corresponding
iscsi2FcPortFCAddrListIndex for this instance.
- the corresponding iscsi2FcPortFCAddrListIndex cannot be
changed.
If the value of the object iscsi2FcPortPersistentFCAddr
is 'false', then this object cannot be modified."
::= { iscsi2FcNodeEntry 6 }
iscsi2FcNodeFCAddr OBJECT-TYPE
SYNTAX FcNameIdOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The persistent FC address of the node. If this object
is zero-length and iscsi2FcNodePersistentFCAddr is
'true' then the FC address of the node represented by
this entry is automatically assigned and made persistent.
If this object is non-zero length and
iscsi2FcNodePersistentFCAddr is 'true', then this value
is always used as FC address of the node represented by
this entry. If iscsi2FcNodePersistentFCAddr is 'false,
this object is not valid. The FC address for the node
represented by this entry is dynamically
assigned/released when the node represented by this entry
is created/destroyed."
::= { iscsi2FcNodeEntry 7 }
iscsi2FcPortFCAddrListIndex OBJECT-TYPE
SYNTAX ListIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The index of a list in the fcAddressListTable which
lists all the FC port addresses associated with this
node.
The object value of the iscsi2FcPortPersistentFCAddr
indicates if the addresses are persistent or not.
Note that this object cannot be modified if the
corresponding value of iscsi2FcPortNumFCAddr is non-zero.
If the value of the object iscsi2FcPortPersistentFCAddr
is 'false', then this object cannot be modified."
::= { iscsi2FcNodeEntry 8 }
iscsi2FcNodeVsanList2k OBJECT-TYPE
SYNTAX FcList
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The list of VSANs the node represented by this entry
can access.
Each octet within the value of this object specifies a
set of eight VSANs, with the first octet specifying
VSANs 0 through 7, the second octet specifying VSANs 8
through 15, etc. Within each octet, the most significant
bit represents the lowest numbered VSAN, and the least
significant bit represents the highest numbered VSAN.
Thus, each VSAN, is represented by a single bit within
the value of this object. The corresponding VSAN is
allowed on the node represented by this entry if and
only if that bit has a value of '1'. If this object has
a value which is less than 256 bytes long, then the
VSANs which are not represented are not considered to be
in this list.
If this object is a zero-length string, the node
represented by this entry can access only the default
VSAN."
DEFVAL {''H}
::= { iscsi2FcNodeEntry 9 }
iscsi2FcNodeVsanList4k OBJECT-TYPE
SYNTAX FcList
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The list of VSANs the node represented by this entry
can access.
Each octet within the value of this object specifies a
set of eight VSANs, with the first octet specifying
VSANs 2047 through 2054, the second octet specifying
VSANs 2055 through 2062, etc. Within each octet, the
most significant bit represents the lowest numbered
VSAN, and the least significant bit represents the
highest numbered VSAN. Thus, each VSAN, is represented
by a single bit within the value of this object. The
corresponding VSAN is allowed on the node represented by
this entry if and only if that bit has a value of '1'.
If this object has a value which is less than 256 bytes
long, then the VSANs which are not represented are not
considered to be in the list.
If this object is a zero-length string, the node
represented by this entry can access only the default
VSAN."
DEFVAL {''H}
::= { iscsi2FcNodeEntry 10 }
iscsi2FcNodeDiscovered OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This objects indicates if the node represented by this
entry was either automatically discovered or configured
manually.
If the value of this object is 'true', then the node
represented by this entry is automatically discovered.
If it is 'false', then the node represented by this entry
was manually configured.
An auto discovered node can be made manually configured
node by setting this object to 'false'.
Note that setting to 'false' when current value of the
object is 'false' results in error. Also, object cannot
be set to 'true'."
::= { iscsi2FcNodeEntry 11 }
iscsi2FcNodeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row."
::= { iscsi2FcNodeEntry 12 }
iscsi2FcNodeFcAddrAssignment OBJECT-TYPE
SYNTAX INTEGER {
auto (1),
manual (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies how the FC address of this node
is assigned.
If set to 'auto', the FC address is automatically
assigned to this node. If it is 'manual', then the FC
address has to be configured manually.
An auto assigned node FC address can be made manually
configured by setting this object to 'manual' and vice
versa."
DEFVAL { auto }
::= { iscsi2FcNodeEntry 13 }
iscsi2FcNodeAuthUser OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the user which is to be sent with iSCSI
authentication to the target, if authentication is
enabled (iscsiAuthMethod other than 'none') interface
on which carries session between initiator and target."
DEFVAL { ''H }
::= { iscsi2FcNodeEntry 14 }
iscsi2FcTargetUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user name to be used during the login
authentication. This is optional. If no user
name and password (defined by iscsi2FcTargetPassword
) is specified, then the global username and
password defined by iscsiTargetUserName and
iscsiTargetPassword (respectively) are used."
DEFVAL { ''H }
::= { iscsi2FcNodeEntry 15 }
iscsi2FcTargetPassword OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The password to be used during the login
authentication. This is optional. If no user
name (specified by iscsi2FcTargetUserName )and
password is specified, then the global username
and password defined by iscsiTargetUserName and
iscsiTargetPassword (respectively) is used.
When read, it returns zero length string."
DEFVAL { ''H }
::= { iscsi2FcNodeEntry 16 }
-- fc2IscsiNodeTable
fc2IscsiNodeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Fc2IscsiNodeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists all the FC nodes which the gateway
presents as iSCSI nodes to the iSCSI domain.
Entries in this table are automatically created when
FC nodes are discovered.
Entries in this table are automatically removed when
FC nodes go offline.
Entries also can be created/deleted using the
fc2IscsiNodeRowStatus object. An entry can be created by
to configure a node statically instead of allowing it to
be discovered.
A row in this table can not be made 'active' until values
are explicitly provided for that row's instances of
fc2IscsiNodeName and fc2IscsiNodeRole.
The following objects cannot be modified when the
fc2IscsiNodeRowStatus is 'active' :
- fc2IscsiNodeRole
- fc2IscsiNodeName
To modify the above objects, the entry must be deleted
and re-created with new values of above objects.
To create an iSCSI target from whole a FC target, use
fc2ScsiPortFCAddrListIndex.
To create an iSCSI target from Logical Units on the
FC targets, create an entry in this table. And
then create an entry (s) in the scsiLuExtTable using
fc2IscsiNodeName of an entry in this table as
scsiLuExtLocalTargetAddress value."
::= { ciScsiConfig 4 }
fc2IscsiNodeEntry OBJECT-TYPE
SYNTAX Fc2IscsiNodeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing a FC node which is presented as an
iSCSI node to the iSCSI domain."
AUGMENTS {cIscsiNodeAttributesEntry}
::= { fc2IscsiNodeTable 1 }
Fc2IscsiNodeEntry ::=
SEQUENCE {
fc2IscsiNodeRole CIscsiNodeRoles,
fc2IscsiNodeName IscsiName,
fc2IscsiPortFCAddrListIndex ListIndexOrZero,
fc2IscsiNodePermitListIndex ListIndexOrZero,
fc2IscsiNodeAdvIntfListIndex ListIndexOrZero,
fc2IscsiNodeAllIntrAccessAllowed TruthValue,
fc2IscsiNodeDiscovered TruthValue,
fc2IscsiNodeRowStatus RowStatus,
fc2IscsiNodeTrespassMode TruthValue,
fc2IscsiNodeRevertToPrimaryPort TruthValue
}
fc2IscsiNodeRole OBJECT-TYPE
SYNTAX CIscsiNodeRoles
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Role of the node represented by this entry.
Note that a gateway implementation may choose not to
allow a node to operate in both roles."
::= { fc2IscsiNodeEntry 1 }
fc2IscsiNodeName OBJECT-TYPE
SYNTAX IscsiName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The iSCSI name of the node represented by this entry."
::= { fc2IscsiNodeEntry 2 }
fc2IscsiPortFCAddrListIndex OBJECT-TYPE
SYNTAX ListIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The index of a list in the fcAddressListTable which
lists all the FC node addresses associated with the
node represented by this entry.
Use this object to represent the whole FC targets."
::= { fc2IscsiNodeEntry 3 }
fc2IscsiNodePermitListIndex OBJECT-TYPE
SYNTAX ListIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The index of a list in the iscsiNodeNameListTable which
lists all the iSCSI nodes that are permitted to access
the node represented by this entry.
If fc2IscsiNodeAllIntrAccessAllowed is 'false' and the
value of this object is 0, then no initiators are allowed
to access this target."
::= { fc2IscsiNodeEntry 4 }
fc2IscsiNodeAdvIntfListIndex OBJECT-TYPE
SYNTAX ListIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The index of a list in the nodeAdvIntfListTable which
lists all the interfaces on which the node represented
by this entry could be advertised."
::= { fc2IscsiNodeEntry 5 }
fc2IscsiNodeAllIntrAccessAllowed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates if all the initiators can access
the target represented by this entry. If this object is
'true', then all the initiators can access this target
even those which are not in the initiator permit list
(fc2IscsiNodePermitListIndex) of the target represented
by this entry.
If this object is false, then only initiators which are
in the permit list are allowed access to the target
represented by this entry.
Note that this object is valid only if the role of
the node represented by this entry is 'targetTypeNode'."
DEFVAL { false }
::= { fc2IscsiNodeEntry 6 }
fc2IscsiNodeDiscovered OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This objects indicates if the node represented by this
entry was either automatically discovered or configured
manually.
If the value of this object is 'true', then the node
represented by this entry is automatically discovered.
If it is 'false', then the node represented by this entry
was manually configured."
::= { fc2IscsiNodeEntry 7 }
fc2IscsiNodeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row."
::= { fc2IscsiNodeEntry 8 }
fc2IscsiNodeTrespassMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The trespass mode for this node.
Every iSCSI target represents one or more port(s) on the
FC target (fc2ScsiPortFCAddrListIndex).
If this object is 'true', the node instructs the FC node
to present all LUN I/O requests to secondary port
(fcSecondaryAddress) if the primary port (fcAddress) is
down.
Note that this object is valid only if fc2IscsiNodeRole
is 'targetTypeNode'."
DEFVAL { false }
::= { fc2IscsiNodeEntry 9 }
fc2IscsiNodeRevertToPrimaryPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates if it is required to revert back
to primary port the FC target if it comes back online.
Every iSCSI target represent one or more port(s) on the
FC target (fc2IscsiPortFCAddrListIndex). Only one of
the ports is the primary port. If the primary port goes
down, the designated secondary port takes over. This
objects indicates if the primary port has to be used
used once it comes back up.
Note that this object is valid only if fc2IscsiNodeRole
is 'targetTypeNode'."
DEFVAL { false }
::= { fc2IscsiNodeEntry 10 }
-- fcAddressListTable
fcAddressListTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcAddressListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list of FC addresses.
Entries in this table are automatically created/deleted
when the FC addresses are automatically
assigned/released to/from the entities which are using
this table to create FC address lists.
Entries in this table are also created/deleted using
fcAddressRowStatus.
A row in this table can not be made 'active' until a
value is explicitly provided for that row's instances
of fcAddress.
Also, the following object cannot be modified when
'fcAddressRowStatus' is 'active' :
- fcAddress
To modify the above object, the entry must be deleted and
re-created with new value of above object."
::= { ciScsiConfig 5 }
fcAddressListEntry OBJECT-TYPE
SYNTAX FcAddressListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry information about a FC address which is part
of a list. Entries with same fcAddressListIndex form a
list."
INDEX { fcAddressListIndex, fcAddressIndex }
::= { fcAddressListTable 1 }
FcAddressListEntry ::=
SEQUENCE {
fcAddressListIndex ListIndex,
fcAddressIndex Unsigned32,
fcAddress FcNameId,
fcSecondaryAddress FcNameIdOrZero,
fcAddressRowStatus RowStatus
}
fcAddressListIndex OBJECT-TYPE
SYNTAX ListIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of a list of FC addresses."
::= { fcAddressListEntry 1 }
fcAddressIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer value, which identifies a FC
address."
::= { fcAddressListEntry 2 }
fcAddress OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The FC address for this entry."
::= { fcAddressListEntry 3 }
fcSecondaryAddress OBJECT-TYPE
SYNTAX FcNameIdOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The secondary FC address for this entry.
This is the FC address used if the 'fcAddress' cannot be
reached. Note that every 'fcAddress' may not need a
secondary FC Address."
DEFVAL { ''H }
::= { fcAddressListEntry 4 }
fcAddressRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row."
::= { fcAddressListEntry 5}
-- nodeNameListTable
iscsiNodeNameListTable OBJECT-TYPE
SYNTAX SEQUENCE OF IscsiNodeNameListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the list of iSCSI node names.
A row in this table can not be made 'active' until a
value is explicitly provided for that row's instances
of iscsiNodeName.
Also, the following objects cannot be modified when
'iscsiNodeNameRowStatus' is 'active' :
- iscsiNodeName
To modify the above object, the entry must be deleted and
re-created with new value of above object."
::= { ciScsiConfig 6 }
iscsiNodeNameListEntry OBJECT-TYPE
SYNTAX IscsiNodeNameListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry information about an iSCSI node name which is
part of a list. Entries with same iscsiNodeNameListIndex
form a list."
INDEX { iscsiNodeNameListIndex, iscsiNodeNameIndex }
::= { iscsiNodeNameListTable 1 }
IscsiNodeNameListEntry ::=
SEQUENCE {
iscsiNodeNameListIndex ListIndex,
iscsiNodeNameIndex Unsigned32,
iscsiNodeName IscsiName,
iscsiNodeNameRowStatus RowStatus
}
iscsiNodeNameListIndex OBJECT-TYPE
SYNTAX ListIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of a list of iSCSI node names."
::= { iscsiNodeNameListEntry 1 }
iscsiNodeNameIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer value, which identifies a iSCSI
node name."
::= { iscsiNodeNameListEntry 2 }
iscsiNodeName OBJECT-TYPE
SYNTAX IscsiName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The iSCSI node name."
::= { iscsiNodeNameListEntry 3 }
iscsiNodeNameRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row."