-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-SVC-INTERFACE-MIB.mib
1379 lines (1096 loc) · 40.9 KB
/
CISCO-SVC-INTERFACE-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-SVC-INTERFACE-MIB.my: Cisco SVC MIB
--
-- Cisco SVC (SAN Volume Controller) Interface MIB
-- August 2003, Charuhas Ghatge
--
-- Copyright (c) 2003, 2004 by Cisco Systems, Inc.
-- All rights reserved.
--
-- *********************************************************************
CISCO-SVC-INTERFACE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Integer32,
Unsigned32,
Counter32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
RowStatus, TEXTUAL-CONVENTION FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
FcNameId, VsanIndex FROM CISCO-ST-TC
InterfaceIndex FROM IF-MIB
ciscoMgmt FROM CISCO-SMI;
ciscoSvcInterfaceMIB MODULE-IDENTITY
LAST-UPDATED "200409210000Z"
ORGANIZATION "Cisco Systems Inc. "
CONTACT-INFO
"Cisco Systems
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553 -NETS
E-mail: [email protected]"
DESCRIPTION
"MIB module for displaying and configuring
SVC (SAN Volume Controller) related features
in the Storage Area Network (SAN) switches.
SVC is the SAN Volume Controller that implements
the specialized virtualization and caching
features for storage attached to a SAN."
REVISION "200409210000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 378 }
ciscoSvcInterfaceMIBObjects
OBJECT IDENTIFIER ::= { ciscoSvcInterfaceMIB 1 }
ciscoSvcInterfaceMIBTrapPrefix
OBJECT IDENTIFIER ::= { ciscoSvcInterfaceMIB 2 }
cSvcInterfaceConfiguration
OBJECT IDENTIFIER ::= { ciscoSvcInterfaceMIBObjects 1 }
cSvcInterfaceTrapObjects
OBJECT IDENTIFIER ::= { ciscoSvcInterfaceMIBObjects 2 }
-- Glossary
--
-- SVC Interface: Logical interface within a SVC line card.
-- Each SVC interface has its own ifIndex.
--
-- N-port: A virtual fabric attached port within a
-- a SVC interface.
-- Note that ther could be many virtual
-- N-ports to a SVC interface.
--
-- Textual Conventions
NportType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Type of the virtual N-port.
The types are
1 = Initiator
2 = Target
3 = Mgmt "
SYNTAX Integer32 (1..3)
-- The N-Port Configuration Table
csiNportTable OBJECT-TYPE
SYNTAX SEQUENCE OF CsiNportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that lets the user configure
and monitor the virtual N-ports.
A virtual N-port is a logical entity within an SVC
line card that simulates a real Fibre Channel
N-port."
::= { cSvcInterfaceConfiguration 1 }
csiNportEntry OBJECT-TYPE
SYNTAX CsiNportEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the csiNportTable, that describes a virtual
N-port. Each virtual N-port is identified by the
ifIndex of the SVC interface on the SVC line card,
the type of N-port and the VSAN id of the VSAN it
belongs to.
Each virtual N-port also has a Fibre Channel Identifier,
operational state and a WWN (Worldwide Name)."
INDEX { csiNportIfIndex,
csiNportType,
csiNportVsanId }
::= { csiNportTable 1 }
CsiNportEntry ::=
SEQUENCE {
csiNportIfIndex InterfaceIndex,
csiNportType NportType,
csiNportVsanId VsanIndex,
csiNportPwwn FcNameId,
csiNportFcid Integer32,
csiNportState INTEGER,
csiNportDownReason INTEGER,
csiNportRowStatus RowStatus
}
csiNportIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the SVC interface to which this Nport
belongs to.
A SVC interface is a FC interface that implements
virtualization and caching. Note that the ifType of
this interface is fiberChannel (56)."
::= { csiNportEntry 1 }
csiNportType OBJECT-TYPE
SYNTAX NportType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of this N-port.
There are 3 types of Nport -
initiator - Initiates communication with SCSI
(Small Computer Systems Interface)
targets.
target - Responds to the communication from the
FC-SCSI initiators.
mgmt - Communicates with other SVC interfaces.
"
::= { csiNportEntry 2 }
csiNportVsanId OBJECT-TYPE
SYNTAX VsanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VSAN identifier of the virtual N-port."
::= { csiNportEntry 3 }
csiNportPwwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The WWN (Worldwide Name) of the virtual N-port."
::= { csiNportEntry 4 }
csiNportFcid OBJECT-TYPE
SYNTAX Integer32 (1..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fibre Channel Identifier of the virtual N-port."
::= { csiNportEntry 5 }
csiNportState OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state of the virtual N-port."
::= { csiNportEntry 6 }
csiNportDownReason OBJECT-TYPE
SYNTAX INTEGER {
none (1),
adminDown(2),
ifSoftwareDown(3),
lineCardSwDown(4),
vsanDown(5),
inRemovalState(6),
ifHardwareDown(7),
uninitialized(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the state of the N-port is 'down' as depicted
by the instance of csiNportState, this objects
denotes the reason why this N-port is 'down'.
When the N-port is 'up' the value returned by
this object is 'none'.
adminDown - The user has configured the SVC interface
that contains this N-port as down.
ifSoftwareDown - Virtualization software is down.
lineCardSwDown - Line card software is down.
vsanDown - The VSAN that this N-port belongs to
(instance of csiNportVsanId), is down.
inRemovalState - The SVC interface that this N-port
belongs to, is in the process of
going down.
ifHardwareDown - The line card hardware is down.
uninitialized - Port is being initialized.
"
::= { csiNportEntry 7 }
csiNportRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this row."
::= { csiNportEntry 8 }
-- The Session Table
csiSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CsiSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of SVC sessions.
A SVC session is a FC session between a virtual
N-port and any other N-port within a FC fabric."
::= { cSvcInterfaceConfiguration 2 }
csiSessionEntry OBJECT-TYPE
SYNTAX CsiSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the csiSessionTable.
An entry in the session table is identified by a
virtual N-port and a session Identifier.
Each N-port is identified by the ifIndex,
Nport type and the VSAN id as described above
in the csiNportEntry.
The combination of the N-port and the sessionId
uniquely identifies a session.
Each session has the local N-port's WWN, remote
N-port's WWN and remote node's WWN as well as
remote N-port's FcId."
INDEX { csiSessionIfIndex,
csiSessionType,
csiSessionVsanId,
csiSessionId }
::= { csiSessionTable 1 }
CsiSessionEntry ::=
SEQUENCE {
csiSessionIfIndex InterfaceIndex,
csiSessionType NportType,
csiSessionVsanId VsanIndex,
csiSessionId Integer32,
csiSessionNportPwwn FcNameId,
csiSessionPeerPwwn FcNameId,
csiSessionPeerNwwn FcNameId,
csiSessionPeerFcid Integer32
}
csiSessionIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the SVC interface to which this N-port
belongs to. "
::= { csiSessionEntry 1 }
csiSessionType OBJECT-TYPE
SYNTAX NportType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of the N-port for this session. "
::= { csiSessionEntry 2 }
csiSessionVsanId OBJECT-TYPE
SYNTAX VsanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VSAN identifier of the N-port for this session. "
::= { csiSessionEntry 3 }
csiSessionId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The session identifier of this session. "
::= { csiSessionEntry 4 }
csiSessionNportPwwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The WWN of the N-port that belongs to this session."
::= { csiSessionEntry 5 }
csiSessionPeerPwwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The WWN of the remote N-port for this session."
::= { csiSessionEntry 6 }
csiSessionPeerNwwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The WWN of the remote node for this session."
::= { csiSessionEntry 7 }
csiSessionPeerFcid OBJECT-TYPE
SYNTAX Integer32 (1..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fibre Channel Identifier of the remote port
for this session. "
::= { csiSessionEntry 8 }
-- The Interface Statistics Table
csiInterfaceStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CsiInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that lists various statistics for each SVC
interface. "
::= { cSvcInterfaceConfiguration 3 }
csiInterfaceStatsEntry OBJECT-TYPE
SYNTAX CsiInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the csiInterfaceStatsTable,
indexed by the N-port ifIndex and containing
interface statistics such as the input and output
frames, bytes and rates."
INDEX { csiNportIfIndex }
::= { csiInterfaceStatsTable 1 }
CsiInterfaceStatsEntry ::=
SEQUENCE {
csiInterfaceInFrames Counter32,
csiInterfaceInFrameRate Unsigned32,
csiInterfaceInBytes Counter32,
csiInterfaceInBytesRate Unsigned32,
csiInterfaceOutFrames Counter32,
csiInterfaceOutFrameRate Unsigned32,
csiInterfaceOutBytes Counter32,
csiInterfaceOutBytesRate Unsigned32
}
csiInterfaceInFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming frames on this interface."
::= { csiInterfaceStatsEntry 1 }
csiInterfaceInFrameRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming frames per second on
this interface."
::= { csiInterfaceStatsEntry 2 }
csiInterfaceInBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming bytes on this interface."
::= { csiInterfaceStatsEntry 3 }
csiInterfaceInBytesRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming bytes per second on
this interface."
::= { csiInterfaceStatsEntry 4 }
csiInterfaceOutFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing frames on this interface."
::= { csiInterfaceStatsEntry 5 }
csiInterfaceOutFrameRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing frames per second on
this interface."
::= { csiInterfaceStatsEntry 6 }
csiInterfaceOutBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing bytes on this interface."
::= { csiInterfaceStatsEntry 7 }
csiInterfaceOutBytesRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing bytes per second on
this interface."
::= { csiInterfaceStatsEntry 8 }
-- The N-Port Statistics Table
csiNportStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CsiNportStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of N-port statistics."
::= { cSvcInterfaceConfiguration 4 }
csiNportStatsEntry OBJECT-TYPE
SYNTAX CsiNportStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the csiNportStatsTable. "
INDEX { csiNportIfIndex,
csiNportType,
csiNportVsanId }
::= { csiNportStatsTable 1 }
CsiNportStatsEntry ::=
SEQUENCE {
csiNportSessions Counter32,
csiNportInFrames Counter32,
csiNportInFrameRate Unsigned32,
csiNportInBytes Counter32,
csiNportInBytesRate Unsigned32,
csiNportOutFrames Counter32,
csiNportOutFrameRate Unsigned32,
csiNportOutBytes Counter32,
csiNportOutBytesRate Unsigned32
}
csiNportSessions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pen sessions on this virtual N-port."
::= { csiNportStatsEntry 1 }
csiNportInFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming frames on this virtual N-port."
::= { csiNportStatsEntry 2 }
csiNportInFrameRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming frames per second on
this virtual N-port."
::= { csiNportStatsEntry 3 }
csiNportInBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming bytes on this virtual N-port."
::= { csiNportStatsEntry 4 }
csiNportInBytesRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming bytes per second on
this virtual N-port."
::= { csiNportStatsEntry 5 }
csiNportOutFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing frames on this virtual N-port."
::= { csiNportStatsEntry 6 }
csiNportOutFrameRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing frames per second on
this virtual N-port."
::= { csiNportStatsEntry 7 }
csiNportOutBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing bytes on this virtual N-port."
::= { csiNportStatsEntry 8 }
csiNportOutBytesRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing bytes per second on
this virtual N-port."
::= { csiNportStatsEntry 9 }
-- The Session Statistics Table
csiSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CsiSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of session statistics."
::= { cSvcInterfaceConfiguration 5 }
csiSessionStatsEntry OBJECT-TYPE
SYNTAX CsiSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the csiSessionStatsEntry."
INDEX { csiSessionIfIndex,
csiSessionType,
csiSessionVsanId,
csiSessionId }
::= { csiSessionStatsTable 1 }
CsiSessionStatsEntry ::=
SEQUENCE {
csiSessionInELSFrames Counter32,
csiSessionInBLSFrames Counter32,
csiSessionInFCPCmds Counter32,
csiSessionInFCPXferRdys Counter32,
csiSessionInFCPDataFrames Counter32,
csiSessionInFCPStatus Counter32,
csiSessionInFCPDataBytes Counter32,
csiSessionInFCPOverRuns Counter32,
csiSessionInFCPUnderRuns Counter32,
csiSessionInAborts Counter32,
csiSessionOutELSFrames Counter32,
csiSessionOutBLSFrames Counter32,
csiSessionOutFCPCmds Counter32,
csiSessionOutFCPXferRdys Counter32,
csiSessionOutFCPDataFrames Counter32,
csiSessionOutFCPStatus Counter32,
csiSessionOutFCPDataBytes Counter32,
csiSessionOutFCPOverRuns Counter32,
csiSessionOutFCPUnderRuns Counter32,
csiSessionOutAborts Counter32,
csiSessionOpenXchanges Counter32,
csiSessionInBadFc2Drops Counter32,
csiSessionInBadFcPDrops Counter32,
csiSessionInFCPDataExcess Counter32
}
csiSessionInELSFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming Extended Link Service frames
in this session."
::= { csiSessionStatsEntry 1 }
csiSessionInBLSFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming Basic Link Service frames
in this session."
::= { csiSessionStatsEntry 2 }
csiSessionInFCPCmds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Command frames
in this session. Note that FCP stands for
Fibre Channel Protocol."
::= { csiSessionStatsEntry 3 }
csiSessionInFCPXferRdys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Transfer Ready
frames in this session."
::= { csiSessionStatsEntry 4 }
csiSessionInFCPDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Data frames."
::= { csiSessionStatsEntry 5 }
csiSessionInFCPStatus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Status frames."
::= { csiSessionStatsEntry 6 }
csiSessionInFCPDataBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Data bytes."
::= { csiSessionStatsEntry 7 }
csiSessionInFCPOverRuns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Overrun frames."
::= { csiSessionStatsEntry 8 }
csiSessionInFCPUnderRuns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming FCP Underrun frames."
::= { csiSessionStatsEntry 9 }
csiSessionInAborts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incoming aborted frames."
::= { csiSessionStatsEntry 10 }
csiSessionOutELSFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing Extended Link Service frames
in this session."
::= { csiSessionStatsEntry 11 }
csiSessionOutBLSFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing Basic Link Service frames
in this session."
::= { csiSessionStatsEntry 12 }
csiSessionOutFCPCmds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Command frames
in this session."
::= { csiSessionStatsEntry 13 }
csiSessionOutFCPXferRdys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Transfer Ready frames
in this session."
::= { csiSessionStatsEntry 14 }
csiSessionOutFCPDataFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Data frames
in this session."
::= { csiSessionStatsEntry 15 }
csiSessionOutFCPStatus OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Status frames
in this session."
::= { csiSessionStatsEntry 16 }
csiSessionOutFCPDataBytes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Data bytes
in this session."
::= { csiSessionStatsEntry 17 }
csiSessionOutFCPOverRuns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Overrun frames
in this session."
::= { csiSessionStatsEntry 18 }
csiSessionOutFCPUnderRuns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing FCP Underrun frames
in this session."
::= { csiSessionStatsEntry 19 }
csiSessionOutAborts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outgoing aborted frames
in this session."
::= { csiSessionStatsEntry 20 }
csiSessionOpenXchanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Open Exchanges in this session."
::= { csiSessionStatsEntry 21 }
csiSessionInBadFc2Drops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of FC2 dropped frames in this
session."
::= { csiSessionStatsEntry 22 }
csiSessionInBadFcPDrops OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of FCP dropped frames."
::= { csiSessionStatsEntry 23 }
csiSessionInFCPDataExcess OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of FCP Data Excess frames in
this session."
::= { csiSessionStatsEntry 24 }
-- The Interface nwwn Table
csiInterfaceNwwnTable OBJECT-TYPE
SYNTAX SEQUENCE OF CsiInterfaceNwwnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that lists Nwwn for SVC
interfaces. "
::= { cSvcInterfaceConfiguration 6 }
csiInterfaceNwwnEntry OBJECT-TYPE
SYNTAX CsiInterfaceNwwnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the csiInterfaceNwwnTable,
indexed by the N-port ifIndex and containing
interface Nwwn and a description of the
cause if that interface is down."
INDEX { csiNportIfIndex }
::= { csiInterfaceNwwnTable 1 }
CsiInterfaceNwwnEntry ::=
SEQUENCE {
csiInterfaceNwwn FcNameId,
csiInterfaceOperStateCause SnmpAdminString
}
csiInterfaceNwwn OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Nwwn of this interface."
::= { csiInterfaceNwwnEntry 1 }
csiInterfaceOperStateCause OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A description of the cause that the interface
is down."
::= { csiInterfaceNwwnEntry 2 }
-- Objects that are used only in traps
-- Please note that these objects cannot be
-- bound to any objects within this MIB as these
-- traps are generated from IBM and we are
-- just repackaging them.
csiErrorId OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Error Id"
::= { cSvcInterfaceTrapObjects 1 }
csiErrorSeqNumber OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS accessible-for-notify
STATUS current