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
|
--
-- Title: Fibre Channel Switch MIB.
--
FA-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC
Integer32, OBJECT-TYPE, OBJECT-IDENTITY,
MODULE-IDENTITY
FROM SNMPv2-SMI
sw
FROM SW-MIB
connUnitPortEntry
FROM FCMGMT-MIB;
faExt MODULE-IDENTITY
LAST-UPDATED "200807291830Z"
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: support@Brocade.COM
WEB: www.brocade.com"
DESCRIPTION "The MIB module is Extension for FA-MIB.
Copyright (c) 1996-2003 Brocade Communications Systems, Inc.
All rights reserved."
::= { sw 28 }
swSfpStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwSfpStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This represents the diagnostic stats of SFPs."
::= { faExt 1 }
swSfpStatEntry OBJECT-TYPE
SYNTAX SwSfpStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This represents the diagnostic stats of SFPs"
AUGMENTS {connUnitPortEntry}
::= { swSfpStatTable 1 }
SwSfpStatEntry ::= SEQUENCE {
swSfpTemperature OCTET STRING,
swSfpVoltage OCTET STRING,
swSfpCurrent OCTET STRING,
swSfpRxPower OCTET STRING,
swSfpTxPower OCTET STRING,
swSfpPoweronHrs Integer32,
swSfpOUI OCTET STRING,
swSfpUnitId Integer32
}
swSfpTemperature OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
UNITS "centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the temperature of SFP"
::= { swSfpStatEntry 1 }
swSfpVoltage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
UNITS "milli voltage"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the voltage of SFP."
::= { swSfpStatEntry 2 }
swSfpCurrent OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
UNITS "milli amphere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the current of SFP."
::= { swSfpStatEntry 3 }
swSfpRxPower OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the Rx power consumption of SFP."
::= { swSfpStatEntry 4 }
swSfpTxPower OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the Tx power consumption of SFP."
::= { swSfpStatEntry 5 }
swSfpPoweronHrs OBJECT-TYPE
SYNTAX Integer32
UNITS "hours"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies the power on hours of SFP.
This is applicable only to 16G SFPs."
::= { swSfpStatEntry 6 }
swSfpOUI OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object represents the OUI of the SFP"
::= { swSfpStatEntry 7 }
swSfpUnitId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object identifies unit ID of SFP.
This is applicable only to QSFP."
::= { swSfpStatEntry 8 }
END
|