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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
|
-- *****************************************************************
-- UBQS-SYSTEM-MIB: Ubiquoss System MIB file
--
-- June 2009, Hyung Eun Park
--
-- Copyright (c) 2009 by Ubiquoss, Corp.
-- All rights reserved.
--
-- *****************************************************************
--
UBQS-SYSTEM-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString, PhysAddress
FROM SNMPv2-TC
ubiMgmtv2
FROM UBQS-SMI;
ubiSystemMIB MODULE-IDENTITY
LAST-UPDATED "200906170000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
" Ubiquoss
Customer Service
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
Tel: 82-2-2190-3100"
DESCRIPTION
"The UBQS-SYSTEM-MIB is used to get
the system information."
REVISION "201012170000Z"
DESCRIPTION
"Add system clock table"
::= { ubiMgmtv2 1 }
-- ***********************************************************
-- Textual Conventions
-- ***********************************************************
-- ***************************************************************
-- ubiSystemMIB
-- ***************************************************************
ubiSystemMIBObjects OBJECT IDENTIFIER ::= { ubiSystemMIB 1 }
ubiSystemMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiSystemMIB 2 }
ubiSystemMIBConformance OBJECT IDENTIFIER ::= { ubiSystemMIB 3 }
ubiSysInfo OBJECT IDENTIFIER ::= { ubiSystemMIBObjects 2 }
ubiSysRedundancy OBJECT IDENTIFIER ::= { ubiSystemMIBObjects 7 }
ubiSysTimeZone OBJECT IDENTIFIER ::= { ubiSysInfo 8 }
ubiSysBanner OBJECT IDENTIFIER ::= { ubiSysInfo 9 }
-- OID 3, 4, and 5 is resered by UBQS-SYSRSC-MIB
ubiSysLedTest OBJECT IDENTIFIER ::= { ubiSystemMIBObjects 6 }
ubiSysBarCode OBJECT IDENTIFIER ::= { ubiSystemMIBObjects 8 }
-- ***********************************************************
-- ubiSysReset
-- ***********************************************************
ubiSysReset OBJECT-TYPE
SYNTAX INTEGER
{
reset(1) -- resetting the system
}
MAX-ACCESS write-only
STATUS mandatory
DESCRIPTION "Reset the system."
::= { ubiSystemMIBObjects 1 }
-- ***********************************************************
-- ubiSystemInfo
-- ***********************************************************
ubiSysModel OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION "The object identifier for the manufacturer model."
::= { ubiSysInfo 1 }
ubiHwVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hardware version of the system."
::= { ubiSysInfo 2 }
ubiSwVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Software version of the system."
::= { ubiSysInfo 3 }
ubiReleaseDate OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The date of release for system OS."
::= { ubiSysInfo 4 }
ubiSerialNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Serial number of the system."
::= { ubiSysInfo 5 }
ubiSysPhysAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"System mac address"
::= { ubiSysInfo 6 }
ubiSysClock OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Current local time of the system.
Clock SET:
HH:MM:SS - Current Time
<1-31> - Day of the month
MONTH - Month of the year (First three letters of the month)
<1993-2035> - Year
SET Example
13:10:00 3 Jan 2010
"
::= { ubiSysInfo 7 }
ubiShelfPhysAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"System shelf mac address."
::= { ubiSysInfo 10 }
ubiBspVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"System Bsp Versoin."
::= { ubiSysInfo 11 }
ubiSysResetReason OBJECT-TYPE
SYNTAX DisplayString
ACCESS accessible-for-notify
STATUS mandatory
DESCRIPTION
"System Reset Reason."
::= { ubiSysInfo 12 }
-- ***********************************************************
-- ubiSysTimeZone
-- ***********************************************************
ubiSysTimeZoneName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "System timezone name."
::= { ubiSysTimeZone 1 }
ubiSysTimeZoneOffset OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"System timezone offset(Hours:Minutes)."
::= { ubiSysTimeZone 2 }
-- ***********************************************************
-- ubiSysBanner
-- ***********************************************************
ubiSysBannerLogin OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"null string -> no banner login
'default' -> banner login default
STRING -> banner login WORD"
::= { ubiSysBanner 1 }
ubiSysBannerMotd OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"null string -> no banner motd
'default' -> banner motd default
STRING -> banner motd WORD"
::= { ubiSysBanner 2 }
-- *****************************************************************
-- ubiSysRedundancyInfo
-- *****************************************************************
ubiSysRedundancyInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysRedundancyInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of redundancy information"
::= { ubiSysRedundancy 1 }
ubiSysRedundancyInfoEntry OBJECT-TYPE
SYNTAX UbiSysRedundancyInfoEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of redundancy information"
INDEX { ubiSCURedundancyRole }
::= { ubiSysRedundancyInfoTable 1 }
UbiSysRedundancyInfoEntry ::= SEQUENCE {
ubiSCURedundancyRole INTEGER,
ubiSCUPosition INTEGER,
ubiSCUMngLinkStatus INTEGER,
ubiSCUIpAddress IpAddress,
ubiSCUPeerEquipStatus INTEGER
}
ubiSCURedundancyRole OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
standby(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"SCU role"
::= { ubiSysRedundancyInfoEntry 1 }
ubiSCUPosition OBJECT-TYPE
SYNTAX INTEGER
{
left(1),
right(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"SCU postion"
::= { ubiSysRedundancyInfoEntry 2 }
ubiSCUMngLinkStatus OBJECT-TYPE
SYNTAX INTEGER
{
down(0),
up(1)
}
ACCESS read-only
STATUS current
DESCRIPTION
"mng port status of SCU"
::= { ubiSysRedundancyInfoEntry 3 }
ubiSCUIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS current
DESCRIPTION
"IP address of SCU"
::= { ubiSysRedundancyInfoEntry 4 }
ubiSCUPeerEquipStatus OBJECT-TYPE
SYNTAX INTEGER
{
unequip(0),
equip(1)
}
ACCESS read-only
STATUS current
DESCRIPTION
"Peer Equip status of SCU"
::= { ubiSysRedundancyInfoEntry 5 }
-- ubiSysRedundancyReload
ubiSysRedundancyReload OBJECT-TYPE
SYNTAX INTEGER
{
reload_peer(1),
reload_shelf(2)
}
ACCESS write-only
STATUS current
DESCRIPTION
"Reload Active and/or Standby"
::= { ubiSysRedundancy 2 }
-- ubiSysRedundancyPeerImage
ubiSysRedundancyPeerImage OBJECT-TYPE
SYNTAX DisplayString
ACCESS write-only
STATUS current
DESCRIPTION
"Peer boot image"
::= { ubiSysRedundancy 3 }
-- ***********************************************************
-- ubiSysTest
-- ***********************************************************
ubiLedTestTimeout OBJECT-TYPE
SYNTAX Integer32(1..300)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout to terminate the LED Test.
If the timeout is zero, that is set to default."
DEFVAL { 20 }
::= { ubiSysLedTest 1 }
ubiLedTestTrigger OBJECT-TYPE
SYNTAX INTEGER {
none(0),
testing(1),
stop(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Trigger and stop the LED Test."
::= { ubiSysLedTest 2 }
ubiLedTestSlotId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LED test Slot id"
::= { ubiSysLedTest 3 }
-- *****************************************************************
-- ubiSysBarCode
-- *****************************************************************
ubiSysBarcodeSystem OBJECT IDENTIFIER ::= { ubiSysBarCode 1 }
ubiSysBarcodeSystemString OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The textual barcode of system."
::= { ubiSysBarcodeSystem 1 }
ubiSysBarcodePowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysBarcodePowerEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information
for power barcode."
::= { ubiSysBarCode 2 }
ubiSysBarcodePowerEntry OBJECT-TYPE
SYNTAX UbiSysBarcodePowerEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Barcode Information about the power."
INDEX { ubiSysBarcodePowerIndex }
::= { ubiSysBarcodePowerTable 1 }
UbiSysBarcodePowerEntry ::= SEQUENCE {
ubiSysBarcodePowerIndex INTEGER,
ubiSysBarcodePowerString DisplayString
}
ubiSysBarcodePowerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each power entity"
::= { ubiSysBarcodePowerEntry 1 }
ubiSysBarcodePowerString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"The textual barcode of power entity"
::= { ubiSysBarcodePowerEntry 2 }
ubiSysBarcodeFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysBarcodeFanEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information
for fan barcode."
::= { ubiSysBarCode 3 }
ubiSysBarcodeFanEntry OBJECT-TYPE
SYNTAX UbiSysBarcodeFanEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Barcode Information about the fan"
INDEX { ubiSysBarcodeFanIndex }
::= { ubiSysBarcodeFanTable 1 }
UbiSysBarcodeFanEntry ::= SEQUENCE {
ubiSysBarcodeFanIndex INTEGER,
ubiSysBarcodeFanString DisplayString
}
ubiSysBarcodeFanIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each fan entity"
::= { ubiSysBarcodeFanEntry 1 }
ubiSysBarcodeFanString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"The textual barcode of fan entity."
::= { ubiSysBarcodeFanEntry 2 }
ubiSysBarcodeUplinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysBarcodeUplinkEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information
for uplink module's barcode."
::= { ubiSysBarCode 4 }
ubiSysBarcodeUplinkEntry OBJECT-TYPE
SYNTAX UbiSysBarcodeUplinkEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Barcode Information about the uplink module."
INDEX { ubiSysBarcodeUplinkIndex }
::= { ubiSysBarcodeUplinkTable 1 }
UbiSysBarcodeUplinkEntry ::= SEQUENCE {
ubiSysBarcodeUplinkIndex INTEGER,
ubiSysBarcodeUplinkString DisplayString
}
ubiSysBarcodeUplinkIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each uplink module."
::= { ubiSysBarcodeUplinkEntry 1 }
ubiSysBarcodeUplinkString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"The textual barcode of uplink module."
::= { ubiSysBarcodeUplinkEntry 2 }
ubiSysBarcodeSlotTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysBarcodeSlotEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information
for slot's barcode."
::= { ubiSysBarCode 5 }
ubiSysBarcodeSlotEntry OBJECT-TYPE
SYNTAX UbiSysBarcodeSlotEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Barcode Information about the slot."
INDEX { ubiSysBarcodeSlotIndex }
::= { ubiSysBarcodeSlotTable 1 }
UbiSysBarcodeSlotEntry ::= SEQUENCE {
ubiSysBarcodeSlotIndex INTEGER,
ubiSysBarcodeSlotString DisplayString
}
ubiSysBarcodeSlotIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each slot."
::= { ubiSysBarcodeSlotEntry 1 }
ubiSysBarcodeSlotString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"The textual barcode of slot."
::= { ubiSysBarcodeSlotEntry 2 }
ubiSysBarcodeScuTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysBarcodeScuEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information
for SCU's barcode."
::= { ubiSysBarCode 6 }
ubiSysBarcodeScuEntry OBJECT-TYPE
SYNTAX UbiSysBarcodeScuEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"Barcode Information about the SCU."
INDEX { ubiSysBarcodeScuIndex }
::= { ubiSysBarcodeScuTable 1 }
UbiSysBarcodeScuEntry ::= SEQUENCE {
ubiSysBarcodeScuIndex INTEGER,
ubiSysBarcodeScuString DisplayString
}
ubiSysBarcodeScuIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each SCU."
::= { ubiSysBarcodeScuEntry 1 }
ubiSysBarcodeScuString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"The textual barcode of SCU."
::= { ubiSysBarcodeScuEntry 2 }
-- *****************************************************************
-- ubiSysMIBConformance
-- *****************************************************************
--
-- conformance information
--
ubiSysMIBCompliances OBJECT IDENTIFIER ::= { ubiSystemMIBConformance 1 }
ubiSysMIBGroups OBJECT IDENTIFIER ::= { ubiSystemMIBConformance 2 }
-- compliance statements
ubiSysMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Ubiquoss system MIB."
MODULE
MANDATORY-GROUPS { ubiSysInfoMIBGroup,
ubiSysRscMIBGroup,
ubiSysBannerGroup }
GROUP ubiSysInfoMIBGroup
DESCRIPTION
"The ubiSysMIBGroup is applicable for implementations which
need to get the system information"
GROUP ubiSysRscMIBGroup
DESCRIPTION
"The ubiSysMIBGroup is applicable for implementations which
need to manager the system resource"
GROUP ubiSysBannerGroup
DESCRIPTION
"The ubiSysBannerGroup is applicable for implementations which
need to manager the miscellaneous information of system."
::= { ubiSysMIBCompliances 1 }
-- units of conformance
ubiSysInfoMIBGroup OBJECT-GROUP
OBJECTS {
ubiSystemModel,
ubiSystemSerialNumber,
ubiHwVersion,
ubiSwVersion,
ubiReleaseDate,
ubiSerialNumber,
ubiSysPhysAddress,
ubiSysClock,
ubiSysTimeZoneName,
ubiSysTimeZoneOffset
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
system information"
::= { ubiSysMIBGroups 1 }
ubiSysRscMIBGroup OBJECT-GROUP
OBJECTS {
ubiCpuFiveSec,
ubiCpuOneMin,
ubiCpuFiveMin,
ubiCpuRisingThreshold,
ubiCpuFallingThreshold,
ubiCpuLoadTimePeriod,
ubiMemoryAlloc,
ubiMemoryFree,
ubiMemoryTotal,
ubiMemoryFreePercentage,
ubiMemoryThreshold
}
STATUS current
DESCRIPTION
"The collection of objects which are used to manager the
system resource"
::= { ubiSysMIBGroups 2 }
ubiSysMiscGroup OBJECT-GROUP
OBJECTS {
ubiLedTestTrigger
}
STATUS current
DESCRIPTION
"The collection of objects which are used to manager the
miscellaneous information of system."
::= { ubiSysMIBGroups 3 }
END
|