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
|
-- *****************************************************************
-- UBIQUOSS-SYSINFO-MIB.mib:
-- Ubiquoss Enterprise System Configuration Structure of Management Information
--
-- July 2006, Jisoo Kim
--
-- Copyright (c) 2006 by Ubiquoss, Corp.
-- All rights reserved.
--
-- *****************************************************************
--
UBIQUOSS-SYSINFO-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString
FROM RFC1213-MIB
IANAifType
FROM IANAifType-MIB
ubiMgmt
FROM UBQS-SMI
RowStatus, PhysAddress
FROM SNMPv2-TC;
ubiSysInfoMIB MODULE-IDENTITY
LAST-UPDATED "0607130000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
"Chair : jisoo Kim
Ubiquoss Corp.
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
EMail: jisoo@ubiquoss.com
Phone: +82-2-2190-3100
Co-editor: Paul
Ubiquoss Corp.
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
EMail: paul@ubiquoss.com
Phone: +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."
::= { ubiMgmt 100 }
ubiSysInfoMIBObjects OBJECT IDENTIFIER ::= { ubiSysInfoMIB 1 }
-- ***********************************************************
-- sysInfoTable
-- ***********************************************************
ubiSysInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiSysInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"information of configuration"
::= { ubiSysInfoMIBObjects 1 }
ubiSysInfoEntry OBJECT-TYPE
SYNTAX UbiSysInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"information of configuration"
INDEX { ubiSysIndex }
::= { ubiSysInfoTable 1 }
UbiSysInfoEntry ::= SEQUENCE {
ubiSysIndex Integer32,
ubiSysDescr DisplayString,
ubiSysObjectID OBJECT IDENTIFIER,
ubiSysUpTime TimeTicks,
ubiSysName DisplayString,
ubiSysSerialNumber DisplayString,
ubiSysMacAddress PhysAddress,
ubiSysHwVersion DisplayString,
ubiSysSwVersion DisplayString,
ubiSysFwVersion DisplayString,
ubiSysReset INTEGER,
ubiSystemDateAndTime DisplayString,
ubiTimeZoneCurrent DisplayString,
ubiSysDayBanner DisplayString
}
ubiSysIndex OBJECT-TYPE
SYNTAX Integer32
ACCESS read-only
STATUS current
DESCRIPTION
"An index value that uniquely identifies this chassis"
::= { ubiSysInfoEntry 1 }
ubiSysDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
" "
::= { ubiSysInfoEntry 2 }
ubiSysObjectID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" "
::= { ubiSysInfoEntry 3 }
ubiSysUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
" "
::= { ubiSysInfoEntry 4 }
ubiSysName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
" "
::= { ubiSysInfoEntry 5 }
ubiSysSerialNumber OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"SerialNumber"
::= { ubiSysInfoEntry 6 }
ubiSysMacAddress OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-only
STATUS current
DESCRIPTION
"system mac address"
::= { ubiSysInfoEntry 7 }
ubiSysHwVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"hardware version"
::= { ubiSysInfoEntry 8 }
ubiSysSwVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"software version"
::= { ubiSysInfoEntry 9 }
ubiSysFwVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS current
DESCRIPTION
"firmware version"
::= { ubiSysInfoEntry 10 }
ubiSysReset OBJECT-TYPE
SYNTAX INTEGER
{
none(0), -- none of the following
reset(1) -- resetting the system
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "reset of system"
::= { ubiSysInfoEntry 11 }
ubiSystemDateAndTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"system date and time string"
::= { ubiSysInfoEntry 12 }
ubiTimeZoneCurrent OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { ubiSysInfoEntry 13 }
ubiSysDayBanner OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Modify the system Day banner"
::= { ubiSysInfoEntry 14 }
-- *****************************************************************
--
-- *****************************************************************
-- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications
-- that are backward compatible with SNMPv1 Traps.
ubiSysInfoMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiSysInfoMIB 2 }
ubiSysInfoMIBNotifications OBJECT IDENTIFIER ::= { ubiSysInfoMIBNotificationPrefix 0 }
ubiSysAlarmNotification NOTIFICATION-TYPE
OBJECTS {
ubiAlarmIndex,
ubiAlarmId,
ubiAlarmType,
ubiAlarmSeverity,
ubiAlarmPhysicalLoc,
ubiAlarmLogicalLoc,
ubiAlarmCurStatus,
ubiAlarmAuxinfo,
ubiAlarmDateTime,
ubiAlarmStatus
}
STATUS current
DESCRIPTION
"A sysAlarmNotification is sent if system restart."
::= { ubiSysInfoMIBNotifications 1 }
-- conformance information
ubiSysInfoMIBConformance OBJECT IDENTIFIER ::= { ubiSysInfoMIB 3 }
ubiSysInfoMIBCompliances OBJECT IDENTIFIER ::= { ubiSysInfoMIBConformance 1 }
ubiSysInfoMonMIBGroups OBJECT IDENTIFIER ::= { ubiSysInfoMIBConformance 2 }
-- compliance statements
ubiSysInfoMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco Environmental Monitor MIB."
MODULE -- this module
MANDATORY-GROUPS { ubiSysInfoMIBGroup,
ubiSysInfoMIBAlarmNotifGroup }
GROUP ubiSysInfoMIBGroup
DESCRIPTION
"The ubiSysInfoMIBGroup is optional.
This group is applicable for implementations which
need information for system."
GROUP ubiSysInfoMIBAlarmNotifGroup
DESCRIPTION
"The ubiSysInfoMIBAlarmNotifGroup is optional.
This group is applicable for implementations which
need alarm notifications for system"
::= { ubiSysInfoMIBCompliances 1 }
-- units of conformance
ubiSysInfoMIBGroup OBJECT-GROUP
OBJECTS {
ubiSysDescr,
ubiSysObjectID,
ubiSysUpTime,
ubiSysName,
ubiSysSerialNumber,
ubiSysMacAddress,
ubiSysHwVersion,
ubiSysSwVersion,
ubiSysFwVersion
}
STATUS current
DESCRIPTION
"ubiquoss system information."
::= { ubiSysInfoMonMIBGroups 1 }
ubiSysInfoMIBAlarmNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ubiSysAlarmNotification
}
STATUS current
DESCRIPTION
"A notification group providing system alarm notification
for system. "
::= { ubiSysInfoMonMIBGroups 2 }
END
|