-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSW-MIB
3561 lines (3169 loc) · 113 KB
/
SW-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
--
-- Title: Fibre Channel Switch MIB.
--
-- This is specified based on SMIv2, mainly to ensure that the specification
-- can be parsed easily by off-the-shelf network management product in
-- the market.
--
-- The goal of this mib is to access the any Fibre Channel switch of
-- Brocade's family by using single SW-MIB file.
-- This mib file includes the traps for Silkworm Switch.
-- NOTE: Load BRCD.mib file before loading this mib file.
--
SW-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC
Counter32, Integer32, IpAddress,
OBJECT-TYPE, OBJECT-IDENTITY,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
FcWwn, SwDomainIndex, SwNbIndex, SwSensorIndex,
SwPortIndex, SwTrunkMaster
FROM Brocade-TC
fcSwitch, bcsiModules
FROM Brocade-REG-MIB
connUnitPortStatEntry
FROM FCMGMT-MIB;
swMibModule MODULE-IDENTITY
LAST-UPDATED "200408061830Z" -- Aug 06, 2004 6:30pm
ORGANIZATION "Brocade Communications Systems, Inc.,"
CONTACT-INFO "Customer Support Group
Brocade Communications Systems,
1745 Technology Drive,
San Jose, CA 95110 U.S.A
Tel: +1-408-392-6061
Fax: +1-408-392-6656
Email: [email protected]
WEB: www.brocade.com"
DESCRIPTION "The MIB module is for Brocade's Fibre Channel Switch.
Copyright (c) 1996-2003 Brocade Communications Systems, Inc.
All rights reserved."
REVISION "200301131430Z" -- Jan 13, 2003 2:30pm
DESCRIPTION "The initial version of this module."
REVISION "200307201430Z" -- July 20, 2003 2:30pm
DESCRIPTION "Added swIDIDMode to the swFabric group."
REVISION "200404151030Z" -- April 15, 2004 10:30am
DESCRIPTION "Added object for Trap Severity Level, swFwLastSeverityLevel.
Added the enumeration swFwResourceFlash for SwFwClassesAreas.
Deprecated the mib object swEventTrapLevel.
Updated the description of swGroupId and corrected the spell
mistakes.
Obsoleted the swFault Trap.
Added enumerations four-GB for swFCPortSpeed and unknown,
other for swFCPortType."
REVISION "200408061830Z" -- Aug 06, 2004 6:30pm
DESCRIPTION "Added swFCPortSpecifier object to swFCPortTable."
REVISION "200504292016Z" -- Apr 29, 2005 8:16pm
DESCRIPTION "Modified the #SUMMARY and #ARGUMENTS for swFabricWatchTrap"
REVISION "200601090900Z" -- Jan 09, 2006 9:00am
DESCRIPTION "1. Modified the description for swPortTrunked
2. Updated the SW Traps summary and description to
remove the obsolete varbindings"
REVISION "200605170900Z" -- May 17, 2006 9:00am
DESCRIPTION "Added swFCPortFlag object to swFCPortTable"
REVISION "200701230900Z" -- Jan 23, 2007 9:00am
DESCRIPTION "Added enumerations eight-GB and ten-GB for swFCPortSpeed"
REVISION "200706081200Z" -- Jun 8, 2007 12:00pm
DESCRIPTION "Included swFCPortFlag as an additiional variable binding for
trap SWFCPortScn"
REVISION "200706271030Z" -- Jun 27, 2007 10:30am
DESCRIPTION "Added enumerations octuple and decuple for swNbBaudRate"
REVISION "200708011220Z" -- Aug 01, 2007 12:20pm
DESCRIPTION "Added the enumerations swFwEPortUtil and swFwEPortPktl for swFwClassAreaIndex"
REVISION "200708290442Z" -- Aug 29, 2007 4:42pm
DESCRIPTION "Added swFCPortBrcdType object to swFCPortTable"
REVISION "200801290759Z" -- Jan 29, 2008 7:59pm
DESCRIPTION "Added Toptalker support and swVfId to the swFabric group."
REVISION "200807170345Z" -- July 17, 2008 3:45pm
DESCRIPTION "Added swIPv6ChangeTrap, swIPv6Address and swIPv6Status ."
REVISION "200807240232Z" -- July 24, 2008 2:32pm
DESCRIPTION "Added swModel to distiguish between 7500 and 7500E switch ."
REVISION "200807250232Z" -- July 25, 2008 2:32pm
DESCRIPTION "Added the enumerations swFwPortLr, swFwEPortLr, swFwEPortUtil, swFwEPortPktl,
swFwFCUPortLr, swFwFOPPortLr for swFwClassAreaIndex."
REVISION "200809090900Z" -- Sept 09, 2008 9:00pm
DESCRIPTION "Added swPmgrEventTrap information."
REVISION "200909280900Z" -- Jan 28, 2009 9:00pm
DESCRIPTION "Added additional fabric watch threshold in SwFwActs."
REVISION "200902210900Z" -- Feb 21, 2008 9:00pm
DESCRIPTION "Added port phy states."
REVISION "200903300900Z" -- Mar 30, 2009 9:00am
DESCRIPTION "Added swEventVfId in swEventTable."
REVISION "200906251200Z" -- Jun 25, 2009 12:00pm
DESCRIPTION "Removed the version information from Brocade's proprietary MIB file name."
REVISION "200906290100Z" -- Jun 29, 2009 01:00pm
DESCRIPTION "Modified swVfid position at the last of swFabric table"
REVISION "200906301306Z" -- June 30, 2009 1:06pm
DESCRIPTION "Added swFwCPUMemUsage enumeration under swFwClassAreaIndex."
REVISION "200906300600Z" -- Jun 30, 2009 06:00pm
DESCRIPTION "Updated the description of swCpuAction/swMemAction and access of
swcpuormemoryusage objects and changed the type of swEndDeviceInvalidWord,
swEndDeviceLinkFailure,swEndDeviceSyncLoss, swEndDeviceSigLoss,
swEndDeviceProtoErr,swEndDeviceInvalidCRC from integer32 to counter32."
REVISION "200910300500Z" -- Oct 30, 2009 05:00pm
DESCRIPTION "Added swFabricReconfigTrap and swFabricSegmentTrap."
REVISION "200911031306Z" -- Nov 03, 2009 1:06pm
DESCRIPTION "Removed enum switchReboot from swAdmStatus."
REVISION "200911051200Z" -- Nov 05, 2009 12:00pm
DESCRIPTION "Changed swFwCustUnit access to read-only"
REVISION "200911050500Z" -- Nov 05, 2009 05:00pm
DESCRIPTION "Added enums swFwEPortTrunkUtil,swFwFCUPortTrunkUtil and
swFwFOPPortTrunkUtil in SwFwClassesAreas"
REVISION "200911061130Z" -- Nov 06, 2009 11:30am
DESCRIPTION "Added swConnUnitExtensionTable and entries for 64 bit
portstats."
REVISION "0911301030Z" -- Nov 30, 2009 10:30am
DESCRIPTION "Added swMemUsageLimit1 and swMemUsageLimit3 under
swCpuOrMemoryUsage"
REVISION "0912031730Z" -- Dec 03, 2009 05:30pm
DESCRIPTION "Added swExttrap as internal trap."
REVISION "1001301730Z" -- Jan 30, 2010 05:30pm
DESCRIPTION "Changed the descriptions for swConnUnitExtensionTable as per latest FS."
::= { bcsiModules 3 }
sw OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for Brocade's Silkworm Series of
Fibre Channel Switches."
::= { fcSwitch 1 }
sw28k OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID for Brocade's Silkworm 2800 model Fibre Channel
Switch."
::= { fcSwitch 2 }
sw21kN24k OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID for Brocade's Silkworm 2100 and 2400 series
model Fibre Channel Switch."
::= { fcSwitch 3 }
sw20x0 OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID for Brocade's Silkworm 20x0 series
model Fibre Channel Switch."
::= { fcSwitch 4 }
SwSevType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The event trap level in conjunction with the an event's
severity level."
SYNTAX INTEGER {
none (0),
critical (1),
error (2),
warning (3),
informational (4),
debug (5)
}
FcPortFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the port status for a FC Flag. Currently this will indicate
if the port is virtual or physical."
SYNTAX BITS {
physical (0),
virtual (1)
}
-- various groups
swSystem OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swSystem group."
::= { sw 1 }
swFabric OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swFabric group."
::= { sw 2 }
swModule OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swModule group."
::= { sw 3 }
swAgtCfg OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swAgtCfg group."
::= { sw 4 }
-- { sw 5 } is reserved
swFCport OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swFCport group."
::= { sw 6 }
swNs OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swNs group."
::= { sw 7 }
swEvent OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swEvent group."
::= { sw 8 }
swFwSystem OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swFwSystem group."
::= { sw 10 }
swEndDevice OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swEndDevice group."
::= { sw 21 }
swGroup OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swGroup group."
::= { sw 22 }
swBlmPerfMnt OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swBlmPerfMnt (Bloom Performance
Monitor) group."
::= { sw 23 }
swTrunk OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for swTrunk group."
::= { sw 24 }
swTopTalker OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for TopTalker group."
::= { sw 25 }
swCpuOrMemoryUsage OBJECT-IDENTITY
STATUS current
DESCRIPTION "The OID sub-tree for cpu or memory usage group."
::= { sw 26 }
swConnUnitPortStatExtentionTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwConnUnitPortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This represents the Conn unit Port Stats"
::= { sw 27 }
--
-- the System Group (sw)
--
swCurrentDate OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current date information in displayable textual
format."
::= { swSystem 1 }
swBootDate OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The date and time when the system last booted, in
displayable textual format."
::= { swSystem 2 }
swFWLastUpdated OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The information indicates the date when the firmware
was last updated, in displayable textual format."
::= { swSystem 3 }
swFlashLastUpdated OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The information indicates the date when the FLASH
was last updated, in displayable textual format."
::= { swSystem 4 }
swBootPromLastUpdated OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The information indicates the date when the boot PROM
was last updated, in displayable textual format."
::= { swSystem 5 }
swFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current version of the firwmare."
::= { swSystem 6 }
swOperStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1),
offline (2),
testing (3),
faulty (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current operational status of the switch.
The states are as follow:
o online(1) means the switch is accessible by an external
Fibre Channel port;
o offline(2) means the switch is not accessible;
o testing(3) means the switch is in a built-in test mode
and is not accessible by an external Fibre Channel port;
o faulty(4) means the switch is not operational."
::= { swSystem 7 }
swAdmStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1),
offline (2),
testing (3),
faulty (4),
reboot (5),
fastboot (6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired administrative status of the switch.
A management station may place the switch in a desired
state by setting this object accordingly. The states
are as follow:
o online(1) means set the switch to be accessible by an
external Fibre Channel port;
o offline(2) means set the switch to be inaccessible;
o testing(3) means set the switch to run the built-in test;
o faulty(4) means set the switch to a 'soft' faulty
condition;
o reboot(5) means set the switch to reboot in 1 second.
o fastboot(6) means set the switch to fastboot in 1 second.
Fastboot would cause the switch to boot but skip over the
POST.
When the switch is in faulty state, only two states
can be set: faulty and reboot/fastboot."
::= { swSystem 8 }
swTelnetShellAdmStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
terminated (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired administrative status of the Telnet
shell. By setting it to terminated(1), the current
Telnet shell task is deleted. When this variable instance
is read, it reports the value last set through SNMP."
::= { swSystem 9 }
swSsn OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The soft serial number of the switch."
::= { swSystem 10 }
-- FLASH administration
-- the next 5 objects are related to firmware or config file management.
--
-- The underlying method in the transfer of the firmware or config file
-- is based on either FTP or remote shell.
-- If a password is provided, then FTP is used.
-- If NO password is provided, then remote shell is used.
--
-- 2 steps to manage firmware or switch config file in the switch FLASH,
-- (A1) set swFlashDLHost.0, swFlashDLUser.0 and swFlashDLFile.0 to
-- appropriate
-- host IP address in user dot notation (e.g. 192.168.1.7),
-- user name (e.g. "administrator"), and
-- file name of the firmware or config file (e.g. "/home/fcswh/v2.2")
-- respectively;
-- (A2) set swFlashDLPassword.0 to an appropriate value (e.g. "secret")
-- if FTP is the desired method of transfer;
-- (B) set swFlashDLAdmStatus.0 to swFwUpgrade(2), swCfUpload(3),
-- or swCfDownload(4) accordingly.
--
swFlashDLOperStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
swCurrent (1),
swFwUpgraded (2),
swCfUploaded (3),
swCfDownloaded (4),
swFwCorrupted (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operational status of the FLASH.
The operational states are as follow:
o swCurrent(1) indicates that the FLASH contains the
current firmware image or config file;
o swFwUpgraded(2) state indicates that it contains the image
upgraded from the swFlashDLHost.0.;
o swCfUploaded(3) state indicates that the switch configuration
file has been uploaded to the host; and
o swCfDownloaded(4) state indicates that the switch
configuration file has been downloaded from the host.
o swFwCorrupted (5) state indicates that the firmware in the
FLASH of the switch is corrupted."
::= { swSystem 11 }
swFlashDLAdmStatus OBJECT-TYPE
SYNTAX INTEGER {
swCurrent (1),
swFwUpgrade (2),
swCfUpload (3),
swCfDownload (4),
swFwCorrupted (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired state of the FLASH.
A management station may place the FLASH in a desired
state by setting this object accordingly:
o swCurrent(1) indicates that the FLASH contains the
current firmware image or config file;
o swFwUpgrade(2) means that the firmware in the FLASH is to be
upgraded from the host specified;
o swCfUpload(3) means that the switch config file is to be
uploaded to the host specified; or
o swCfDownload(4) means that the switch config file is to be
downloaded from the host specified.
o swFwCorrupted(5) state indicates that the firmware in the
FLASH is corrupted. This value is for informational purpose
only. However, set of swFlashDLAdmStatus to this value is
not allowed.
The host is specified in swFlashDLHost.0. In addition,
user name is specified in swFlashDLUser.0, and
the file name specified in swFlashDLFile.0.
Reference the user manual on the following commands,
o firmwareDownload,
o configUpload, and
o configDownload."
::= { swSystem 12 }
swFlashDLHost OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The name or IP address (in dot notation) of the host
to download or upload a relevant file to the FLASH."
::= { swSystem 13 }
swFlashDLUser OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The user name on the host to download or upload
a relevant file to or from the FLASH."
::= { swSystem 14 }
swFlashDLFile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The name of the file to be downloaded or uploaded."
::= { swSystem 15 }
swFlashDLPassword OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..100))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The password to be used in for FTP transfer of
files in the download or upload operation."
::= { swSystem 16 }
-- 17..19 are reserved
swBeaconOperStatus OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current operational status of the switch beacon.
When the beacon is on, the LEDs on the front panel
of the switch run alternately from left to right
and right to left. The color is yellow.
When the beacon is off, each LED will be in their
its regular status indicating color and state."
::= { swSystem 18 }
swBeaconAdmStatus OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired status of the switch beacon.
When the beacon is set to on, the LEDs on the front
panel of the switch run alternately from left to right
and right to left. The color is yellow.
When the beacon is set to off, each LED will be in
its regular status indicating color and state."
::= { swSystem 19 }
swDiagResult OBJECT-TYPE
SYNTAX INTEGER {
sw-ok (1),
sw-faulty (2),
sw-embedded-port-fault (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The result of the power-on startup (POST)
diagnostics."
::= { swSystem 20 }
-- operating environment sensors (temperature, fan, power supply...)
swNumSensors OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of sensors inside the switch."
::= { swSystem 21 }
swSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table of sensor entries."
::= { swSystem 22 }
swSensorEntry OBJECT-TYPE
SYNTAX SwSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry of the sensor information."
INDEX { swSensorIndex }
::= { swSensorTable 1 }
SwSensorEntry ::= SEQUENCE {
swSensorIndex SwSensorIndex,
swSensorType INTEGER,
swSensorStatus INTEGER,
swSensorValue Integer32,
swSensorInfo DisplayString
}
swSensorIndex OBJECT-TYPE
SYNTAX SwSensorIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the sensor."
::= { swSensorEntry 1 }
swSensorType OBJECT-TYPE
SYNTAX INTEGER {
temperature (1),
fan (2),
power-supply (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the sensor type."
::= { swSensorEntry 2 }
swSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
faulty (2),
below-min (3),
nominal (4),
above-max (5),
absent (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current status of the sensor."
::= { swSensorEntry 3 }
swSensorValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current value (reading) of the sensor.
The value, -2147483648, represents an unknown quantity.
It also means that the sensor does not have the capability to
measure the actual value. In V2.0, the temperature sensor
value will be in Celsius; the fan value will be in RPM
(revolution per minute); and the power supply sensor reading
will be unknown."
::= { swSensorEntry 4 }
swSensorInfo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Additional displayable information on the sensor.
In V2.x, it contains the sensor type and number
in textual format. For example, 'Temp 3', 'Fan 6'."
::= { swSensorEntry 5 }
-- track changes string scalar
swTrackChangesInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Track changes string. For trap only"
::= { swSystem 23 }
swID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the logical switch (0/1)"
::= { swSystem 24 }
swEtherIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Address of the Ethernet interface of this logical
switch."
::= { swSystem 25 }
swEtherIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Mask of the Ethernet interface of this logical switch."
::= { swSystem 26}
swFCIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Address of the FC interface of this logical switch."
::= { swSystem 27 }
swFCIPMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Mask of the FC interface of this logical switch."
::= { swSystem 28 }
swIPv6Address OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IPV6 address."
::= { swSystem 29 }
swIPv6Status OBJECT-TYPE
SYNTAX INTEGER {
tentative (1),
preferred (2),
ipdeprecated (3),
inactive (4)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The current status of ipv6 address."
::= { swSystem 30 }
swModel OBJECT-TYPE
SYNTAX INTEGER {
switch7500 (1),
switch7500E (2),
other (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the switch is 7500 or 7500E ."
::= { swSystem 31 }
swTestString OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..255))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "presence of this string represents test trap."
::= { swSystem 32 }
--
-- End of System Group
--
--
-- Fabric Group
--
swDomainID OBJECT-TYPE
SYNTAX SwDomainIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The current Fibre Channel domain ID of the switch.
To set a new value, the switch (swAdmStatus) must be in
offline or testing state."
::= { swFabric 1 }
swPrincipalSwitch OBJECT-TYPE
SYNTAX INTEGER {
yes (1),
no (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates whether the switch is
the Principal switch as per FC-SW."
::= { swFabric 2 }
-- swFabric 3..7 are reserved
-- (immediate) Neighborhood ISL family
--
swNumNbs OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Inter-Switch Links in the (immediate)
neighborhood."
::= { swFabric 8 }
swNbTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwNbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the ISLs in the immediate
neighborhood of the switch."
::= { swFabric 9 }
swNbEntry OBJECT-TYPE
SYNTAX SwNbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing each neighbor ISL parameters."
INDEX { swNbIndex }
::= { swNbTable 1 }
SwNbEntry ::= SEQUENCE {
swNbIndex SwNbIndex,
swNbMyPort SwPortIndex,
swNbRemDomain SwDomainIndex,
swNbRemPort SwPortIndex,
swNbBaudRate INTEGER,
swNbIslState INTEGER,
swNbIslCost Integer32,
swNbRemPortName OCTET STRING
}
swNbIndex OBJECT-TYPE
SYNTAX SwNbIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the neighbor ISL entry."
::= { swNbEntry 1 }
swNbMyPort OBJECT-TYPE
SYNTAX SwPortIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the port that has an ISL to another switch."
::= { swNbEntry 2 }
swNbRemDomain OBJECT-TYPE
SYNTAX SwDomainIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the Fibre Channel domain on the other end
of the ISL."
::= { swNbEntry 3 }
swNbRemPort OBJECT-TYPE
SYNTAX SwPortIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the port index on the other end of the ISL."
::= { swNbEntry 4 }
swNbBaudRate OBJECT-TYPE
SYNTAX INTEGER {
other (1), -- none of below
oneEighth (2), -- 155 Mbaud
quarter (4), -- 266 Mbaud
half (8), -- 532 Mbaud
full (16), -- 1 Gbaud
double (32), -- 2 Gbaud
quadruple (64), -- 4 Gbaud
octuple (128), -- 8 Gbaud
decuple (256) -- 10 Gbaud
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The baud rate of the ISL."
::= { swNbEntry 5 }
swNbIslState OBJECT-TYPE
SYNTAX INTEGER {
sw-down (0),
sw-init (1),
sw-internal2 (2),
sw-internal3 (3),
sw-internal4 (4),
sw-active (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current state of the ISL.
The swNbIslState will be 0 when ISL
is in incompatible state or port is a slave port."
::= { swNbEntry 6 }
swNbIslCost OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The current link cost of the ISL."
::= { swNbEntry 7 }
swNbRemPortName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The World_wide_Name of the remote port."
::= { swNbEntry 8 }
-- Fabric member information
--
swFabricMemTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwFabricMemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains information on the member
switches of a fabric. This may not be available on
all versions of Fabric OS."
::= { swFabric 10 }
swFabricMemEntry OBJECT-TYPE
SYNTAX SwFabricMemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing each switch in the fabric."
INDEX { swFabricMemWwn }
::= { swFabricMemTable 1 }
SwFabricMemEntry ::= SEQUENCE {
swFabricMemWwn FcWwn,
swFabricMemDid SwDomainIndex,
swFabricMemName DisplayString,
swFabricMemEIP IpAddress,
swFabricMemFCIP IpAddress,
swFabricMemGWIP IpAddress,
swFabricMemType Integer32,
swFabricMemShortVersion OCTET STRING
}
swFabricMemWwn OBJECT-TYPE
SYNTAX FcWwn
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the World wide name of the
member switch."
::= { swFabricMemEntry 1 }
swFabricMemDid OBJECT-TYPE
SYNTAX SwDomainIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the domain id of the member
switch."
::= { swFabricMemEntry 2 }
swFabricMemName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the name of the member switch."
::= { swFabricMemEntry 3 }
swFabricMemEIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the ethernet IP address
of the member switch."
::= { swFabricMemEntry 4 }
swFabricMemFCIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the Fibre Channel IP address
of the member switch."
::= { swFabricMemEntry 5 }
swFabricMemGWIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the Gateway IP address
of the member switch."
::= { swFabricMemEntry 6 }
swFabricMemType OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the member switch type."
::= { swFabricMemEntry 7 }
swFabricMemShortVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies Fabric OS version of
the member switch."
::= { swFabricMemEntry 8 }
swIDIDMode OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Status of Insistent Domain ID (IDID) mode. Status
indicating IDID mode is enabled or not."
::= { swFabric 11 }
swPmgrEventType OBJECT-TYPE
SYNTAX INTEGER {
create (0),
delete (1),
moveport (2),
fidchange (3),
basechange (4),
vfstatechange(6)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Indicates Partition manager event type."
::= { swFabric 12 }
swPmgrEventTime OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This object identifies the date and time when this pmgr
event occurred, in textual format."
::= { swFabric 13 }
swPmgrEventDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This object identifies the textual description of
the pmgr event."
::= { swFabric 14 }
swVfId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Virtual fabric id."
::= { swFabric 15 }
--
-- SNMP Agent Configuration
--
-- swAgtCfg 1..10 are reserved
swAgtCmtyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwAgtCmtyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains, one entry for each Community,
the access control and parameters of the Community."
::= { swAgtCfg 11 }
swAgtCmtyEntry OBJECT-TYPE
SYNTAX SwAgtCmtyEntry
MAX-ACCESS not-accessible