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
|
-- *****************************************************************
-- UBQS-SYSTEM-ACCESS-MIB
--
-- July 2011, Park Hyung Eun
--
-- Copyright (c) 2011 by Ubiquoss, Corp.
-- All rights reserved.
--
-- *****************************************************************
--
UBQS-SYSTEM-ACCESS-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString
FROM RFC1213-MIB
IANAifType
FROM IANAifType-MIB
IpAddress
FROM SNMPv2-SMI
RowStatus,
TruthValue
FROM SNMPv2-TC
InetAddress, InetAddressType,
InetAddressPrefixLength,
FROM INET-ADDRESS-MIB
ubiMgmtv2
FROM UBQS-SMI;
ubiSystemAccessMIB 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
"The UBQS-SYSTEM-ACCESS-MIB is used for getting
the access information of the system"
::= { ubiMgmtv2 26 }
-- ***********************************************************
-- Textual Conventions
-- ***********************************************************
-- ***************************************************************
-- ubiSystemAccessMIB
-- ***************************************************************
ubiSystemAccessMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiSystemAccessMIB 0 }
ubiSystemAccessMIBObjects OBJECT IDENTIFIER ::= { ubiSystemAccessMIB 1 }
ubiSystemAccessMIBConformance OBJECT IDENTIFIER ::= { ubiSystemAccessMIB 2 }
ubiUserManagement OBJECT IDENTIFIER ::= { ubiSystemAccessMIBObjects 1 }
ubiAAAServer OBJECT IDENTIFIER ::= { ubiSystemAccessMIBObjects 2 }
ubiAAAConfig OBJECT IDENTIFIER ::= { ubiSystemAccessMIBObjects 3 }
ubiCommandPrivilege OBJECT IDENTIFIER ::= { ubiSystemAccessMIBObjects 4 }
ubiEnableAuthenPasswd OBJECT IDENTIFIER ::= { ubiSystemAccessMIBObjects 5 }
ubiSystemRemoteConnect OBJECT IDENTIFIER ::= { ubiSystemAccessMIBObjects 6 }
-- *****************************************************************
-- ubiSystemAccessNotifications
-- *****************************************************************
ubiSystemRemoteConnectStateChange NOTIFICATION-TYPE
OBJECTS {
ubiSystemRemoteConnectUserName,
ubiSystemRemoteConnectAddress,
ubiSystemRemoteConnectCompleted
}
STATUS current
DESCRIPTION
"Notification of System remote connect State Change."
::= { ubiSystemAccessMIBNotificationPrefix 1 }
-- ***********************************************************
-- ubiUserManagement
-- ***********************************************************
ubiUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the user management."
::= { ubiUserManagement 1 }
ubiUserEntry OBJECT-TYPE
SYNTAX UbiUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about a user."
INDEX { ubiUserName }
::= { ubiUserTable 1 }
UbiUserEntry ::= SEQUENCE {
ubiUserName DisplayString,
ubiUserPasswordEncryption INTEGER,
ubiUserPassword DisplayString,
ubiUserPrivilegedLevel Integer32,
ubiUserAclName DisplayString,
-- more
ubiUserRowStatus RowStatus
}
ubiUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiUserEntry 1 }
ubiUserPasswordEncryption OBJECT-TYPE
SYNTAX INTEGER {
none(0),
passwd_cleartext(1), -- passwd
secret_cleartext(2), -- secret
des(3), -- passwd
md5(4) -- secret
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
::= { ubiUserEntry 2 }
ubiUserPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
::= { ubiUserEntry 3 }
ubiUserPrivilegedLevel OBJECT-TYPE
SYNTAX Integer32 (0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiUserEntry 4 }
ubiUserAclName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiUserEntry 5 }
--reserved 6,7
ubiUserRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
::= { ubiUserEntry 8 }
-- ***********************************************************
-- ubiAAAServer
-- ***********************************************************
ubiAAAServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiAAAServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects which provide
the information about the AAA server."
::= { ubiAAAServer 1 }
ubiAAAServerEntry OBJECT-TYPE
SYNTAX UbiAAAServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information about a AAA server."
INDEX { ubiAAAServerProtocol, ubiAAAServerAddress }
::= { ubiAAAServerTable 1 }
UbiAAAServerEntry ::= SEQUENCE {
ubiAAAServerProtocol INTEGER,
ubiAAAServerAddress IpAddress,
ubiAAAServerPort Integer32,
ubiAAAServerKeyEncrType INTEGER,
ubiAAAServerKey DisplayString,
ubiAAAServerTimeOut Integer32,
ubiAAAServerRowStatus RowStatus
}
ubiAAAServerProtocol OBJECT-TYPE
SYNTAX INTEGER {
other(0), -- Other protocols
tacacsplus(1), -- TACACS+
radius(2) -- RADIUS
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Protocol used with this server."
::= { ubiAAAServerEntry 1 }
ubiAAAServerAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the server."
::= { ubiAAAServerEntry 2 }
ubiAAAServerPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port number of authentication server."
DEFVAL { 1812 }
::= { ubiAAAServerEntry 3 }
ubiAAAServerKeyEncrType OBJECT-TYPE
SYNTAX INTEGER {
plain(1), -- Plain Text
encrypted(2) -- Encrypted
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Encryption type used for the AAA Server key."
::= { ubiAAAServerEntry 4 }
ubiAAAServerKey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The server key to be used with this server."
::= { ubiAAAServerEntry 5 }
ubiAAAServerTimeOut OBJECT-TYPE
SYNTAX Integer32 (0..1000)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in seconds between retransmissions to the AAA server."
DEFVAL { 5 }
::= { ubiAAAServerEntry 6 }
ubiAAAServerRowStatus 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."
::= { ubiAAAServerEntry 7 }
-- ***********************************************************
-- ubiAAAConfig
-- ***********************************************************
ubiAAAConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiAAAConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiAAAConfig 1 }
ubiAAAConfigEntry OBJECT-TYPE
SYNTAX UbiAAAConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { ubiAAAConfigType, ubiAAAConfigAction, ubiAAAConfigMethodPriority }
::= { ubiAAAConfigTable 1 }
UbiAAAConfigEntry ::= SEQUENCE {
ubiAAAConfigType INTEGER,
ubiAAAConfigAction INTEGER,
ubiAAAConfigMethodPriority Integer32,
ubiAAAConfigMethod INTEGER,
ubiAAAConfigCommandLevel Integer32,
ubiAAAConfigRecordType INTEGER,
ubiAAAConfigRowStatus RowStatus
}
ubiAAAConfigType OBJECT-TYPE
SYNTAX INTEGER {
authentication(1), -- Authentication
authorization(2), -- Authorzation
accounting(3) -- Accounting
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Type of AAA."
::= { ubiAAAConfigEntry 1 }
ubiAAAConfigAction OBJECT-TYPE
SYNTAX INTEGER {
login(1), -- Login
enable(2), -- Enable
exec(3), -- Exec
command(4) -- Commands
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents AAA Action."
::= { ubiAAAConfigEntry 2 }
ubiAAAConfigMethodPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Priority number of AAA Method."
::= { ubiAAAConfigEntry 3 }
ubiAAAConfigMethod OBJECT-TYPE
SYNTAX INTEGER {
other(0), -- Other Method
local(1), -- Local
radius(2), -- RADIUS
tacacsplus(3) -- TACACS+
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"AAA Method List."
::= { ubiAAAConfigEntry 4 }
ubiAAAConfigCommandLevel OBJECT-TYPE
SYNTAX Integer32 (0..15)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Privilege Level."
::= { ubiAAAConfigEntry 5 }
ubiAAAConfigRecordType OBJECT-TYPE
SYNTAX INTEGER {
start_stop(1), -- Start or Stop
stop_only(2) -- Stop Only
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Record type."
DEFVAL { 5 }
::= { ubiAAAConfigEntry 6 }
ubiAAAConfigRowStatus 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."
::= { ubiAAAConfigEntry 7 }
-- ***********************************************************
-- ubiCommandPrivilege
-- ***********************************************************
ubiCommandPrivilegeTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCommandPrivilegeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiCommandPrivilege 1 }
ubiCommandPrivilegeEntry OBJECT-TYPE
SYNTAX UbiCommandPrivilegeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { ubiCommandPrivilegeMode, ubiCommandPrivilegeLevel, ubiCommandPrivilegeString }
::= { ubiCommandPrivilegeTable 1 }
UbiCommandPrivilegeEntry ::= SEQUENCE {
ubiCommandPrivilegeMode DisplayString,
ubiCommandPrivilegeLevel Integer32,
ubiCommandPrivilegeString DisplayString,
ubiCommandPrivilegeRowStatus RowStatus
}
ubiCommandPrivilegeMode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Command Mode of Privilege."
::= { ubiCommandPrivilegeEntry 1 }
ubiCommandPrivilegeLevel OBJECT-TYPE
SYNTAX Integer32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Privilege Level."
::= { ubiCommandPrivilegeEntry 2 }
ubiCommandPrivilegeString OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mode Command."
::= { ubiCommandPrivilegeEntry 3 }
ubiCommandPrivilegeRowStatus 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."
::= { ubiCommandPrivilegeEntry 4 }
-- ***********************************************************
-- ubiEnableAuthenPasswd
-- ***********************************************************
ubiEnablePasswordEncrType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
passwd_cleartext(1), -- passwd
secret_cleartext(2), -- secret
des(3), -- passwd
md5(4) -- secret
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Encryption type."
::= { ubiEnableAuthenPasswd 1 }
ubiEnablePassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The Password of Encryption type."
::= { ubiEnableAuthenPasswd 2 }
-- ***********************************************************
-- ubiSystemRemoteConnect
-- ***********************************************************
ubiSystemRemoteConnectUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
""
::= { ubiSystemRemoteConnect 1 }
ubiSystemRemoteConnectAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
""
::= { ubiSystemRemoteConnect 2 }
ubiSystemRemoteConnectCompleted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
""
::= { ubiSystemRemoteConnect 3 }
-- ***********************************************************
-- ubiSystemAccessMIBConformance
-- ***********************************************************
ubiSystemAccessMIBCompliances OBJECT IDENTIFIER ::= { ubiSystemAccessMIBConformance 1 }
ubiSystemAccessMIBGroups OBJECT IDENTIFIER ::= { ubiSystemAccessMIBConformance 2 }
-- compliance statements
ubiSystemAccessMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the ubiquoss system access management MIB."
MODULE -- this module
MANDATORY-GROUPS {
ubiUserManagementGroup
}
GROUP ubiUserManagementGroup
DESCRIPTION
"This group is applicable for implementations which
need information for system access."
::= { ubiSystemAccessMIBCompliances 1 }
-- units of conformance
ubiUserManagementGroup OBJECT-GROUP
OBJECTS {
}
STATUS current
DESCRIPTION
"A collection of objects containing
information about user."
::= { ubiSystemAccessMIBGroups 1 }
END
|