summaryrefslogtreecommitdiff
path: root/MIBS/gemds/MDS-SYSTEM-MIB
blob: a605ef80cdd18d12eb149ff298bafb22cc524b0f (plain)
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
MDS-SYSTEM-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, 
    OBJECT-TYPE, 
    Integer32,
    Unsigned32
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION,
    TruthValue,DateAndTime
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, 
    OBJECT-GROUP
        FROM SNMPv2-CONF
    mdsSystem
        FROM MDS-ORBIT-SMI-MIB;

mdsSystemMIB MODULE-IDENTITY
    LAST-UPDATED "201805160000Z" -- May 16, 2018
    ORGANIZATION 
        "GE MDS LLC
        http://www.gemds.com"
    CONTACT-INFO
        "T 1-800-474-0694 (Toll Free in North America)
         T 585-242-9600
         F 585-242-9620

         175 Science Parkway
         Rochester, New York 14620
         USA"
    DESCRIPTION
        "The MIB module to describe the system."
	REVISION      "201911180000Z"
    DESCRIPTION
        "Added boot and current time."
    REVISION      "201805160000Z"
    DESCRIPTION
        "Updated conformance statments based on smilint."
    REVISION      "201402100000Z"
    DESCRIPTION
        "Initial version."
    ::= { mdsSystem 1 }

mSysMIBObjects OBJECT IDENTIFIER
    ::= { mdsSystemMIB 1 }

mSysConfig OBJECT IDENTIFIER
    ::= { mSysMIBObjects 1 }

mSysStatus OBJECT IDENTIFIER
    ::= { mSysMIBObjects 2 }

-- Textual Conventions
FirmwareLocation ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "d"
    STATUS      current
    DESCRIPTION "FirmwareLocation"
    SYNTAX      Unsigned32 (0 .. 255)

-- System Status Objects
mSysSerialNumberCore OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Core board serial number."
    ::= { mSysStatus 1 }

mSysSerialNumberPlatform OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Platform board serial number."
    ::= { mSysStatus 2 }

mSysProductConfiguration OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Product configuration."
    ::= { mSysStatus 3 }

mSysGuid OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "GUID of the unit."
    ::= { mSysStatus 4 }

mSysUptime OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "System uptime (in secs) since bootup."
    ::= { mSysStatus 5 }

mSysTemperature OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "System temperature (in Celsius)."
    ::= { mSysStatus 6 }

mSysFirmwareVersionTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF MSysFirmwareVersionEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table contains status of system firmware."
    ::= { mSysStatus 7 }

mSysPowerSupplyVoltage OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Power Supply Voltage (in VDC)."
    ::= { mSysStatus 9 }

mSysCurrentDateTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Current system date and time."
    ::= { mSysStatus 10 }

mSysBootDateTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "system date and time on boot."
    ::= { mSysStatus 11 }

mSysFirmwareVersionEntry OBJECT-TYPE
    SYNTAX      MSysFirmwareVersionEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "Each entry contains information about the stored firmware image."
    INDEX   { mSysLocation }
    ::= { mSysFirmwareVersionTable 1 }

MSysFirmwareVersionEntry ::=
    SEQUENCE {
        mSysLocation FirmwareLocation,
        mSysVersion OCTET STRING,
        mSysActive TruthValue
    }

mSysLocation OBJECT-TYPE
    SYNTAX      FirmwareLocation
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
            "Firmware location."
    ::= { mSysFirmwareVersionEntry 1 }

mSysVersion OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Firmware version."
    ::= { mSysFirmwareVersionEntry 2 }

mSysActive OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Firmware state."
    ::= { mSysFirmwareVersionEntry 3 }

mSysAutoUpdateState OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Current state of the auto-update daemon."
    ::= { mSysStatus 12 }

mSysAutoUpdateDetails OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Detailed information on auto-update state."
    ::= { mSysStatus 13 }

-- OIDs in the mSysMprStatus subtree only exists on MPR devices.
mSysMprStatus OBJECT IDENTIFIER
    ::= { mSysStatus 8 }

mSysMprHeatsinkTemperature1 OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The current heatsink #1 temperature in degrees Celsius."
    ::= { mSysMprStatus 1 }

mSysMprHeatsinkTemperature2 OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The current heatsink #2 temperature in degrees Celsius."
    ::= { mSysMprStatus 2 }

mSysMprPowerSupplyVoltage1 OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The current output voltage of power supply #1."
    ::= { mSysMprStatus 3 }

mSysMprPowerSupplyVoltage2 OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The current output voltage of power supply #2."
    ::= { mSysMprStatus 4 }

mSysMprRelaySwitchPosition OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The current state of the manual override switch on the relay card."
    ::= { mSysMprStatus 5 }

-- conformance information
mdsSysMIBConformance   OBJECT IDENTIFIER ::= { mdsSystemMIB 3 }
mdsSysMIBCompliances OBJECT IDENTIFIER ::= { mdsSysMIBConformance 1 }
mdsSysMIBGroups      OBJECT IDENTIFIER ::= { mdsSysMIBConformance 2 }

-- compliance statements
mSysCompliance MODULE-COMPLIANCE
    STATUS  current
    DESCRIPTION
            "The compliance statement for SNMP entities that 
            implement the MDS-SYSTEM-MIB."
    MODULE  -- this module
        MANDATORY-GROUPS {
            mSysStatusGroup
        }
        GROUP  mSysMprStatusGroup
        DESCRIPTION
            "This group is for SNMP entities that
            support Orbit MPR status."

    ::= { mdsSysMIBCompliances 1 }

-- units of conformance
mSysStatusGroup OBJECT-GROUP
    OBJECTS {
        mSysSerialNumberCore,
        mSysSerialNumberPlatform,
        mSysProductConfiguration,
        mSysGuid,
        mSysUptime,
        mSysTemperature,
        mSysPowerSupplyVoltage,
        mSysLocation,
        mSysVersion,
        mSysActive
    }
    STATUS  current
    DESCRIPTION
        "A collection of objects providing information about
        Orbit system status."
    ::= { mdsSysMIBGroups 1 }

mSysMprStatusGroup OBJECT-GROUP
    OBJECTS {
        mSysMprHeatsinkTemperature1,
        mSysMprHeatsinkTemperature2,
        mSysMprPowerSupplyVoltage1,
        mSysMprPowerSupplyVoltage2,
        mSysMprRelaySwitchPosition
    }
    STATUS  current
    DESCRIPTION
        "A collection of objects providing information about
        Orbit MPR system status."
    ::= { mdsSysMIBGroups 2 }

END