3 -- Title: Fibre Channel Switch MIB, Version 1.6b
5 -- Significant changes (since V1.6):
7 -- o changed swNsPortIndex to swNsEntryIndex
8 -- o added swFCPortTxType, swFCPortLinkState
10 -- This is specified based on SMIv1, mainly to ensure that the specification
11 -- can be parsed easily by off-the-shelf network management product in
15 SW-MIB DEFINITIONS ::= BEGIN
17 enterprises, Counter, NetworkAddress
22 -- additional textual conventions
24 -- DisplayString: comment out the next line if your MIB compiler complains
25 -- that it is already defined.
26 DisplayString ::= OCTET STRING -- containing displayable octets (aka ASCII)
28 FcWwn ::= OCTET STRING (SIZE(8))
29 SwDomainIndex ::= INTEGER (0..31)
30 SwNbIndex ::= INTEGER (0..2048)
31 SwSensorIndex ::= INTEGER (1..1024)
33 bcsi OBJECT IDENTIFIER ::= { enterprises 1588 }
35 -- Product Lines or Generic Product information
36 -- { bcsi 1 } is reserved
37 commDev OBJECT IDENTIFIER ::= { bcsi 2 } -- communication devices
39 fibrechannel OBJECT IDENTIFIER ::= { commDev 1 }
40 fcSwitch OBJECT IDENTIFIER ::= { fibrechannel 1 }
42 sw OBJECT IDENTIFIER ::= { fcSwitch 1 }
45 swSystem OBJECT IDENTIFIER ::= { sw 1 }
46 swFabric OBJECT IDENTIFIER ::= { sw 2 }
47 swModule OBJECT IDENTIFIER ::= { sw 3 }
48 swAgtCfg OBJECT IDENTIFIER ::= { sw 4 }
49 -- { sw 5 } is reserved
50 swFCport OBJECT IDENTIFIER ::= { sw 6 }
51 swNs OBJECT IDENTIFIER ::= { sw 7 }
52 swEvent OBJECT IDENTIFIER ::= { sw 8 }
55 -- the System Group (sw)
58 swCurrentDate OBJECT-TYPE
59 SYNTAX DisplayString (SIZE (64))
62 DESCRIPTION "The current date information in displayable textual
66 swBootDate OBJECT-TYPE
67 SYNTAX DisplayString (SIZE (64))
70 DESCRIPTION "The date and time when the system last booted, in
71 displaybale textual format."
74 swFWLastUpdated OBJECT-TYPE
75 SYNTAX DisplayString (SIZE (64))
78 DESCRIPTION "The information indicates the date when the firmware
79 was last updated, in displayable textual format."
82 swFlashLastUpdated OBJECT-TYPE
86 DESCRIPTION "The information indicates the date when the FLASH
87 was last updated, in displayable textual format."
90 swBootPromLastUpdated OBJECT-TYPE
91 SYNTAX DisplayString (SIZE (64))
94 DESCRIPTION "The information indicates the date when the boot PROM
95 was last updated, in displayable textual format."
98 swFirmwareVersion OBJECT-TYPE
99 SYNTAX DisplayString (SIZE (24))
102 DESCRIPTION "The current version of the firwmare."
105 swOperStatus OBJECT-TYPE
114 DESCRIPTION "The current operational status of the switch.
115 The states are as follow:
116 o online(1) means the switch is accessible by an external
118 o offline(2) means the switch is not accesible;
119 o testing(3) means the switch is in a built-in test mode
120 and is not accessible by an external Fibre Channel port;
121 o faulty(4) means the switch is not operational."
124 swAdmStatus OBJECT-TYPE
135 DESCRIPTION "The desired administrative status of the switch.
136 A management station may place the switch in a desired
137 state by setting this object accordingly. The states
139 o online(1) means set the switch to be accessible by an
140 external Fibre Channel port;
141 o offline(2) means set the switch to be inaccesible;
142 o testing(3) means set the switch to run the built-in test;
143 o faulty(4) means set the switch to a 'soft' faulty
145 o reboot(5) means set the switch to reboot in 1 second.
146 o fastboot(6) means set the switch to fastboot in 1 second.
147 Fastboot would cause the switch to boot but skip over the
150 When the switch is in faulty state, only two states
151 can be set: faulty and reboot/fastboot."
155 -- 9..10 are reserved
157 -- FLASH administration
158 -- the next 5 objects are related to FlashDownload
160 -- 2 steps to download a new firmware into the switch FLASH,
161 -- (A) set swFlashDLHost.0, swFlashDLUser.0 and swFlashDLFile.0 to
163 -- host IP address in user dot notation (e.g. 192.168.1.7),
164 -- user name (e.g. "administrator"), and
165 -- file name of the firmware (e.g. "/home/fcswitch/v2.0")
167 -- (B) set swFlashDLAdmStatus.0 to sw-upgraded(2)
169 swFlashDLOperStatus OBJECT-TYPE
176 DESCRIPTION "The operational status of the boot FLASH.
177 The operational states are as follow:
178 o current(1) indicates that the boot FLASH contains the
179 current firmware image; and
180 o upgraded(2) state indicates that it contains the image
181 upgraded from the swFlashDLHost.0."
184 swFlashDLAdmStatus OBJECT-TYPE
191 DESCRIPTION "The desired state of the boot FLASH.
192 A management station may place the boot FLASH in a desired
193 state by setting this object accordingly.
194 The sw-upgraded(2) state indicates that the boot FLASH shall be
195 upgraded from the host specified in swFlashDLHost.0,
196 with the user name specified in swFlashDLUser.0, and
197 the new firmware image file specified in swFlashDLFile.0."
200 swFlashDLHost OBJECT-TYPE
201 SYNTAX DisplayString (SIZE (0..64))
204 DESCRIPTION "The name or IP address (in dot notation) of the host
205 to download the firmware image to the FLASH."
208 swFlashDLUser OBJECT-TYPE
209 SYNTAX DisplayString (SIZE (0..64))
212 DESCRIPTION "The user name on the host to download the firmware
213 image to the boot FLASH."
216 swFlashDLFile OBJECT-TYPE
217 SYNTAX DisplayString (SIZE (0..256))
220 DESCRIPTION "The file name of the firmware image."
223 -- 16..19 are reserved
225 swDiagResult OBJECT-TYPE
228 sw-central-memory-fault (2),
229 sw-embedded-port-fault (3)
233 DESCRIPTION "The result of the power-on startup (POST)
237 -- operating environment sensors (temperature, fan, power supply...)
238 swNumSensors OBJECT-TYPE
242 DESCRIPTION "The number of sensors inside the switch."
245 swSensorTable OBJECT-TYPE
246 SYNTAX SEQUENCE OF SwSensorEntry
247 ACCESS not-accessible
249 DESCRIPTION "The table of sensor entries."
252 swSensorEntry OBJECT-TYPE
254 ACCESS not-accessible
256 DESCRIPTION "An entry of the sensor information."
257 INDEX { swSensorIndex }
258 ::= { swSensorTable 1 }
260 SwSensorEntry ::= SEQUENCE {
261 swSensorIndex SwSensorIndex,
262 swSensorType INTEGER,
263 swSensorStatus INTEGER,
264 swSensorValue INTEGER,
265 swSensorInfo DisplayString (SIZE(256))
268 swSensorIndex OBJECT-TYPE
272 DESCRIPTION "This object identifies the sensor."
273 ::= { swSensorEntry 1 }
275 swSensorType OBJECT-TYPE
283 DESCRIPTION "This object identifies the sensor type."
284 ::= { swSensorEntry 2 }
286 swSensorStatus OBJECT-TYPE
297 DESCRIPTION "The current status of the sensor."
298 ::= { swSensorEntry 3 }
300 swSensorValue OBJECT-TYPE
304 DESCRIPTION "The current value of the sensor.
305 The value, -2147483648, represents an unknown quantity.
306 It also means that the sensor does not have the capability to
307 measure the actual value. In V1.6, the temperature sensor
308 value will be in Celsius; the fan and power supply sensor
309 reading will be unknown."
310 ::= { swSensorEntry 4 }
312 swSensorInfo OBJECT-TYPE
313 SYNTAX DisplayString (SIZE(256))
316 DESCRIPTION "Additional displayable information on the sensor.
317 In V1.6, it contains the sensor type and number
318 in textual format. For example, 'Temp 3', 'Fan 6'."
319 ::= { swSensorEntry 5 }
322 -- End of System Group
328 swDomainID OBJECT-TYPE
332 DESCRIPTION "The current Fibre Channel domain ID of the switch.
333 To set a new value, the switch (swAdmStatus) must be in
334 offline or testing state."
337 swPrincipalSwitch OBJECT-TYPE
344 DESCRIPTION "This object indicates whether the switch is
345 the Principal switch as per FC-SW."
348 -- swFabric 3..7 are reserved
350 -- (immediate) Neighborhood ISL family
356 DESCRIPTION "The number of Inter-Switch Links in the (immediate)
360 swNbTable OBJECT-TYPE
361 SYNTAX SEQUENCE OF SwNbEntry
362 ACCESS not-accessible
364 DESCRIPTION "This table contains the ISLs in the immediate
365 neighorhood of the switch."
368 swNbEntry OBJECT-TYPE
370 ACCESS not-accessible
372 DESCRIPTION "An entry containing each neighbor ISL parameters."
376 SwNbEntry ::= SEQUENCE {
379 swNbRemDomain SwDomainIndex,
381 swNbBaudRate INTEGER,
385 swNbIndex OBJECT-TYPE
389 DESCRIPTION "This object identifies the neighbour ISL entry."
392 swNbMyPort OBJECT-TYPE
413 DESCRIPTION "This is the port that has an ISL to another switch."
416 swNbRemDomain OBJECT-TYPE
420 DESCRIPTION "This is the Fibre Channel domain on the other end
424 swNbRemPort OBJECT-TYPE
445 DESCRIPTION "This is the port index on the other end of the ISL."
448 swNbBaudRate OBJECT-TYPE
450 other (1), -- none of below
451 oneEighth (2), -- 155 Mbaud
452 quarter (4), -- 266 Mbaud
453 half (8), -- 532 Mbaud
454 full (16), -- 1 Gbaud
455 double (32), -- 2 Gbaud
456 quadruple (64) -- 4 Gbaud
460 DESCRIPTION "The baud rate of the ISL."
463 swNbIslState OBJECT-TYPE
474 DESCRIPTION "The current state of the ISL."
478 -- SNMP Agent Configuration
481 -- swAgtCfg 1..10 are reserved
483 swAgtCmtyTable OBJECT-TYPE
484 SYNTAX SEQUENCE OF SwAgtCmtyEntry
485 ACCESS not-accessible
487 DESCRIPTION "A table that contains, one entry for each Community,
488 the access control and parameters of the Community."
491 swAgtCmtyEntry OBJECT-TYPE
492 SYNTAX SwAgtCmtyEntry
493 ACCESS not-accessible
495 DESCRIPTION "An entry containing the Community parameters."
496 INDEX { swAgtCmtyIdx }
497 ::= { swAgtCmtyTable 1 }
499 SwAgtCmtyEntry ::= SEQUENCE {
500 swAgtCmtyIdx INTEGER (1..6),
501 swAgtCmtyStr DisplayString (SIZE (16)),
502 swAgtTrapRcp NetworkAddress
505 swAgtCmtyIdx OBJECT-TYPE
506 SYNTAX INTEGER (1..6)
509 DESCRIPTION "This object identifies the SNMPv1 Community entry."
510 ::= { swAgtCmtyEntry 1 }
512 swAgtCmtyStr OBJECT-TYPE
513 SYNTAX DisplayString (SIZE (16))
516 DESCRIPTION "This is a Community string supported by the agent.
517 If a new value is set successfully, it takes effect
519 ::= { swAgtCmtyEntry 2 }
521 swAgtTrapRcp OBJECT-TYPE
522 SYNTAX NetworkAddress
525 DESCRIPTION "This is the trap recipient associated with the
526 Community. If a new value is set successfully, it takes
528 ::= { swAgtCmtyEntry 3 }
531 -- End of SNMP Agent Configuration Group
535 -- Fibre Channel Port Group
536 -- This group contains information about the physical state,
537 -- operational status, performance and error statistics of each
538 -- Fibre Channel port on the switch. A Fibre Channel port is one which
539 -- supports the Fibre Channel protocol. E.g. F_Port, E_Port, FL_Port.
542 swFCPortCapacity OBJECT-TYPE
546 DESCRIPTION "The maximum number of Fibre Channel ports on this
547 switch. It includes G_Port, F_Port, FL_Port and any other
548 types of Fibre Channel port."
551 swFCPortTable OBJECT-TYPE
552 SYNTAX SEQUENCE OF SwFCPortEntry
553 ACCESS not-accessible
555 DESCRIPTION "A table that contains, one entry for each switch port,
556 configuration and service parameters of the port."
559 swFCPortEntry OBJECT-TYPE
561 ACCESS not-accessible
563 DESCRIPTION "An entry containing the configuration and service
564 parameters of the switch port."
565 INDEX { swFCPortIndex }
566 ::= { swFCPortTable 1 }
568 SwFCPortEntry ::= SEQUENCE {
569 swFCPortIndex INTEGER,
570 swFCPortType INTEGER,
571 swFCPortPhyState INTEGER,
572 swFCPortOpStatus INTEGER,
573 swFCPortAdmStatus INTEGER,
574 -- new info for V1.6b
575 swFCPortLinkState INTEGER,
576 swFCPortTxType INTEGER,
578 -- the rest is mapped to gstat_t
579 swFCPortTxWords Counter,
580 swFCPortRxWords Counter,
581 swFCPortTxFrames Counter,
582 swFCPortRxFrames Counter,
583 swFCPortTxC2Frames Counter,
584 swFCPortRxC3Frames Counter,
585 swFCPortRxLCs Counter,
586 swFCPortRxMcasts Counter,
587 swFCPortTooManyRdys Counter,
588 swFCPortNoTxCredits Counter,
589 swFCPortRxEncInFrs Counter,
590 swFCPortRxCrcs Counter,
591 swFCPortRxTruncs Counter,
592 swFCPortRxTooLongs Counter,
593 swFCPortRxBadEofs Counter,
594 swFCPortRxEncOutFrs Counter,
595 swFCPortRxBadOs Counter,
596 swFCPortC3Discards Counter,
597 swFCPortMcastTimedOuts Counter,
598 swFCPortTxMcasts Counter,
601 swFCPortLipIns Counter,
602 swFCPortLipOuts Counter,
603 swFCPortLipLastAlpa OCTET STRING (SIZE(4))
606 swFCPortIndex OBJECT-TYPE
627 DESCRIPTION "This object identifies the switch port index.
628 Note that the value of a port index is 1 higher than the
629 port number labeled on the front panel.
630 E.g. port index 1 correspond to port number 0."
631 ::= { swFCPortEntry 1 }
633 swFCPortType OBJECT-TYPE
640 DESCRIPTION "This object identifies the type of switch port.
641 It may be of type stitch(1) or flannel(2)."
642 ::= { swFCPortEntry 2 }
644 swFCPortPhyState OBJECT-TYPE
658 DESCRIPTION "This object identifies the physical state of
660 noCard(1) no card present in this switch slot;
661 noGbic(2) no GBIC module in this port;
662 laserFault(3) the module is signaling a laser fault
664 noLight(4) the module is not receiving light;
665 noSync(5) the module is receiving light but is
667 inSync(6) the module is receiving light and is
669 portFault(7) the port is marked faulty (defective
670 GBIC, cable or device);
671 diagFault(8) the port failed diagnostics (defective
672 G_Port or FL_Port card or motherboard);
673 lockRef(9) the port is locking to the reference
676 ::= { swFCPortEntry 3 }
678 swFCPortOpStatus OBJECT-TYPE
688 DESCRIPTION "This object identifies the operational status of
689 the port. The online(1) state indicates that user frames
690 can be passed. The unknown(0) state indicates that likely
691 the port module is physically absent (see swFCPortPhyState)."
692 ::= { swFCPortEntry 4 }
694 swFCPortAdmStatus OBJECT-TYPE
703 DESCRIPTION "The desired state of the port. A management station
704 may place the port in a desired state by setting this
705 object accordingly. The testing(3) state indicates that
706 no user frames can be passed. As the result of
707 either explicit management action or per configuration
708 information accessible by the switch, swFCPortAdmStatus is
709 then changed to either the online(1) or testing(3)
710 states, or remains in the offline(2) state."
711 ::= { swFCPortEntry 5 }
714 -- new variables for V1.6b
717 swFCPortLinkState OBJECT-TYPE
725 DESCRIPTION "This object indicates the link state of the port.
727 enabled(1) - port is allowed to participate in the FC-PH
728 protocol with its attached port (or ports if it is
730 disabled(2) - the port is not allowed to participate in
731 the FC-PH protocol with its attached port(s);
732 loopback(3) - the port may transmit frames through an
733 internal path to verify the health of the transmitter
736 Note that when the port's link state changes, its
737 operational status (swFCPortOpStatus) will be affected."
738 ::= { swFCPortEntry 6 }
740 swFCPortTxType OBJECT-TYPE
750 DESCRIPTION "This object indicates the media transmitter type of
751 the port. The value may be:
752 unknown(1) cannot determined to the port driver
753 lw(2) long wave laser
754 sw(3) short wave laser
756 cu(5) copper (electrical)
758 Note that there is a new type of GBIC which has a serial ID
759 and will be mapped as unknown(1) for the current firmware
761 ::= { swFCPortEntry 7 }
763 swFCPortTxWords OBJECT-TYPE
767 DESCRIPTION "This object counts the number of Fibre Channel
768 words that the port has transmitted."
769 ::= { swFCPortEntry 11 }
771 swFCPortRxWords OBJECT-TYPE
775 DESCRIPTION "This object counts the number of Fibre Channel
776 words that the port has received."
777 ::= { swFCPortEntry 12 }
779 swFCPortTxFrames OBJECT-TYPE
783 DESCRIPTION "This object counts the number of (Fibre Channel)
784 frames that the port has transmitted."
785 ::= { swFCPortEntry 13 }
787 swFCPortRxFrames OBJECT-TYPE
791 DESCRIPTION "This object counts the number of (Fibre Channel)
792 frames that the port has received."
793 ::= { swFCPortEntry 14 }
795 swFCPortTxC2Frames OBJECT-TYPE
799 DESCRIPTION "This object counts the number of Class 2
800 frames that the port has transmitted."
801 ::= { swFCPortEntry 15 }
803 swFCPortRxC3Frames OBJECT-TYPE
807 DESCRIPTION "This object counts the number of Class 3
808 frames that the port has received."
809 ::= { swFCPortEntry 16 }
811 swFCPortRxLCs OBJECT-TYPE
815 DESCRIPTION "This object counts the number of Link Control
816 frames that the port has received."
817 ::= { swFCPortEntry 17 }
819 swFCPortRxMcasts OBJECT-TYPE
823 DESCRIPTION "This object counts the number of Multicast
824 frames that the port has received."
825 ::= { swFCPortEntry 18 }
827 swFCPortTooManyRdys OBJECT-TYPE
831 DESCRIPTION "This object counts the number of times when RDYs
832 exceeds the frames received."
833 ::= { swFCPortEntry 19 }
835 swFCPortNoTxCredits OBJECT-TYPE
839 DESCRIPTION "This object counts the number of times when the
840 transmit credit has reached zero."
841 ::= { swFCPortEntry 20 }
843 swFCPortRxEncInFrs OBJECT-TYPE
847 DESCRIPTION "This object counts the number of encoding error or
848 disparity error inside frames received."
849 ::= { swFCPortEntry 21 }
851 swFCPortRxCrcs OBJECT-TYPE
855 DESCRIPTION "This object counts the number of CRC errors
856 detected for frames received."
857 ::= { swFCPortEntry 22 }
859 swFCPortRxTruncs OBJECT-TYPE
863 DESCRIPTION "This object counts the number of truncated
864 frames that the port has received."
865 ::= { swFCPortEntry 23 }
867 swFCPortRxTooLongs OBJECT-TYPE
871 DESCRIPTION "This object counts the number of received frames that
873 ::= { swFCPortEntry 24 }
875 swFCPortRxBadEofs OBJECT-TYPE
879 DESCRIPTION "This object counts the number of received frames that
880 have bad EOF delimiter."
881 ::= { swFCPortEntry 25 }
883 swFCPortRxEncOutFrs OBJECT-TYPE
887 DESCRIPTION "This object counts the number of encoding error or
888 disparity error outside frames received."
889 ::= { swFCPortEntry 26 }
891 swFCPortRxBadOs OBJECT-TYPE
895 DESCRIPTION "This object counts the number of invalid Ordered
897 ::= { swFCPortEntry 27 }
899 swFCPortC3Discards OBJECT-TYPE
903 DESCRIPTION "This object counts the number of Class 3
904 frames that the port has discarded."
905 ::= { swFCPortEntry 28 }
907 swFCPortMcastTimedOuts OBJECT-TYPE
911 DESCRIPTION "This object counts the number of Multicast
912 frames that has been timed out."
913 ::= { swFCPortEntry 29 }
915 swFCPortTxMcasts OBJECT-TYPE
919 DESCRIPTION "This object counts the number of Multicast
920 frames that has been transmitted."
921 ::= { swFCPortEntry 30 }
924 swFCPortLipIns OBJECT-TYPE
928 DESCRIPTION "This object counts the number of Loop Initializations
929 that has been initiated by loop devices attached."
930 ::= { swFCPortEntry 31 }
932 swFCPortLipOuts OBJECT-TYPE
936 DESCRIPTION "This object counts the number of Loop Initializations
937 that has been initiated by the port."
938 ::= { swFCPortEntry 32 }
940 swFCPortLipLastAlpa OBJECT-TYPE
941 SYNTAX OCTET STRING (SIZE(4))
944 DESCRIPTION "This object indicates the Physical Address (AL_PA)
945 of the loop device that initiated the last
946 Loop Initialization."
947 ::= { swFCPortEntry 33 }
950 -- End of Fibre Channel Port group
956 -- The Name Server Database group
959 swNsLocalNumEntry OBJECT-TYPE
963 DESCRIPTION "The number of local Name Server entries."
966 swNsLocalTable OBJECT-TYPE
967 SYNTAX SEQUENCE OF SwNsEntry
968 ACCESS not-accessible
970 DESCRIPTION "The table of local Name Server entries."
973 swNsLocalEntry OBJECT-TYPE
975 ACCESS not-accessible
977 DESCRIPTION "An entry of the local Name Server database."
978 INDEX { swNsEntryIndex }
979 ::= { swNsLocalTable 1 }
981 SwNsEntry ::= SEQUENCE {
982 swNsEntryIndex INTEGER,
983 swNsPortID OCTET STRING(SIZE(4)),
984 swNsPortType INTEGER,
986 swNsPortSymb OCTET STRING,
988 swNsNodeSymb OCTET STRING,
989 swNsIPA OCTET STRING,
990 swNsIpAddress OCTET STRING,
995 swNsEntryIndex OBJECT-TYPE
999 DESCRIPTION "The object identifies the Name Server database entry."
1000 ::= { swNsLocalEntry 1 }
1002 swNsPortID OBJECT-TYPE
1003 SYNTAX OCTET STRING (SIZE(4))
1006 DESCRIPTION "The object identifies the Fibre Channel port address
1008 ::= { swNsLocalEntry 2 }
1010 swNsPortType OBJECT-TYPE
1018 DESCRIPTION "The object identifies the type of port: N_Port,
1019 NL_Port, etc., for this entry. The type is defined in FC-GS-2."
1020 ::= { swNsLocalEntry 3 }
1022 swNsPortName OBJECT-TYPE
1026 DESCRIPTION "The object identifies the Fibre Channel World_wide
1027 Name of the port entry."
1028 ::= { swNsLocalEntry 4 }
1030 swNsPortSymb OBJECT-TYPE
1031 SYNTAX OCTET STRING(SIZE(1..255))
1034 DESCRIPTION "The object identifies the contents of a Symbolic Name
1035 of the port entry. In FC-GS-2, a Symbolic Name consists of
1036 a byte array of 1 through 256 bytes, and the first byte of the
1037 array specifies the length of its 'contents'.
1038 This object variable corresponds to the 'contents' of the
1039 Symbolic Name, without the first byte."
1040 ::= { swNsLocalEntry 5 }
1042 swNsNodeName OBJECT-TYPE
1046 DESCRIPTION "The object identifies the Fibre Channel World_wide
1047 Name of the associated node as defined in FC-GS-2."
1048 ::= { swNsLocalEntry 6 }
1050 swNsNodeSymb OBJECT-TYPE
1051 SYNTAX OCTET STRING (SIZE(1..255))
1054 DESCRIPTION "The object identifies the contents of a Symbolic Name
1055 of the the node associated with the entry. In FC-GS-2,
1056 a Symbolic Name consists of a byte array of 1 through 256
1057 bytes, and the first byte of the array specifies the length
1059 This object variable corresponds to the 'contents' of the
1060 Symbolic Name, without the first byte (specifying the length)."
1061 ::= { swNsLocalEntry 7 }
1064 SYNTAX OCTET STRING (SIZE(8))
1067 DESCRIPTION "The object identifies the Initial Process Associator
1068 of the node for the entry as defined in FC-GS-2."
1069 ::= { swNsLocalEntry 8 }
1071 swNsIpAddress OBJECT-TYPE
1072 SYNTAX OCTET STRING (SIZE(16))
1075 DESCRIPTION "The object identifies the IP address of the node
1076 for the entry as defined in FC-GS-2. The format of the address
1078 ::= { swNsLocalEntry 9 }
1082 -- class-unknown (0),
1098 -- more to enumerate in future.
1102 DESCRIPTION "The object identifies the class of services supported
1103 by the port. The value is a bit-map defined as follows:
1108 o bit 4 is class 4, etc."
1109 ::= { swNsLocalEntry 10 }
1112 SYNTAX OCTET STRING (SIZE (32))
1115 DESCRIPTION "The object identifies the FC-4s supported
1116 by the port as defined in FC-GS-2."
1117 ::= { swNsLocalEntry 11 }
1120 -- End of Fibre Channel Name Server group
1123 -- #######################################################################
1125 -- Event Group - to map the errLog
1128 -- Logically, swEventTable is separate from the error log since it is
1129 -- essentially a view of the error log within a particular time window.
1130 -- The value of swEventIndex shall indicate the event number that has
1131 -- occurred since the switch booted. The value will range from 1 through
1132 -- 2147383647 (2^31 - 1).
1134 -- #######################################################################
1136 swEventTrapLevel OBJECT-TYPE
1147 DESCRIPTION "This object specifies the swEventTrap level in
1148 conjunction with an event's severity level. When an event
1149 occurs and if its severity level is at or below the value
1150 specified by this object instance, the agent will send
1151 the associated swEventTrap to configured recipients."
1154 -- { swEvent 2..3 are reserved }
1156 swEventNumEntries OBJECT-TYPE
1157 SYNTAX INTEGER (1..30)
1160 DESCRIPTION "The number of entries in the Event Table."
1163 swEventTable OBJECT-TYPE
1164 SYNTAX SEQUENCE OF SwEventEntry
1165 ACCESS not-accessible
1167 DESCRIPTION "The table of event entries."
1170 swEventEntry OBJECT-TYPE
1172 ACCESS not-accessible
1174 DESCRIPTION "An entry of the event table."
1175 INDEX { swEventIndex }
1177 ::= { swEventTable 1 }
1179 SwEventEntry ::= SEQUENCE {
1180 swEventIndex INTEGER,
1181 swEventTimeInfo DisplayString,
1182 swEventLevel INTEGER,
1183 swEventRepeatCount INTEGER,
1184 swEventDescr DisplayString
1187 swEventIndex OBJECT-TYPE
1188 SYNTAX INTEGER (1..30)
1191 DESCRIPTION "This object identifies the event entry."
1192 ::= { swEventEntry 1 }
1194 swEventTimeInfo OBJECT-TYPE
1195 SYNTAX DisplayString
1198 DESCRIPTION "This object identifies the date and time when this
1199 event occurred, in textual format."
1200 ::= { swEventEntry 2 }
1202 swEventLevel OBJECT-TYPE
1212 DESCRIPTION "This object identifies the severity level of this
1214 ::= { swEventEntry 3 }
1216 swEventRepeatCount OBJECT-TYPE
1220 DESCRIPTION "This object identifies how many times this particular
1221 event has occurred."
1222 ::= { swEventEntry 4 }
1224 swEventDescr OBJECT-TYPE
1225 SYNTAX DisplayString
1228 DESCRIPTION "This object identifies the textual description of
1230 ::= { swEventEntry 5 }
1233 -- End of Fibre Channel Event Group