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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
|
-- *****************************************************************
-- UBIQUOSS-10GEPON-SOFTWARE-MANAGEMENT-GROUP-MIB.my
--
-- Jul. 2013, Hangil Won
--
-- Copyright (c) 2006 by Ubiquoss, Corp.
-- All rights reserved.
--
-- *****************************************************************
UBIQUOSS-10GEPON-SOFTWARE-MANAGEMENT-GROUP-MIB DEFINITIONS ::= BEGIN
IMPORTS
ifIndex
FROM RFC1213-MIB
IpAddress, Integer32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
MacAddress, DisplayString
FROM SNMPv2-TC
ubi10GEponGroupMIB
FROM UBQS-SMI
ubiPortIndex
FROM UBQS-INTERFACE-MIB;
ubi10gSoftwareMIB MODULE-IDENTITY
LAST-UPDATED "201601072200Z"
ORGANIZATION
"Ubiquoss Inc."
CONTACT-INFO
"Chair : Hangil Won
Ubiquoss Inc.
Postal: : 8F Ubiquoss B/D, 68, Pangyo-ro
255beon-gil, Bundang-gu, Seongnam-si,
Gyeonggi-do, 463-400, Republic of Korea
EMail: : hg88pro@ubiquoss.com"
DESCRIPTION
"This MIB module defines epon software management information"
::= { ubi10GEponGroupMIB 6 }
--
-- Node definitions
--
ubi10gSoftwareMIBObjects OBJECT IDENTIFIER ::= { ubi10gSoftwareMIB 1 }
-- ***********************************************************
-- oltSoftwareInfoTable
-- ***********************************************************
olt10gSoftwareInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Olt10gSoftwareInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"10g Olt software download"
::= { ubi10gSoftwareMIBObjects 1 }
olt10gSoftwareInfoEntry OBJECT-TYPE
SYNTAX Olt10gSoftwareInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ubiPortIndex }
::= { olt10gSoftwareInfoTable 1 }
Olt10gSoftwareInfoEntry ::=
SEQUENCE {
olt10gSwVersion
DisplayString,
olt10gHwVersion
DisplayString
}
olt10gSwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Olt software version number (xx.xx.xx)"
::= { olt10gSoftwareInfoEntry 1 }
olt10gHwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Olt Hardware version number"
::= { olt10gSoftwareInfoEntry 2 }
-- ***********************************************************
-- onu10gSoftwareInfoTable
-- ***********************************************************
onu10gSoftwareInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Onu10gSoftwareInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubi10gSoftwareMIBObjects 2 }
onu10gSoftwareInfoEntry OBJECT-TYPE
SYNTAX Onu10gSoftwareInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ubiPortIndex, onu10gId }
::= { onu10gSoftwareInfoTable 1 }
Onu10gSoftwareInfoEntry ::=
SEQUENCE {
onu10gSwVersion
DisplayString,
onu10gHwVersion
DisplayString
}
onu10gSwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Onu software version number (xx.xx.xx)"
::= { onu10gSoftwareInfoEntry 1 }
onu10gHwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Onu Hardware version number"
::= { onu10gSoftwareInfoEntry 2 }
-- ***********************************************************
-- softwareGroup
-- ***********************************************************
reset10gOltId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"reset Olt Id"
::= { ubi10gSoftwareMIBObjects 3 }
reset10gOnuId OBJECT-TYPE
SYNTAX Integer32 (0..64)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"reset Onu Id"
::= { ubi10gSoftwareMIBObjects 4 }
reset10gOp OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
reset(1),
resetWithInit(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"reset Operation"
::= { ubi10gSoftwareMIBObjects 5 }
reset10gMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"reset Mac addr"
::= { ubi10gSoftwareMIBObjects 6 }
reset10gMacOltId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"reset Mac addr"
::= { ubi10gSoftwareMIBObjects 7 }
reset10gMacOp OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
reset(1),
resetWithInit(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"reset Mac Operation"
::= { ubi10gSoftwareMIBObjects 8 }
reset10gBoard OBJECT-TYPE
SYNTAX Integer32(1..12)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"10G pon board-reset
1~12 : Slot Id"
::= { ubi10gSoftwareMIBObjects 11 }
-- ***********************************************************
-- SoftwareDownloadTable
-- ***********************************************************
softwareDownload10g OBJECT IDENTIFIER ::= { ubi10gSoftwareMIBObjects 9 }
softwareDownload10gOltId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Olt ID"
::= { softwareDownload10g 1 }
softwareDownload10gOnuId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Onu ID"
::= { softwareDownload10g 2 }
softwareDownload10gHostIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"file server IP address (xxx.xxx.xxx.xxx)"
::= { softwareDownload10g 3 }
softwareDownload10gFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"software image file name to be downloaded"
::= { softwareDownload10g 4 }
softwareDownload10gOption OBJECT-TYPE
SYNTAX INTEGER
{
forced(1),
checkVersion(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"software image file name to be downloaded"
::= { softwareDownload10g 5 }
softwareDownload10gOp OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
operate(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { softwareDownload10g 6 }
-- ***********************************************************
-- onuAutoDownload10gGroup
-- ***********************************************************
onuAutoDownload10g OBJECT IDENTIFIER ::= { ubi10gSoftwareMIBObjects 10 }
onu10gSoftwareTable OBJECT-TYPE
SYNTAX SEQUENCE OF Onu10gSoftwareEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ONU firmware image table"
::= { onuAutoDownload10g 1 }
onu10gSoftwareEntry OBJECT-TYPE
SYNTAX Onu10gSoftwareEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { onu10gSoftwareId }
::= { onu10gSoftwareTable 1 }
Onu10gSoftwareEntry ::=
SEQUENCE {
onu10gSoftwareId
INTEGER,
onu10gSoftwareFileName
DisplayString
}
onu10gSoftwareId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ONU software image file number"
::= { onu10gSoftwareEntry 1 }
onu10gSoftwareFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ONU software image file name"
::= { onu10gSoftwareEntry 2 }
onuDownload10g OBJECT IDENTIFIER ::= { onuAutoDownload10g 2 }
onuDownload10gHostIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"file server IP address (xxx.xxx.xxx.xxx)"
::= { onuDownload10g 1 }
onuDownload10gFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"software image file name to be downloaded"
::= { onuDownload10g 2 }
onuDownload10gAction OBJECT-TYPE
SYNTAX INTEGER
{
noAction(0),
add(1),
remove(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To set value with run(1) will start download"
::= { onuDownload10g 3 }
onuDownload10gActionOp OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
operate(1),
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { onuDownload10g 4 }
onuDownload10gStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuDownload10gStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ONU firmware image table"
::= { onuAutoDownload10g 3 }
onuDownload10gStatusEntry OBJECT-TYPE
SYNTAX OnuDownload10gStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ifIndex }
::= { onuDownload10gStatusTable 1 }
OnuDownload10gStatusEntry ::=
SEQUENCE {
onuDownload10gStatusMask
OCTET STRING
}
onuDownload10gStatusMask OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ONU download status bitmask.
32 of ONUs x 8 bit for each ONU = 256 bits (32 bytes)
0x00~0x7F : 'onuSoftwareId' on download complete
0x80 : wait to download
0x81 : unavailable entity
0x82 : fail to download
0x83 : no image
0x84 : already up-to-date version
"
::= { onuDownload10gStatusEntry 1 }
-- onuVersionComparison OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- disable(0),
-- enable(1)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "set auto-download version-comparison flag"
-- ::= { onuAutoDownload 4 }
onu10gResetOption OBJECT-TYPE
SYNTAX INTEGER
{
automatic(1),
manual(2),
automatic_with_time(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ONU reset method after auto-download
Auto-reset with time(3) : Set Only"
::= { onuAutoDownload10g 4 }
onuAutoDownload10gStatus OBJECT-TYPE
SYNTAX INTEGER
{
start(1),
stop(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ONU auto-download status"
::= { onuAutoDownload10g 5 }
onuAutoDownload10gResetTime OBJECT-TYPE
SYNTAX Integer32(0..23)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ONU auto-download auto-reset time
Unit : time of day
255 : Auto-reset immediately,
manual-reset,
or auto-download stopped."
::= { onuAutoDownload10g 6 }
-- ***********************************************************
-- ubiSoftwareMIBNotificationPrefix
-- ***********************************************************
-- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications
-- that are backward compatible with SNMPv1 Traps.
ubiSoftwareMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiSoftwareMIB 2 }
ubiSoftwareMIBNotifications OBJECT IDENTIFIER ::= { ubiSoftwareMIBNotificationPrefix 0 }
ubiEponOltImageUpgradeNotification NOTIFICATION-TYPE
OBJECTS {
ubiAlarmIndex,
ubiAlarmId,
ubiAlarmType,
ubiAlarmSeverity,
ubiAlarmPhysicalLoc,
ubiAlarmLogicalLoc,
ubiAlarmCurStatus,
ubiAlarmAuxinfo,
ubiAlarmDateTime,
ubiAlarmStatus
}
STATUS current
DESCRIPTION
"olt upgrade notification"
::= { ubiSoftwareMIBNotifications 1 }
ubiEponOltImageUpgradeFailNotification NOTIFICATION-TYPE
OBJECTS {
ubiAlarmIndex,
ubiAlarmId,
ubiAlarmType,
ubiAlarmSeverity,
ubiAlarmPhysicalLoc,
ubiAlarmLogicalLoc,
ubiAlarmCurStatus,
ubiAlarmAuxinfo,
ubiAlarmDateTime,
ubiAlarmStatus
}
STATUS current
DESCRIPTION
"olt upgrade notification"
::= { ubiSoftwareMIBNotifications 2 }
ubiEponOnuImageUpgradeNotification NOTIFICATION-TYPE
OBJECTS {
ubiAlarmIndex,
ubiAlarmId,
ubiAlarmType,
ubiAlarmSeverity,
ubiAlarmPhysicalLoc,
ubiAlarmLogicalLoc,
ubiAlarmCurStatus,
ubiAlarmAuxinfo,
ubiAlarmDateTime,
ubiAlarmStatus
}
STATUS current
DESCRIPTION
"onu upgrade notification"
::= { ubiSoftwareMIBNotifications 3 }
ubiEponOnuImageUpgradeFailNotification NOTIFICATION-TYPE
OBJECTS {
ubiAlarmIndex,
ubiAlarmId,
ubiAlarmType,
ubiAlarmSeverity,
ubiAlarmPhysicalLoc,
ubiAlarmLogicalLoc,
ubiAlarmCurStatus,
ubiAlarmAuxinfo,
ubiAlarmDateTime,
ubiAlarmStatus
}
STATUS current
DESCRIPTION
"onu upgrade notification"
::= { ubiSoftwareMIBNotifications 4 }
END
--
-- UBIQUOSS-10GEPON-SOFTWARE-MANAGEMENT-GROUP-MIB.mib
--
|