-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-FC-MGMT-MIB-V1SMI.my
2317 lines (2126 loc) · 69.8 KB
/
CISCO-FC-MGMT-MIB-V1SMI.my
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
-- MIB file created 18-Nov-2010 15:43:33, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-FC-MGMT-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-FC-MGMT-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue
FROM SNMPv2-TC-v1
ifIndex
FROM IF-MIB
ciscoExperiment
FROM CISCO-SMI
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoFcMgmtMIB OBJECT IDENTIFIER ::= { ciscoExperiment 999999 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200209120000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This module defines management information specific to
-- Fibre Channel-attached devices. This module is an
-- adaptation of IETF's IPS working group's draft,
-- draft-ietf-ips-fcmgmt-mib-02
-- RevDate
-- 200209120000Z
-- RevDescr
-- Initial version of Cisco Fibre Channel Management MIB
-- module.
cfcmgmtObjects OBJECT IDENTIFIER ::= { ciscoFcMgmtMIB 1 }
cfcmgmtNotifications OBJECT IDENTIFIER ::= { ciscoFcMgmtMIB 2 }
cfcmgmtNotifPrefix OBJECT IDENTIFIER ::= { cfcmgmtNotifications 0 }
cfcmgmtConformance OBJECT IDENTIFIER ::= { ciscoFcMgmtMIB 3 }
cfcmgmtCompliances OBJECT IDENTIFIER ::= { cfcmgmtConformance 1 }
cfcmgmtGroups OBJECT IDENTIFIER ::= { cfcmgmtConformance 2 }
CfcmFcNameIdOrZero ::= OCTET STRING(SIZE(0|8|16))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The World Wide Name (WWN) associated with a Fibre Channel
-- (FC) entity. WWNs were initially defined as 64-bits in
-- length. The latest definition (for future use) is 128-bits
-- long. The zero-length string value is used in circumstances
-- where the WWN is unassigned/unknown.
CfcmFcAddressId ::= OCTET STRING(SIZE(0|3))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A Fibre Channel Address ID, a 24-bit value unique within
-- the address space of a Fabric.
CfcmDomainIdOrZero ::= INTEGER(0..239)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The Domain Id (of a FC switch), or zero if no Domain Id
-- has been assigned.
CfcmFcPortType ::= INTEGER {
unknown(1),
other(2),
dynamic(3),
nPort(4),
nlPort(5),
fPort(6),
flPort(7),
ePort(8),
bPort(9)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The type of a Fibre Channel port, being one of the types
-- described below.
--
-- unknown - Fibre Channel port type is not known.
--
-- other - the port type is something other than the ones
-- described below.
--
-- dynamic - the port could be one of the below port types
-- and this varies dynamically.
--
-- nPort - Any port on a node device, e.g., a disk, PC, etc.
-- that is directly attached to a Fabric port.
-- (Refer FC-PH, FC-FS).
--
-- nlPort - An 'nPort' that also has arbitrated loop
-- capabilities. (Refer FC-AL-2).
--
-- fPort - A port on a fibre channel fabric.
-- (Refer FC-PH, FC-FS).
--
-- flPort - A 'fPort' that also has arbitrated loop
-- capabilities. (Refer FC-AL-2).
--
-- ePort - A fabric expansion port which attaches to
-- another 'ePort' or 'bPort' to create an Inter-Switch
-- Link. (Refer FC-SW-2).
--
-- bPort - A bridge port on a device that implements FC-BBW
-- and connects to an E_port on a switch. (Refer FC-BB).
CfcmFcClasses ::= OCTET STRING(SIZE(1..2))
-- BITS are:
-- classF(0)
-- class1(1)
-- class2(2)
-- class3(3)
-- class4(4)
-- class5(5)
-- class6(6)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A set of Fibre Channel classes of service.
-- Refer
-- Classes of service are described in FC-FS Section 13.
CfcmFcBbCredit ::= INTEGER(0..32767)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The buffer-to-buffer credit of an FC port. i.e., the number
-- of frames a FC device can receive at a time without causing
-- a buffer overrun condition.
CfcmFcBbCreditModel ::= INTEGER {
regular(1),
alternate(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The buffer-to-buffer credit model of an Fx_Port.
CfcmFcDataFieldSize ::= INTEGER(128..2112)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The Receive Data Field Size associated with an FC port.
CfcmFcUnitFunctions ::= OCTET STRING(SIZE(1..2))
-- BITS are:
-- other(0)
-- hub(1)
-- switch(2)
-- bridge(3)
-- gateway(4)
-- host(5)
-- storageSubsys(6)
-- storageAccessDev(7)
-- nas(8)
-- wdmux(9)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A set of functions that a Fibre Channel Interconnect
-- Element or Platform might perform. A value with no bits
-- set, indicates the function(s) are unknown. The individual
-- bits have the following meanings:
--
-- other - none of the following.
--
-- hub - a device that interconnects L_Ports, but does not
-- operate as an FL_Port.
--
-- switch - a fabric element conforming to the Fibre Channel
-- switch fabric set of standards (e.g., FC-SW, FC-SW-2).
--
-- bridge - a device that encapsulates Fibre Channel frames
-- within another protocol (e.g., FC-BB, FC-BB-2).
--
-- gateway - a device that converts an FC-4 to another protocol
-- (e.g., FCP to iSCSI).
--
-- host - a computer system that provides end users services
-- such as computation and storage access.
--
-- storageSubsys - an integrated collection of storage
-- controllers, storage devices, and necessary software, that
-- provides storage services to one or more hosts.
--
-- storageAccessDev - a device that provides storage management
-- and access for heterogeneous hosts and heterogeneous devices
-- (e.g., medium changer).
--
-- nas - a device that connects to a network and provides file
-- access services.
--
-- wdmux - a device that modulates/demodulates each of several
-- data streams (e.g., Fibre Channel protocol data streams)
-- onto/from a different part of the light spectrum in an
-- optical fiber.
CfcmPhysicalIndexOrZero ::= INTEGER(0..2147483647)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The index value for a physical entity's row in the Entity
-- MIB's entPhysicalTable. A zero value indicates that no row
-- in the entPhysicalTable is applicable.
-- Refer
-- entPhysicalTable is defined in the Entity MIB, RFC 2737.
CfcmHrSWInstalledIndexOrZero ::= INTEGER(0..2147483647)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The index value for a software module's row in the Host
-- Resources MIB's hrSWInstalledTable. A zero value indicates
-- that no row in the hrSWInstalledTable is applicable.
-- Refer
-- hrSWInstalledTable is defined in the Host Resources MIB,
-- RFC 2790.
CfcmMilliSeconds ::= Gauge
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Time units in milliseconds.
CfcmMicroSeconds ::= Gauge
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Time units in microseconds.
cfcmInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfcmInstanceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the local Fibre Channel management
instances."
::= { cfcmgmtObjects 1 }
cfcmInstanceEntry OBJECT-TYPE
SYNTAX CfcmInstanceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of attributes for a particular local Fibre Channel
management instance."
INDEX { cfcmInstanceIndex }
::= { cfcmInstanceTable 1 }
CfcmInstanceEntry ::= SEQUENCE {
cfcmInstanceIndex Gauge,
cfcmInstanceWwn CfcmFcNameIdOrZero,
cfcmInstanceFunctions CfcmFcUnitFunctions,
cfcmInstancePhysicalIndex CfcmPhysicalIndexOrZero,
cfcmInstanceSoftwareIndex CfcmHrSWInstalledIndexOrZero,
cfcmInstanceStatus INTEGER,
cfcmInstanceTextName SnmpAdminString,
cfcmInstanceDescr SnmpAdminString,
cfcmInstanceFabricId CfcmFcNameIdOrZero
}
cfcmInstanceIndex OBJECT-TYPE
SYNTAX Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An arbitrary integer value which uniquely identifies this
instance amongst all local Fibre Channel management
instances.
It is mandatory that this value remain constant between
restarts of the agent except, in case of certain re-
configurations of the local system where it is natural
for it to change. It is desirable that this value remain
constant across restarts."
::= { cfcmInstanceEntry 1 }
cfcmInstanceWwn OBJECT-TYPE
SYNTAX CfcmFcNameIdOrZero
-- Rsyntax OCTET STRING(SIZE(0|8|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the instance has one (or more) WWN(s), then this object
contains that (or one of those) WWN(s).
If the instance does not have a WWN associated with it, then
this object contains the zero-length string."
::= { cfcmInstanceEntry 2 }
cfcmInstanceFunctions OBJECT-TYPE
SYNTAX CfcmFcUnitFunctions
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- other(0)
-- hub(1)
-- switch(2)
-- bridge(3)
-- gateway(4)
-- host(5)
-- storageSubsys(6)
-- storageAccessDev(7)
-- nas(8)
-- wdmux(9)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"One (or more) Fibre Channel unit functions being performed
by this instance."
::= { cfcmInstanceEntry 3 }
cfcmInstancePhysicalIndex OBJECT-TYPE
SYNTAX CfcmPhysicalIndexOrZero
-- Rsyntax INTEGER(0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this management instance corresponds to a physical
component (or to a hierarchy of physical components), then
this object's value is the value of the entPhysicalIndex of
that component (or of the component at the root of that
hierarchy). If there is no correspondence to a physical
component (or no component which has an entPhysicalIndex
value), then the value of this object is zero."
REFERENCE
"entPhysicalIndex is defined in the Entity MIB, RFC 2737."
::= { cfcmInstanceEntry 4 }
cfcmInstanceSoftwareIndex OBJECT-TYPE
SYNTAX CfcmHrSWInstalledIndexOrZero
-- Rsyntax INTEGER(0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this management instance corresponds to an installed
software module, then this object's value is the value of
the hrSWInstalledIndex of that module. If there is no
correspondence to an installed software module (or no module
which has a hrSWInstalledIndex value), then the value of
this object is zero."
REFERENCE
"hrSWInstalledIndex is defined in the Host Resources MIB,
RFC 2790"
::= { cfcmInstanceEntry 5 }
cfcmInstanceStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
ok(2),
warning(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall status of the Fibre Channel entity/entities managed
by this management instance. The value should reflect the
most serious status of such entities."
::= { cfcmInstanceEntry 6 }
cfcmInstanceTextName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..79))
-- Rsyntax OCTET STRING(SIZE(0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A textual name for this management instance and the Fibre
Channel entity/entities that it is managing."
::= { cfcmInstanceEntry 7 }
cfcmInstanceDescr OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A textual description of this management instance and the
Fibre Channel entity/entities that it is managing."
::= { cfcmInstanceEntry 8 }
cfcmInstanceFabricId OBJECT-TYPE
SYNTAX CfcmFcNameIdOrZero
-- Rsyntax OCTET STRING(SIZE(0|8|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The globally unique Fabric Identifier which identifies the
fabric to which the Fibre Channel entity/entities managed by
this management instance are connected, or, of which they
are a part. This is typically the Node WWN of the principal
switch of a Fibre Channel fabric. The zero-length string
indicates that the fabric identifier is unknown (or not
applicable)."
::= { cfcmInstanceEntry 9 }
cfcmSwitchTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfcmSwitchEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of information about Fibre Channel switches which
are managed by Fibre Channel management instances. Each
Fibre Channel management instance can manage one or more
Fibre Channel switches."
::= { cfcmgmtObjects 2 }
cfcmSwitchEntry OBJECT-TYPE
SYNTAX CfcmSwitchEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about a particular Fibre Channel switch which
is managed by the management instance given by
cfcmInstanceIndex."
INDEX { cfcmInstanceIndex, cfcmSwitchIndex }
::= { cfcmSwitchTable 1 }
CfcmSwitchEntry ::= SEQUENCE {
cfcmSwitchIndex Gauge,
cfcmSwitchDomainId CfcmDomainIdOrZero,
cfcmSwitchPrincipal TruthValue
}
cfcmSwitchIndex OBJECT-TYPE
SYNTAX Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An arbitrary integer which uniquely identifies a Fibre
Channel switch amongst those managed by one Fibre Channel
management instance."
::= { cfcmSwitchEntry 1 }
cfcmSwitchDomainId OBJECT-TYPE
SYNTAX CfcmDomainIdOrZero
-- Rsyntax INTEGER(0..239)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Domain Id of this switch. A value of zero indicates
that a switch has not (yet) been assigned a Domain Id."
::= { cfcmSwitchEntry 2 }
cfcmSwitchPrincipal OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of whether this switch is the principal
switch within its fabric."
::= { cfcmSwitchEntry 3 }
cfcmPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfcmPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about Fibre Channel ports. Each Fibre Channel
port is represented by one entry in the IF-MIB's ifTable."
REFERENCE
"RFC 2863, The Interfaces Group MIB, June 2000."
::= { cfcmgmtObjects 3 }
cfcmPortEntry OBJECT-TYPE
SYNTAX CfcmPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information about a specific port."
INDEX { ifIndex }
::= { cfcmPortTable 1 }
CfcmPortEntry ::= SEQUENCE {
cfcmPortInstanceIndex Gauge,
cfcmPortWwn CfcmFcNameIdOrZero,
cfcmPortNodeWwn CfcmFcNameIdOrZero,
cfcmPortAdminType CfcmFcPortType,
cfcmPortOperType CfcmFcPortType,
cfcmPortFcCapClass CfcmFcClasses,
cfcmPortFcOperClass CfcmFcClasses,
cfcmPortTransmitterType INTEGER,
cfcmPortConnectorType INTEGER,
cfcmPortSerialNumber SnmpAdminString,
cfcmPortPhysicalNumber Gauge,
cfcmPortAdminSpeed INTEGER,
cfcmPortCapProtocols OCTET STRING,
cfcmPortOperProtocols OCTET STRING
}
cfcmPortInstanceIndex OBJECT-TYPE
SYNTAX Gauge(1..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of cfcmInstanceIndex by which the Fibre Channel
management instance, which manages this port, is identified
in the cfcmInstanceTable."
::= { cfcmPortEntry 1 }
cfcmPortWwn OBJECT-TYPE
SYNTAX CfcmFcNameIdOrZero
-- Rsyntax OCTET STRING(SIZE(0|8|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The World Wide Name of the port, or the zero-length string
if the port does not have a WWN."
::= { cfcmPortEntry 2 }
cfcmPortNodeWwn OBJECT-TYPE
SYNTAX CfcmFcNameIdOrZero
-- Rsyntax OCTET STRING(SIZE(0|8|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The World Wide Name of the Node which contains this port,
or the zero-length string if the port does not have a node
WWN."
::= { cfcmPortEntry 3 }
cfcmPortAdminType OBJECT-TYPE
SYNTAX CfcmFcPortType
-- Rsyntax INTEGER {
-- unknown(1),
-- other(2),
-- dynamic(3),
-- nPort(4),
-- nlPort(5),
-- fPort(6),
-- flPort(7),
-- ePort(8),
-- bPort(9)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administratively desired type of this port. Each port
will typically only be able to support a subset of these
types."
::= { cfcmPortEntry 4 }
cfcmPortOperType OBJECT-TYPE
SYNTAX CfcmFcPortType
-- Rsyntax INTEGER {
-- unknown(1),
-- other(2),
-- dynamic(3),
-- nPort(4),
-- nlPort(5),
-- fPort(6),
-- flPort(7),
-- ePort(8),
-- bPort(9)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current operational type of this port."
::= { cfcmPortEntry 5 }
cfcmPortFcCapClass OBJECT-TYPE
SYNTAX CfcmFcClasses
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- classF(0)
-- class1(1)
-- class2(2)
-- class3(3)
-- class4(4)
-- class5(5)
-- class6(6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The classes of service capability of this port."
::= { cfcmPortEntry 6 }
cfcmPortFcOperClass OBJECT-TYPE
SYNTAX CfcmFcClasses
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- classF(0)
-- class1(1)
-- class2(2)
-- class3(3)
-- class4(4)
-- class5(5)
-- class6(6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The classes of service that are currently operational on
this port. For an FL_Port, this is the union of the classes
being supported across all attached NL_Ports."
::= { cfcmPortEntry 7 }
cfcmPortTransmitterType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
shortwave850nm(3),
longwave1550nm(4),
longwave1310nm(5),
electrical(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The technology of the port transceiver."
REFERENCE
"FC-GS-3 Rev 7.01, 28 Nov 2000, sect 6.1.2.2.3"
::= { cfcmPortEntry 8 }
cfcmPortConnectorType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
gbic(3),
embedded(4),
glm(5),
gbicSerialId(6),
gbicNoSerialId(7),
sfpSerialId(8),
sfpNoSerialId(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The module type of the port connector. This object refers
to the hardware implementation of the port. It will be
'embedded' if the hardware equivalent to Gigabit interface
card (GBIC) is part of the line card and is unremovable. It
will be 'glm' if it's a gigabit link module (GLM). It will
be 'gbicSerialId' if the GBIC serial id can be read, else it
will be 'gbicNoSerialId'. It will be 'sfpSerialId', if the
small form factor (SFP) pluggable GBICs serial id can be
read, else it will be 'sfpNoSerialId'."
REFERENCE
"FC-GS-3 Rev 7.01, 28 Nov 2000, sect 6.1.2.2.4"
::= { cfcmPortEntry 9 }
cfcmPortSerialNumber OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The serial number associated with the port (e.g., for a
GBIC). If not applicable, the object's value is a zero-
length string."
REFERENCE
"FC-GS-3 Rev 7.01, 28 Nov 2000, sect 6.1.2.2.4"
::= { cfcmPortEntry 10 }
cfcmPortPhysicalNumber OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the port's 'Physical Port Number' as defined by
GS-3."
REFERENCE
"FC-GS-3 Rev 7.01, 28 Nov 2000, sect 6.1.2.2.5"
::= { cfcmPortEntry 11 }
cfcmPortAdminSpeed OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
eighthGbs(2),
quarterGbs(3),
halfGbs(4),
oneGbs(5),
twoGbs(6),
fourGbs(7),
tenGbs(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The speed of the interface:
'auto' - auto-negotiation
'tenGbs' - 10Gbs
'fourGbs' - 4Gbs
'twoGbs' - 2Gbs
'oneGbs' - 1Gbs
'halfGbs' - 500Mbs
'quarterGbs' - 250Mbs
'eighthGbs' - 125Mbs"
::= { cfcmPortEntry 12 }
cfcmPortCapProtocols OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- unknown(0)
-- loop(1)
-- fabric(2)
-- scsi(3)
-- tcpIp(4)
-- vi(5)
-- ficon(6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A bit mask specifying the higher level protocols which are
supported on this port. Note that for generic Fx_Ports,
E_Ports and B_Ports, this object will indicate all
protocols."
::= { cfcmPortEntry 13 }
cfcmPortOperProtocols OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- unknown(0)
-- loop(1)
-- fabric(2)
-- scsi(3)
-- tcpIp(4)
-- vi(5)
-- ficon(6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A bit mask specifying the higher level protocols which are
currently operational on this port. For Fx_Ports, E_Ports
and B_Ports, this object will typically have the value
'unknown'."
::= { cfcmPortEntry 14 }
cfcmPortStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfcmPortStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of statistics for Fibre Channel ports."
::= { cfcmgmtObjects 4 }
cfcmPortStatsEntry OBJECT-TYPE
SYNTAX CfcmPortStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing statistics for a Fibre Channel port."
INDEX { ifIndex }
-- Augments cfcmPortEntry
::= { cfcmPortStatsTable 1 }
CfcmPortStatsEntry ::= SEQUENCE {
cfcmPortBBCreditZeros Counter,
cfcmPortFullInputBuffers Counter,
cfcmPortClass2RxFrames Counter,
cfcmPortClass2RxOctets Counter,
cfcmPortClass2TxFrames Counter,
cfcmPortClass2TxOctets Counter,
cfcmPortClass2Discards Counter,
cfcmPortClass2RxFbsyFrames Counter,
cfcmPortClass2RxPbsyFrames Counter,
cfcmPortClass2RxFrjtFrames Counter,
cfcmPortClass2RxPrjtFrames Counter,
cfcmPortClass2TxFbsyFrames Counter,
cfcmPortClass2TxPbsyFrames Counter,
cfcmPortClass2TxFrjtFrames Counter,
cfcmPortClass2TxPrjtFrames Counter,
cfcmPortClass3RxFrames Counter,
cfcmPortClass3RxOctets Counter,
cfcmPortClass3TxFrames Counter,
cfcmPortClass3TxOctets Counter,
cfcmPortClass3Discards Counter,
cfcmPortClassFRxFrames Counter,
cfcmPortClassFRxOctets Counter,
cfcmPortClassFTxFrames Counter,
cfcmPortClassFTxOctets Counter,
cfcmPortClassFDiscards Counter
}
cfcmPortBBCreditZeros OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of transitions in/out of the buffer-to-buffer
credit zero state. The other side is not providing any
credit."
::= { cfcmPortStatsEntry 1 }
cfcmPortFullInputBuffers OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of occurrences when all input buffers of a port
were full and outbound buffer-to-buffer credit transitioned
to zero, i.e., there became no credit to provide to other
side."
::= { cfcmPortStatsEntry 2 }
cfcmPortClass2RxFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Class 2 frames received at this port."
::= { cfcmPortStatsEntry 3 }
cfcmPortClass2RxOctets OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets contained in Class 2 frames received
at this port."
::= { cfcmPortStatsEntry 4 }
cfcmPortClass2TxFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Class 2 frames transmitted out of this port."
::= { cfcmPortStatsEntry 5 }
cfcmPortClass2TxOctets OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets contained in Class 2 frames
transmitted out of this port."
::= { cfcmPortStatsEntry 6 }
cfcmPortClass2Discards OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Class 2 frames that were discarded upon
reception at this port."
::= { cfcmPortStatsEntry 7 }
cfcmPortClass2RxFbsyFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that F_BSY was returned to this port as
a result of a Class 2 frame that could not be delivered to
the other end of the link. This can occur when either the
fabric or the destination port is temporarily busy. Note
that this counter will never increment for an F_Port."
::= { cfcmPortStatsEntry 8 }
cfcmPortClass2RxPbsyFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that P_BSY was returned to this port as
a result of a Class 2 frame that could not be delivered to
the other end of the link. This can occur when the
destination port is temporarily busy."
::= { cfcmPortStatsEntry 9 }
cfcmPortClass2RxFrjtFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that F_RJT was returned to this port as
a result of a Class 2 frame that was rejected by the fabric.
Note that this counter will never increment for an F_Port."
::= { cfcmPortStatsEntry 10 }
cfcmPortClass2RxPrjtFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that P_RJT was returned to this port as
a result of a Class 2 frame that was rejected at the
destination N_Port."
::= { cfcmPortStatsEntry 11 }
cfcmPortClass2TxFbsyFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that F_BSY was generated by this port
as a result of a Class 2 frame that could not be delivered
because either the Fabric or the destination port was
temporarily busy. Note that this counter will never
increment for an N_Port."
::= { cfcmPortStatsEntry 12 }
cfcmPortClass2TxPbsyFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that P_BSY was generated by this port
as a result of a Class 2 frame that could not be delivered
because the destination port was temporarily busy. Note
that this counter will never increment for an F_Port."
::= { cfcmPortStatsEntry 13 }
cfcmPortClass2TxFrjtFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that F_RJT was generated by this port
as a result of a Class 2 frame being rejected by the fabric.
Note that this counter will never increment for an N_Port."
::= { cfcmPortStatsEntry 14 }
cfcmPortClass2TxPrjtFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that P_RJT was generated by this port
as a result of a Class 2 frame being rejected at the
destination N_Port. Note that this counter will never
increment for an F_Port."
::= { cfcmPortStatsEntry 15 }
cfcmPortClass3RxFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Class 3 frames received at this port."
::= { cfcmPortStatsEntry 16 }
cfcmPortClass3RxOctets OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets contained in Class 3 frames received
at this port."
::= { cfcmPortStatsEntry 17 }
cfcmPortClass3TxFrames OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter