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
|
-- *****************************
-- * *
-- * ONEOS MIB *
-- * *
-- *****************************
--
-- ONEOS_MIB_STD_V05.2.R001_E002
--
-- Creation date : 16/04/2009
--
-- Compatibility with ONEOS_V31
--
-- Compatibility with ONEOS_V32
--
-- Compatibility with ONEOS_V42
--
ONEACCESS-CELLULAR-MIB DEFINITIONS ::= BEGIN
--------------------------------------------------------------------
-- Imports
--------------------------------------------------------------------
IMPORTS
DisplayString
FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE,Integer32,Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
oacExpIMCellRadio,oacMIBModules
FROM ONEACCESS-GLOBAL-REG;
--------------------------------------------------------------------
-- Module Entity
--------------------------------------------------------------------
oacCellularMIBModule MODULE-IDENTITY
LAST-UPDATED "201310150000Z"
ORGANIZATION " OneAccess "
CONTACT-INFO
"Pascal KESTELOOT
Postal: ONE ACCESS
381 Avenue du General de Gaulle
92140 Clamart, France
FRANCE
Tel: (+33) 01 41 87 70 00
Fax: (+33) 01 41 87 74 00
E-mail: pascal.kesteloot@oneaccess-net.com"
DESCRIPTION "Add cellular equipment and network info"
REVISION "201404070000Z"
DESCRIPTION "Add RSSI table"
REVISION "201310150000Z"
DESCRIPTION "Contact updated"
REVISION "201110270000Z"
DESCRIPTION "Fixed some minor corrections."
REVISION "201007080001Z"
DESCRIPTION "This MIB module describes Cellular Radio Managed objects."
::= { oacMIBModules 1000 }
--------------------------------------------------------------------
-- Entry Point (cf. ONEACCESS-GLOBAL-REG.mib)
--------------------------------------------------------------------
oacCellRadioRssi OBJECT IDENTIFIER ::= { oacExpIMCellRadio 1 }
-------------------------------------------------------------------------------------------
-- RSSI Last Hour Table
-------------------------------------------------------------------------------------------
oacCellRssiLastHourTable OBJECT-TYPE
SYNTAX SEQUENCE OF OacCellRssiLastHourEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RSSI values of the last hour."
::= { oacCellRadioRssi 1 }
oacCellRssiLastHourEntry OBJECT-TYPE
SYNTAX OacCellRssiLastHourEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index into the table oacCellRssiLastHour"
INDEX { oacCellRssiLastHourMinutes }
::= { oacCellRssiLastHourTable 1 }
OacCellRssiLastHourEntrySyntax ::= SEQUENCE
{
oacCellRssiLastHourMinutes Unsigned32,
oacCellRssiLastHourMin Integer32,
oacCellRssiLastHourAvg Integer32,
oacCellRssiLastHourMax Integer32
}
oacCellRssiLastHourMinutes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp (in minutes)"
::= { oacCellRssiLastHourEntry 1 }
oacCellRssiLastHourMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Minimum"
::= { oacCellRssiLastHourEntry 2 }
oacCellRssiLastHourAvg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Average"
::= { oacCellRssiLastHourEntry 3 }
oacCellRssiLastHourMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Maximum"
::= { oacCellRssiLastHourEntry 4 }
-------------------------------------------------------------------------------------------
-- RSSI Last Day Table
-------------------------------------------------------------------------------------------
oacCellRssiLastDayTable OBJECT-TYPE
SYNTAX SEQUENCE OF OacCellRssiLastDayEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RSSI values of the last day."
::= { oacCellRadioRssi 2 }
oacCellRssiLastDayEntry OBJECT-TYPE
SYNTAX OacCellRssiLastDayEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index into the table oacCellRssiLastDay"
INDEX { oacCellRssiLastDayHours }
::= { oacCellRssiLastDayTable 1 }
OacCellRssiLastDayEntrySyntax ::= SEQUENCE
{
oacCellRssiLastDayHours Unsigned32,
oacCellRssiLastDayMin Integer32,
oacCellRssiLastDayAvg Integer32,
oacCellRssiLastDayMax Integer32
}
oacCellRssiLastDayHours OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp (in hours)"
::= { oacCellRssiLastDayEntry 1 }
oacCellRssiLastDayMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Minimum"
::= { oacCellRssiLastDayEntry 2 }
oacCellRssiLastDayAvg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Average"
::= { oacCellRssiLastDayEntry 3 }
oacCellRssiLastDayMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Maximum"
::= { oacCellRssiLastDayEntry 4 }
-------------------------------------------------------------------------------------------
-- RSSI Last Month Table
-------------------------------------------------------------------------------------------
oacCellRssiLastMonthTable OBJECT-TYPE
SYNTAX SEQUENCE OF OacCellRssiLastMonthEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"RSSI values of the last month."
::= { oacCellRadioRssi 3 }
oacCellRssiLastMonthEntry OBJECT-TYPE
SYNTAX OacCellRssiLastMonthEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index into the table oacCellRssiLastMonth"
INDEX { oacCellRssiLastMonthDays }
::= { oacCellRssiLastMonthTable 1 }
OacCellRssiLastMonthEntrySyntax ::= SEQUENCE
{
oacCellRssiLastMonthDays Unsigned32,
oacCellRssiLastMonthMin Integer32,
oacCellRssiLastMonthAvg Integer32,
oacCellRssiLastMonthMax Integer32
}
oacCellRssiLastMonthDays OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp (in days)"
::= { oacCellRssiLastMonthEntry 1 }
oacCellRssiLastMonthMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Minimum"
::= { oacCellRssiLastMonthEntry 2 }
oacCellRssiLastMonthAvg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Average"
::= { oacCellRssiLastMonthEntry 3 }
oacCellRssiLastMonthMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSSI Maximum"
::= { oacCellRssiLastMonthEntry 4 }
-------------------------------------------------------------------------------------------
-- ModuleTable
-------------------------------------------------------------------------------------------
oacCellRadioModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF OacCellRadioModuleEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of cellular modules."
::= { oacExpIMCellRadio 2 }
oacCellRadioModuleEntry OBJECT-TYPE
SYNTAX OacCellRadioModuleEntrySyntax
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index into the table oacCellRadioModule"
INDEX { oacCellModuleIndex }
::= { oacCellRadioModuleTable 1 }
OacCellRadioModuleEntrySyntax ::= SEQUENCE
{
oacCellModuleIndex Unsigned32,
oacCellManufacturer DisplayString,
oacCellEquipment DisplayString,
oacCellBootRevision DisplayString,
oacCellRevision DisplayString,
oacCellIMEI DisplayString,
oacCellMEID DisplayString,
oacCellSIMStatus DisplayString,
oacCellIMSI DisplayString,
oacCellICCI DisplayString,
oacCellPinStatus DisplayString,
oacCellSelectedOperator DisplayString,
oacCellSignalStrength Integer32,
oacCellEcIo Integer32,
oacCellRSRQ Integer32,
oacCellRSRP Integer32,
oacCellSNR Integer32,
oacCellRadioAccessTechnology DisplayString,
oacCellCircuitSwitchedState DisplayString,
oacCellPacketSwitchedState DisplayString,
oacCellResetOnLossOfRegistration Unsigned32,
oacCellResetOnFailedRegistration Unsigned32,
oacCellHardwareReset Unsigned32,
oacCellLAC DisplayString,
oacCellCellID DisplayString,
oacCellTAC DisplayString,
oacCellPLMN DisplayString
}
oacCellModuleIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index"
::= { oacCellRadioModuleEntry 1 }
oacCellManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Manufacturer identification"
::= { oacCellRadioModuleEntry 10 }
oacCellEquipment OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Equipment information"
::= { oacCellRadioModuleEntry 11 }
oacCellBootRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Boot revision identification"
::= { oacCellRadioModuleEntry 12 }
oacCellRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Revision identification"
::= { oacCellRadioModuleEntry 13 }
oacCellIMEI OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Equipment information (IMEI)"
::= { oacCellRadioModuleEntry 14 }
oacCellMEID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CDMA Mobile Equipment Id (MEID)"
::= { oacCellRadioModuleEntry 15 }
oacCellSIMStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SIM card status"
::= { oacCellRadioModuleEntry 20 }
oacCellIMSI OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SIM International Mobile Subscriber Identity IMSI"
::= { oacCellRadioModuleEntry 21 }
oacCellICCI OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Integrated Circuit Card ID"
::= { oacCellRadioModuleEntry 22 }
oacCellPinStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PIN code status"
::= { oacCellRadioModuleEntry 30 }
oacCellSelectedOperator OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current selected operator"
::= { oacCellRadioModuleEntry 40 }
oacCellSignalStrength OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal strength (dBm)"
::= { oacCellRadioModuleEntry 41 }
oacCellEcIo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Ec/Io"
::= { oacCellRadioModuleEntry 42 }
oacCellRSRQ OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSRQ (dB)"
::= { oacCellRadioModuleEntry 43 }
oacCellRSRP OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RSRP (dBm)"
::= { oacCellRadioModuleEntry 44 }
oacCellSNR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SNR (dB)"
::= { oacCellRadioModuleEntry 45 }
oacCellRadioAccessTechnology OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current radio access technology"
::= { oacCellRadioModuleEntry 46 }
oacCellCircuitSwitchedState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Circuit-switched register state"
::= { oacCellRadioModuleEntry 47 }
oacCellPacketSwitchedState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet-switched attach state"
::= { oacCellRadioModuleEntry 48 }
oacCellResetOnLossOfRegistration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reset on loss of GPRS registration"
::= { oacCellRadioModuleEntry 60 }
oacCellResetOnFailedRegistration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reset on failed initial registration"
::= { oacCellRadioModuleEntry 61 }
oacCellHardwareReset OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware reset of modem"
::= { oacCellRadioModuleEntry 62 }
oacCellLAC OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Location Area Code (LAC)"
::= { oacCellRadioModuleEntry 70 }
oacCellCellID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Cell ID"
::= { oacCellRadioModuleEntry 71 }
oacCellTAC OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tracking Area Code (TAC)"
::= { oacCellRadioModuleEntry 72 }
oacCellPLMN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Public Land Mobile Network (PLMN = MCC+MNC)"
::= { oacCellRadioModuleEntry 73 }
END
--
|