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
|
-- *****************************************************************
-- UBQS-SNMP-MIB
--
-- Mar 2011, Park Hyung Eun
--
-- Copyright (c) 2011 by Ubiquoss, Corp.
-- All rights reserved.
--
-- *****************************************************************
--
UBQS-SNMP-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString
FROM RFC1213-MIB
IANAifType
FROM IANAifType-MIB
RowStatus
FROM SNMPv2-TC
InetAddress, InetAddressType,
InetAddressPrefixLength,
FROM INET-ADDRESS-MIB
ubiMgmtv2
FROM UBQS-SMI;
ubiSnmpMIB MODULE-IDENTITY
LAST-UPDATED "201103280000Z"
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
"This MIB module defines MIB objects which provide
mechanisms to remotely configure the parameters
used by an SNMP entity for the generation of
notifications."
::= { ubiMgmtv2 19 }
-- ***********************************************************
-- Textual Conventions
-- ***********************************************************
SnmpVersion ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The version of the SNMP."
SYNTAX INTEGER {
none(0), -- none of the following
v1(1),
v2(2),
v3(3),
inform(4)
}
-- ***************************************************************
-- ubiInterfaceMIB
-- ***************************************************************
ubiSnmpMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiSnmpMIB 0 }
ubiSnmpMIBObjects OBJECT IDENTIFIER ::= { ubiSnmpMIB 1 }
ubiSnmpMIBConformance OBJECT IDENTIFIER ::= { ubiSnmpMIB 2 }
-- ***********************************************************
-- ubiSnmpCommunityTable
-- ***********************************************************
ubiSnmpCommunityTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSnmpCommunityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the community configuration of SNMP."
::= { ubiSnmpMIBObjects 1 }
ubiSnmpCommunityEntry OBJECT-TYPE
SYNTAX UbiSnmpCommunityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about
the SNMP community."
INDEX { ubiSnmpCommunity }
::= { ubiSnmpCommunityTable 1 }
UbiSnmpCommunityEntry ::= SEQUENCE {
ubiSnmpCommunity DisplayString,
ubiSnmpCommunityType INTEGER,
ubiSnmpCommunityAclName DisplayString,
ubiSnmpCommunityView DisplayString,
ubiSnmpCommunityRowStatus RowStatus
}
ubiSnmpCommunity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information
about the SNMP community."
::= { ubiSnmpCommunityEntry 1 }
ubiSnmpCommunityType OBJECT-TYPE
SYNTAX INTEGER {
read-only(1),
read-write(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The access type of SNMP community."
::= { ubiSnmpCommunityEntry 2 }
ubiSnmpCommunityAclName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The access id for SNMP community."
::= { ubiSnmpCommunityEntry 3 }
ubiSnmpCommunityView OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The view string for SNMP community."
::= { ubiSnmpCommunityEntry 4 }
ubiSnmpCommunityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table."
::= { ubiSnmpCommunityEntry 5 }
-- ***********************************************************
-- ubiSnmpUserTable
-- ***********************************************************
ubiSnmpUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSnmpUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the user configuration of SNMP."
::= { ubiSnmpMIBObjects 2 }
ubiSnmpUserEntry OBJECT-TYPE
SYNTAX UbiSnmpUserEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about
the SNMP user."
INDEX { ubiSnmpUserVersion, ubiSnmpUserName }
::= { ubiSnmpUserTable 1 }
UbiSnmpUserEntry ::= SEQUENCE {
ubiSnmpUserVersion SnmpVersion,
ubiSnmpUserName DisplayString,
ubiSnmpUserGroup DisplayString,
ubiSnmpUserAuthType INTEGER,
ubiSnmpUserAuthPasswd DisplayString,
ubiSnmpUserPrivacyType INTEGER,
ubiSnmpUserPrivacyPasswd DisplayString,
ubiSnmpUserAclName DisplayString,
ubiSnmpUserRowStatus RowStatus
}
ubiSnmpUserVersion OBJECT-TYPE
SYNTAX SnmpVersion
ACCESS read-only
STATUS current
DESCRIPTION
"The version of SNMP user."
::= { ubiSnmpUserEntry 1 }
ubiSnmpUserName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about
the SNMP user."
::= { ubiSnmpUserEntry 2 }
ubiSnmpUserGroup OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"A textual string containing information about
the group belong to SNMP user."
::= { ubiSnmpUserEntry 3 }
ubiSnmpUserAuthType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
md5(1),
sha(2)
}
ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the authentication parameters
for SNMPv3 user.
SNMPv1 and SNMPv2c is always none(0). Because only SNMPv3 user
can support the authentication and(or) Privacy."
::= { ubiSnmpUserEntry 4 }
ubiSnmpUserAuthPasswd OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"A textual string containing authentication password
for SNMPv3 user.
SNMPv1 and SNMPv2c is always ''(null string). Because only
SNMPv3 user can support the authentication and(or) Privacy."
::= { ubiSnmpUserEntry 5 }
ubiSnmpUserPrivacyType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
aes(1),
des(2)
}
ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the encryption parameters
for SNMPv3 user.
SNMPv1 and SNMPv2c is always none(0). Because only SNMPv3 user
can support the authentication and(or) Privacy."
::= { ubiSnmpUserEntry 6 }
ubiSnmpUserPrivacyPasswd OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"A textual string containing encryption password
for SNMPv3 user.
SNMPv1 and SNMPv2c is always ''(null string). Because only
SNMPv3 user can support the authentication and(or) Privacy."
::= { ubiSnmpUserEntry 7 }
ubiSnmpUserAclName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
"The access ID for SNMP user."
::= { ubiSnmpUserEntry 8 }
ubiSnmpUserRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table."
::= { ubiSnmpUserEntry 9 }
-- ***********************************************************
-- ubiSnmpGroupTable
-- ***********************************************************
ubiSnmpGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSnmpGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the group configuration of SNMP."
::= { ubiSnmpMIBObjects 3 }
ubiSnmpGroupEntry OBJECT-TYPE
SYNTAX UbiSnmpGroupEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about
the SNMP group."
INDEX { ubiSnmpGroupVersion, ubiSnmpGroupName }
::= { ubiSnmpGroupTable 1 }
UbiSnmpGroupEntry ::= SEQUENCE {
ubiSnmpGroupVersion SnmpVersion,
ubiSnmpGroupName DisplayString,
ubiSnmpGroupSecLevel INTEGER,
ubiSnmpGroupReadView DisplayString,
ubiSnmpGroupWriteView DisplayString,
ubiSnmpGroupNotifyView DisplayString,
ubiSnmpGroupRowStatus RowStatus
}
ubiSnmpGroupVersion OBJECT-TYPE
SYNTAX SnmpVersion
ACCESS read-only
STATUS current
DESCRIPTION
"The version of SNMP group."
::= { ubiSnmpGroupEntry 1 }
ubiSnmpGroupName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about
the SNMP group."
::= { ubiSnmpGroupEntry 2 }
ubiSnmpGroupSecLevel OBJECT-TYPE
SYNTAX INTEGER {
none(0),
noAuthen(1),
authen(2),
privacy(3)
}
ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiSnmpGroupEntry 3 }
ubiSnmpGroupReadView OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiSnmpGroupEntry 4 }
ubiSnmpGroupWriteView OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiSnmpGroupEntry 5 }
ubiSnmpGroupNotifyView OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiSnmpGroupEntry 6 }
ubiSnmpGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table."
::= { ubiSnmpGroupEntry 7 }
-- ***********************************************************
-- ubiSnmpViewTable
-- ***********************************************************
ubiSnmpViewTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSnmpViewEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the group configuration of SNMP."
::= { ubiSnmpMIBObjects 4 }
ubiSnmpViewEntry OBJECT-TYPE
SYNTAX UbiSnmpViewEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about
the SNMP group."
INDEX { ubiSnmpViewName, ubiSnmpViewVariable } -- TODO !!!
::= { ubiSnmpViewTable 1 }
UbiSnmpViewEntry ::= SEQUENCE {
ubiSnmpViewName DisplayString,
ubiSnmpViewVariable DisplayString,
ubiSnmpViewType INTEGER,
ubiSnmpViewRowStatus RowStatus
}
ubiSnmpViewName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about
the SNMP view."
::= { ubiSnmpViewEntry 1 }
ubiSnmpViewVariable OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiSnmpViewEntry 2 }
ubiSnmpViewType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
excluded(1),
included(2)
}
ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiSnmpViewEntry 3 }
ubiSnmpViewRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table."
::= { ubiSnmpViewEntry 4 }
-- ***********************************************************
-- ubiSnmpTrapHostTable
-- ***********************************************************
ubiSnmpTrapHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSnmpTrapHostEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the trap host configuration of SNMP."
::= { ubiSnmpMIBObjects 5 }
ubiSnmpTrapHostEntry OBJECT-TYPE
SYNTAX UbiSnmpTrapHostEntry
ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about
the SNMP trap host."
INDEX { ubiSnmpTrapHostType, UbiSnmpTrapHostVersion, UbiSnmpTrapHostAddrType,
UbiSnmpTrapHostAddress, ubiSnmpTrapHostCommunity }
::= { ubiSnmpTrapHostTable 1 }
UbiSnmpTrapHostEntry ::= SEQUENCE {
ubiSnmpTrapHostType INTEGER,
ubiSnmpTrapHostVersion SnmpVersion,
ubiSnmpTrapHostAddrType InetAddressType,
ubiSnmpTrapHostAddress InetAddress,
ubiSnmpTrapHostCommunity DisplayString,
ubiSnmpTrapHostSecLevel INTEGER,
ubiSnmpTrapHostPort Integer32,
ubiSnmpTrapHostRowStatus RowStatus
}
ubiSnmpTrapHostType OBJECT-TYPE
SYNTAX INTEGER {
trap(1),
inform(2)
}
ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the trap type."
::= { ubiSnmpTrapHostEntry 1 }
ubiSnmpTrapHostVersion OBJECT-TYPE
SYNTAX SnmpVersion
ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the trap version.
A system configuring the trap host can send
a notification depending on trap version."
::= { ubiSnmpTrapHostEntry 2 }
ubiSnmpTrapHostAddrType OBJECT-TYPE
SYNTAX InetAddressType
ACCESS read-only
STATUS current
DESCRIPTION
"The type of the UbiSnmpTrapHostAddress, as defined
in the InetAddress MIB. (e.g. ipv4, ipv6..)"
::= { ubiSnmpTrapHostEntry 3 }
ubiSnmpTrapHostAddress OBJECT-TYPE
SYNTAX InetAddress
ACCESS read-only
STATUS current
DESCRIPTION
"The trap host IP address. The type of this address is
determined by the value of the ubiSnmpTrapHostAddrType object."
::= { ubiSnmpTrapHostEntry 4 }
ubiSnmpTrapHostCommunity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about
the community(or SNMPv3 user) for trap host configuration."
::= { ubiSnmpTrapHostEntry 5 }
ubiSnmpTrapHostSecLevel OBJECT-TYPE
SYNTAX INTEGER {
none(0),
noAuthen(1),
authen(2),
privacy(3)
}
ACCESS read-write
STATUS current
DESCRIPTION
"The security type for SNMPv3 trap host."
::= { ubiSnmpTrapHostEntry 6 }
ubiSnmpTrapHostPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
ACCESS read-write
STATUS current
DESCRIPTION
"The port number of SNMP trap host. "
DEFVAL { 161 }
::= { ubiSnmpTrapHostEntry 7 }
ubiSnmpTrapHostRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create a new row or modify or
delete an existing row in this table."
::= { ubiSnmpTrapHostEntry 8 }
-- ***********************************************************
-- ubiSnmpMIBConformance
-- ***********************************************************
ubiSnmpMIBCompliances OBJECT IDENTIFIER ::= { ubiSnmpMIBConformance 1 }
ubiSnmpMIBGroups OBJECT IDENTIFIER ::= { ubiSnmpMIBConformance 2 }
-- compliance statements
ubiSnmpMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the ubiquoss snmp configuration MIB."
MODULE -- this module
MANDATORY-GROUPS { ubiSnmpConfigGroup }
GROUP ubiSnmpConfigGroup
DESCRIPTION
"This group is applicable for implementations which
need information for snmp configuration."
::= { ubiSnmpMIBCompliances 1 }
-- units of conformance
ubiSnmpConfigGroup OBJECT-GROUP
OBJECTS {
ubiSnmpCommunity,
ubiSnmpCommunityType,
ubiSnmpCommunityRowStatus,
ubiSnmpTrapHostVersion,
ubiSnmpTrapHostAddrType,
ubiSnmpTrapHostAddress,
ubiSnmpTrapHostCommunity,
ubiSnmpTrapHostRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects containing
information about IP adderss configuration."
::= { ubiSnmpMIBGroups 1 }
END
|