forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FA.mib
2844 lines (2565 loc) · 105 KB
/
FA.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
--
-- "@(#)fa.mib 00/07/07"
--
-- Title: Fibre Alliance Fibre Channel Management Framework Integration MIB
-- Rev 1.5, June 1, 1999.
--
-- Note: This is released for Brocade
--
-- Corrected revisionNumber description. last editor on Sept. 09, 2004
--
-- added FA MIB last edited on Dec. 18, 2000.
-- Last edit date: Sept. 09, 2004
FCMGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress, TimeTicks, experimental
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215;
--Textual conventions for this MIB
FcNameId ::= OCTET STRING (SIZE(8))
FcGlobalId ::= OCTET STRING (SIZE(16))
FcAddressId ::= OCTET STRING (SIZE(3))
FcEventSeverity ::= INTEGER {
unknown (1),
emergency (2),
alert (3),
critical (4),
error (5),
warning (6),
notify (7),
info (8),
debug (9),
mark (10) -- All messages logged
}
FcUnitType ::= INTEGER {
unknown(1),
other(2), -- none of the following
hub(3), -- passive connectivity unit
-- supporting loop protocol.
switch(4), -- active connectivity unit
-- supporting multiple protocols.
gateway(5), -- unit that converts not only
-- the interface but also encapsulates
-- the frame into another protocol. The
-- assumption is that there is always
-- two gateways connected together. For
-- example, FC <-> ATM.
converter(6), -- unit that converts from one
-- interface to another. For
-- example, FC <-> SCSI.
hba(7), -- host bus adapter
proxy-agent(8), -- software proxy-agent
storage-device(9), -- disk,cd,tape,etc
host(10), -- host computer
storage-subsystem(11), -- raid, library, etc
module(12), -- subcomponent of a system
swdriver(13), -- software driver
storage-access-device(14), -- Provides storage management
-- and access for hetergeneous
-- hosts and heterogeneous devices.
wdm(15), -- waveform division mutiplexer
ups(16) -- uninterruptable power supply
}
----------------------------------------------------------------------
fcmgmt OBJECT IDENTIFIER ::= { experimental 94 }
-- groups in fcmgmt
connSet OBJECT IDENTIFIER ::= { fcmgmt 1 }
trapReg OBJECT IDENTIFIER ::= { fcmgmt 2 }
statSet OBJECT IDENTIFIER ::= { fcmgmt 4 }
connUnitServiceSet OBJECT IDENTIFIER ::= { fcmgmt 5 }
connUnitServiceScalars OBJECT IDENTIFIER ::= { connUnitServiceSet 1 }
connUnitServiceTables OBJECT IDENTIFIER ::= { connUnitServiceSet 2 }
revisionNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (4))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the revision number for this MIB. The
format of the revision value is as follows
(0) = high order major revision number
(1) = low order major revision number
(2) = high order minor revision number
(3) = low order minor revision number
The value will be stored as an ASCII value. The
following is the current value of this object.
(0) = '0'
(1) = '3'
(2) = '0'
(3) = '0'
This defines a revision of 03.00
"
::= { fcmgmt 3 }
-- the connectivity unit group
-- Implementation of the group is mandatory for all systems.
uNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of connectivity units present on this
system (represented by this agent). May be a count
of the boards in a chassis or the number of full boxes
in a rack."
DEFVAL { 1 }
::= { connSet 1 }
systemURL OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The top-level URL of the system. If it does not exist
the value is empty string. The URL format is
implementation dependant and can have keywords embedded
that are preceeded by a percent sign (eg, %USER).
The following are the defined keywords that will
be recognized and replaced with data during a launch.
USER - replace with username
PASSWORD - replace with password
GLOBALID - replace with globalid
SERIALNO - replace with serial number
"
DEFVAL { "" }
::= { connSet 2 }
statusChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds at which
the last status change occurred for any members of
the set."
::= { connSet 3 }
configurationChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds at which
the last configuration change occurred for any
members of the set. This represents a union of change
information for connUnitConfigurationChangeTime."
::= { connSet 4 }
connUnitTableChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds at which
the connUnitTable was updated (an entry was either
added or deleted."
::= { connSet 5 }
-- The Connectivity table contains general information on the
-- system's units.
connUnitTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of units under a single SNMP agent. The number
of entries is given by the value of uNumber. It is 1
for stand-alone system."
::= { connSet 6 }
connUnitEntry OBJECT-TYPE
SYNTAX ConnUnitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A connectivity unit entry containing objects for a
particular unit."
INDEX { connUnitId }
::= { connUnitTable 1 }
ConnUnitEntry ::=
SEQUENCE {
connUnitId
OCTET STRING,
connUnitGlobalId
FcGlobalId,
connUnitType
FcUnitType,
connUnitNumports
INTEGER,
connUnitState
INTEGER,
connUnitStatus
INTEGER,
connUnitProduct
DisplayString,
connUnitSn
DisplayString,
connUnitUpTime
TimeTicks,
connUnitUrl
DisplayString,
connUnitDomainId
OCTET STRING,
connUnitProxyMaster
INTEGER,
connUnitPrincipal
INTEGER,
connUnitNumSensors
INTEGER,
connUnitStatusChangeTime
TimeTicks,
connUnitConfigurationChangeTime
TimeTicks,
connUnitNumRevs
INTEGER,
connUnitNumZones
INTEGER,
connUnitModuleId
OCTET STRING,
connUnitName
DisplayString,
connUnitInfo
DisplayString,
connUnitControl
INTEGER,
connUnitContact
DisplayString,
connUnitLocation
DisplayString,
connUnitEventFilter
FcEventSeverity,
connUnitNumEvents
INTEGER,
connUnitMaxEvents
INTEGER,
connUnitEventCurrID
INTEGER
}
connUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique identification for this connectivity unit
among those within this proxy domain.
The value MUST be unique within the proxy domain
because it is the index variable for connUnitTable.
The value assigned to a given conectivity unit
SHOULD be persistent across agent and unit resets.
It SHOULD be the same as connUnitGlobalId
if connUnitGlobalId is known and stable."
::= { connUnitEntry 1 }
connUnitGlobalId OBJECT-TYPE
SYNTAX FcGlobalId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An optional global-scope identifier for this connectivity unit.
It MUST be a WWN for this connectivity unit
or 16 octets of value zero.
WWN formats requiring fewer than 16 octets
MUST be extended to 16 octets with trailing zero octets,
If a WWN is used for connUnitId,
the same WWN MUST be used for connUnitGlobalId.
When a non-zero value is provided,
it SHOULD be persistent across agent and unit resets.
It SHOULD be globally unique.
It SHOULD be one of these FC-PH/PH3 formats:
IEEE (NAA=1)
IEEE Extended (NAA=2)
IEEE Registered (NAA=5).
IEEE Registered extended (NAA=6).
Use of the IEEE formats allows any IEEE-registered vendor
to assure global uniqueness independently.
The following are some references on IEEE WWN formats:
http://standards.ieee.org/regauth/oui/tutorials/fibreformat.html
http://standards.ieee.org/regauth/oui/tutorials/fibrecomp_id.html
If one or more WWNs are associated with the connUnit
via other management methods,
one of them SHOULD be used for connUnitGlobalId.
If there is not a WWN assigned specifically to the connUnit,
there is some merit, though not a requirement,
to using a WWN assigned to (one of)
its permanently attached FC/LAN interface(s).
This can not risk uniqueness, though.
As a counterexample, if your
agent runs in a host and the host has an HBA,
it is quite possible that agent, host, and HBA
will all be distinct connUnits, so the host
and agent can not use the WWN of the HBA.
Another example:
If your hub has a built-in Ethernet port, it
might be reasonable for the hub to use its LAN
address (prefixed with the appropriate
NAA) as its connUnitId. But if the
Ethernet were a replaceable PCCard, the hub
should have an independent ID."
::= { connUnitEntry 2 }
connUnitType OBJECT-TYPE
SYNTAX FcUnitType
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of this connectivity unit."
::= { connUnitEntry 3 }
connUnitNumports OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of physical ports in the connectivity unit
(internal/embedded, external)."
::= { connUnitEntry 4 }
connUnitState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
online(2),
offline(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall state of the connectivity unit."
::= { connUnitEntry 5 }
connUnitStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
unused(2),
ok(3),
warning(4), -- needs attention
failed(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall status of the connectivity unit."
::= { connUnitEntry 6 }
connUnitProduct OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connectivity unit vendor's product
model name."
::= { connUnitEntry 7 }
connUnitSn OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The serial number for this connectivity unit."
::= { connUnitEntry 8 }
connUnitUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of centiseconds since the
last unit initialization."
::= { connUnitEntry 9 }
connUnitUrl OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"URL to launch a management application,
if applicable. Otherwise empty string.
In a standalone unit, this would be the
same as the top-level URL. This has the same
definition as systemURL for keywords."
::= { connUnitEntry 10 }
connUnitDomainId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"24 bit Fibre Channel address ID of this
connectivity unit, right justified with leading
zero's if required. This should be set to the
Fibre Channel address ID or if it is a switch
it would be set to the Domain Controller address.
If this value is not applicable,
return all bits set to one."
::= { connUnitEntry 11 }
connUnitProxyMaster OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
no(2),
yes(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value of 'yes' means this is the proxy master
unit for a set of managed units. For example,
this could be the only unit with a management
card in it for a set of units. A standalone unit
should return 'yes' for this object."
::= { connUnitEntry 12 }
connUnitPrincipal OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
no(2),
yes(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Whether this connectivity unit is the principal unit
within the group of fabric elements. If this value
is not applicable, return unknown."
::= { connUnitEntry 13 }
connUnitNumSensors OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of sensors in the connUnitSensorTable."
::= { connUnitEntry 14 }
connUnitStatusChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds
at which the last status change occurred."
::= { connUnitEntry 15 }
connUnitConfigurationChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds
at which the last configuration change
occurred."
::= { connUnitEntry 16 }
connUnitNumRevs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of revisions in the connUnitRevsTable."
DEFVAL { 1 }
::= { connUnitEntry 17 }
connUnitNumZones OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Number of zones defined in connUnitZoneTable."
::= { connUnitEntry 18 }
connUnitModuleId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is a unique id, persistent between boots,
that can be used to group a set of connUnits
together into a module. The intended use would
be to create a connUnit with a connUnitType of
'module' to represent a physical or logical
group of connectivity units. Then the value
of the group would be set to the value of
connUnitId for this 'container' connUnit.
connUnitModuleId should be zeros if this
connUnit is not part of a module."
::= { connUnitEntry 19 }
connUnitName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A display string containing a name for this
connectivity unit. This object value should be
persistent between boots."
::= { connUnitEntry 20 }
connUnitInfo OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A display string containing information
about this connectivity unit. This object value
should be persistent between boots."
::= { connUnitEntry 21 }
connUnitControl OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
invalid(2),
resetConnUnitColdStart(3),
resetConnUnitWarmStart(4),
offlineConnUnit(5),
onlineConnUnit(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to control the addressed
connUnit.
NOTE: 'Cold Start' and 'Warm Start'
are as defined in MIB II and are not meant
to be a factory reset.
resetConnUnitColdStart:
the addressed unit performs
a 'Cold Start' reset.
resetConnUnitWarmStart:
the addressed unit performs
a 'Warm Start' reset.
offlineConnUnit:
the addressed unit puts itself into
an implementation dependant 'offline' state.
In general,if a unit is in an offline state,
it cannot be used to perform meaningful
Fibre Channel work.
onlineConnUnit:
the addressed unit puts itself into an
implementation dependant 'online' state.
In general, if a unit is in an online state,
it is capable of performing meaningful
Fibre Channel work.
NOTE: Each implementation may chose not to allow
any or all of these values on a SET. "
::= { connUnitEntry 22 }
connUnitContact OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Contact information for this connectivity
unit."
::= { connUnitEntry 23 }
connUnitLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Location information for this connectivity
unit."
::= { connUnitEntry 24 }
connUnitEventFilter OBJECT-TYPE
SYNTAX FcEventSeverity
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value defines the event severity
that will be logged by this connectivity unit.
All events of severity less than or equal to
connUnitEventFilter are logged in connUnitEventTable."
::= { connUnitEntry 25 }
connUnitNumEvents OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of events currently in the
connUnitEventTable."
::= { connUnitEntry 26 }
connUnitMaxEvents OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Max number of events that can be defined
in connUnitEventTable."
::= { connUnitEntry 27 }
connUnitEventCurrID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last used event id (connUnitEventId)."
::= { connUnitEntry 28 }
------------------------------------------------------------------
-- The Table of revisions for hardware and software elements.
connUnitRevsTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitRevsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of the revisions supported by
connectivity units managed by this agent."
::= { connSet 7 }
connUnitRevsEntry OBJECT-TYPE
SYNTAX ConnUnitRevsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { connUnitRevsUnitId,
connUnitRevsIndex }
::= { connUnitRevsTable 1 }
ConnUnitRevsEntry ::=
SEQUENCE {
connUnitRevsUnitId
OCTET STRING,
connUnitRevsIndex
INTEGER,
connUnitRevsRevId
DisplayString,
connUnitRevsDescription
DisplayString }
connUnitRevsUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this revision table."
::= { connUnitRevsEntry 1 }
connUnitRevsIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all connUnitRevsEntrys
with the same value of connUnitRevsUnitId,
in the range between 1 and
connUnitNumRevs[connUnitRevsUnitId]."
::= { connUnitRevsEntry 2 }
connUnitRevsRevId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A vendor-specific string identifying a
revision of a component of the connUnit
indexed by connUnitRevsUnitId."
::= { connUnitRevsEntry 3 }
connUnitRevsDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of a component to which the revision
corresponds."
::= { connUnitRevsEntry 4 }
-----------------------------------------------------------------------
-- The Sensor table
connUnitSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitSensorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of the sensors supported by each
connectivity unit managed by this agent."
::= { connSet 8 }
connUnitSensorEntry OBJECT-TYPE
SYNTAX ConnUnitSensorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the information for a
specific sensor."
INDEX { connUnitSensorUnitId,
connUnitSensorIndex }
::= { connUnitSensorTable 1 }
ConnUnitSensorEntry ::=
SEQUENCE {
connUnitSensorUnitId
OCTET STRING,
connUnitSensorIndex
INTEGER,
connUnitSensorName
DisplayString,
connUnitSensorStatus
INTEGER,
connUnitSensorInfo
DisplayString,
connUnitSensorMessage
DisplayString,
connUnitSensorType
INTEGER,
connUnitSensorCharacteristic
INTEGER
}
connUnitSensorUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this sensor table."
::= { connUnitSensorEntry 1 }
connUnitSensorIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all connUnitSensorEntrys
with the same value of connUnitSensorUnitId,
in the range between 1 and
connUnitNumSensor[connUnitSensorUnitId]."
::= { connUnitSensorEntry 2}
connUnitSensorName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual identification of the sensor
intended primarily for operator use."
::= { connUnitSensorEntry 3 }
connUnitSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
ok(3), -- the sensor indicates ok
warning(4), -- the sensor indicates a warning
failed(5) -- the sensor indicates failure
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status indicated by the sensor."
::= { connUnitSensorEntry 4 }
connUnitSensorInfo OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Miscellaneous static info about the sensor
such as its serial number."
::= { connUnitSensorEntry 5 }
connUnitSensorMessage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This describes the status of the sensor
as a message. It may also provide more
resolution on the sensor indication, for
example 'Cover temperature 1503K, above
nominal operating range'"
::= { connUnitSensorEntry 6 }
connUnitSensorType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
battery(3),
fan(4),
power-supply(5),
transmitter(6),
enclosure(7),
board(8),
receiver(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of component being monitored by this
sensor."
::= { connUnitSensorEntry 7 }
connUnitSensorCharacteristic OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
temperature(3),
pressure(4),
emf(5),
currentValue(6), -- current is a keyword
airflow(7),
frequency(8),
power(9),
door(10)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The characteristics being monitored by this
sensor."
::= { connUnitSensorEntry 8 }
-----------------------------------------------------------------------
-- The port table
connUnitPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Generic information on ports for a specific
connUnit."
::= { connSet 10 }
connUnitPortEntry OBJECT-TYPE
SYNTAX ConnUnitPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the information for
a specific port."
INDEX { connUnitPortUnitId,
connUnitPortIndex }
::= { connUnitPortTable 1 }
ConnUnitPortEntry ::=
SEQUENCE {
connUnitPortUnitId
OCTET STRING,
connUnitPortIndex
INTEGER,
connUnitPortType
INTEGER,
connUnitPortFCClassCap
OCTET STRING,
connUnitPortFCClassOp
OCTET STRING,
connUnitPortState
INTEGER,
connUnitPortStatus
INTEGER,
connUnitPortTransmitterType
INTEGER,
connUnitPortModuleType
INTEGER,
connUnitPortWwn
FcNameId,
connUnitPortFCId
OCTET STRING,
connUnitPortSn
DisplayString,
connUnitPortRevision
DisplayString,
connUnitPortVendor
DisplayString,
connUnitPortSpeed
INTEGER,
connUnitPortControl
INTEGER,
connUnitPortName
DisplayString,
connUnitPortPhysicalNumber
INTEGER,
connUnitPortStatObject
OBJECT IDENTIFIER,
connUnitPortProtocolCap
OCTET STRING,
connUnitPortProtocolOp
OCTET STRING,
connUnitPortNodeWwn
FcNameId,
connUnitPortHWState
INTEGER
}
connUnitPortUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this port."
::= { connUnitPortEntry 1 }
connUnitPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all connUnitPortEntrys
on this connectivity unit, between 0 and
connUnitNumPort[connUnitPortUnitId]."
::= { connUnitPortEntry 2 }
connUnitPortType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
other (2),
not-present (3),
hub-port (4),
n-port (5), -- end port for fabric
l-port (6), -- end port for loop
fl-port (7), -- public loop
f-port (8), -- fabric port
e-port (9), -- fabric expansion port
g-port (10), -- generic fabric port
domain-ctl (11), -- domain controller
hub-controller(12),
scsi (13), -- parallel SCSI port
escon (14),
lan (15),
wan (16),
ac (17), -- AC power line
dc (18), -- DC power line
ssa (19) -- serial storage architecture
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port type."
::= { connUnitPortEntry 3 }
connUnitPortFCClassCap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit mask that specifies the classes
of service capability of this port. If this is not
applicable, return all bits set to zero.
The bits have
the following definition:
unknown - 0
class-f - 1
class-one - 2
class-two - 4
class-three - 8
class-four - 16
class-five - 32
class-six - 64"
::= { connUnitPortEntry 4 }
connUnitPortFCClassOp OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit mask that specifies the classes