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
|
-- ********************************************************************
DEVICE DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-GROUP
FROM SNMPv2-CONF
enterprises, IpAddress,Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue, MacAddress
FROM SNMPv2-TC;
--
-- Node definitions
--
-- The Enterprises Number
peplink OBJECT IDENTIFIER ::= { enterprises 23695 }
productMib OBJECT IDENTIFIER ::= { peplink 200 }
generalMib OBJECT IDENTIFIER ::= { productMib 1 }
deviceMib OBJECT IDENTIFIER ::= { generalMib 1 }
-- ********************************************************************
-- * MODULE IDENTITY
-- ********************************************************************
deviceInfo MODULE-IDENTITY
LAST-UPDATED "201711150000Z" -- 11 15, 2017 at 12:00 GMT
ORGANIZATION
"PEPLINK"
CONTACT-INFO
""
DESCRIPTION
"MIB module for device."
::= { deviceMib 1 }
-- #####################################################################
--
-- **********************************************************************
-- * MIB attribute OBJECT-TYPE definitions follow
-- **********************************************************************
deviceInfoSystem OBJECT IDENTIFIER ::= { deviceInfo 1 }
deviceModel OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device model."
::= { deviceInfoSystem 1 }
deviceSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device serial number."
::= { deviceInfoSystem 2 }
deviceFirmwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device firmware version."
::= { deviceInfoSystem 3 }
deviceInfoTime OBJECT IDENTIFIER ::= { deviceInfo 2 }
deviceSystemTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device system time."
::= { deviceInfoTime 1 }
deviceSystemUpTime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device up time."
::= { deviceInfoTime 2 }
deviceInfoUsage OBJECT IDENTIFIER ::= { deviceInfo 3 }
deviceCpuLoad OBJECT-TYPE
SYNTAX INTEGER(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device CPU Load, in hundredths of a percent."
::= { deviceInfoUsage 1 }
deviceTotalMemory OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device total memory (units KB)."
::= { deviceInfoUsage 2 }
deviceMemoryUsage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device memory usage (units KB)."
::= { deviceInfoUsage 3 }
deviceInfoHardware OBJECT IDENTIFIER ::= { deviceInfo 4 }
devicePSUTable OBJECT-TYPE
SYNTAX SEQUENCE OF DevicePSUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Device Power Supply Unit Table."
::= { deviceInfoHardware 1 }
devicePSUEntry OBJECT-TYPE
SYNTAX DevicePSUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the devicePSUTable."
INDEX { devicePSUId }
::= { devicePSUTable 1 }
DevicePSUEntry ::=
SEQUENCE {
devicePSUId
Integer32,
devicePSUStatus
INTEGER,
deviceCurrentPower
Integer32,
deviceMaxPower
Integer32,
devicePSUPercentage
Integer32
}
devicePSUId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device power consumption ID."
::= { devicePSUEntry 1 }
devicePSUStatus OBJECT-TYPE
SYNTAX INTEGER {
error(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device power consumption status."
::= { devicePSUEntry 2 }
deviceCurrentPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device current power(W)."
::= { devicePSUEntry 3 }
deviceMaxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device max power(W)."
::= { devicePSUEntry 4 }
devicePSUPercentage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device power consumption, in hundredths of a percent."
::= { devicePSUEntry 5 }
deviceFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF DeviceFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Device fan Table."
::= { deviceInfoHardware 2 }
deviceFanEntry OBJECT-TYPE
SYNTAX DeviceFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the deviceFanTable."
INDEX { deviceFanId }
::= { deviceFanTable 1 }
DeviceFanEntry ::=
SEQUENCE {
deviceFanId
Integer32,
deviceFanStatus
INTEGER,
deviceFanSpeed
Integer32
}
deviceFanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device fan ID."
::= { deviceFanEntry 1 }
deviceFanStatus OBJECT-TYPE
SYNTAX INTEGER {
error(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device fan status."
::= { deviceFanEntry 2 }
deviceFanSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device fan speed(RPM)."
::= { deviceFanEntry 3 }
devicePowerSourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF DevicePowerSourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Power source Table."
::= { deviceInfoHardware 3 }
devicePowerSourceEntry OBJECT-TYPE
SYNTAX DevicePowerSourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the devicePowerSourceTable."
INDEX { devicePowerSourceId }
::= { devicePowerSourceTable 1 }
DevicePowerSourceEntry ::=
SEQUENCE {
devicePowerSourceId
Integer32,
devicePowerSourceName
OCTET STRING,
devicePowerSourceStatus
INTEGER
}
devicePowerSourceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power source ID."
::= { devicePowerSourceEntry 1 }
devicePowerSourceName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power source name."
::= { devicePowerSourceEntry 2 }
devicePowerSourceStatus OBJECT-TYPE
SYNTAX INTEGER {
noCableDetected(0),
connected(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power source status."
::= { devicePowerSourceEntry 3 }
deviceInfoTemperature OBJECT IDENTIFIER ::= { deviceInfoHardware 4 }
deviceTemperatureCelsius OBJECT-TYPE
SYNTAX Gauge32
UNITS "mC"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System temperature in mC."
::= { deviceInfoTemperature 1 }
deviceTemperatureFahrenheit OBJECT-TYPE
SYNTAX Gauge32
UNITS "mF"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System temperature in mF."
::= { deviceInfoTemperature 2 }
END
|