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
|
TRAPEZE-NETWORKS-SYSTEM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI
DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC
trpzMibs
FROM TRAPEZE-NETWORKS-ROOT-MIB
;
trpzSystemMib MODULE-IDENTITY
LAST-UPDATED "200708140012Z"
ORGANIZATION "Trapeze Networks"
CONTACT-INFO
"Trapeze Networks Technical Support
www.trapezenetworks.com
US: 866.TRPZ.TAC
International: 925.474.2400
support@trapezenetworks.com"
DESCRIPTION
"System objects for Trapeze Networks wireless switches.
Copyright 2007 Trapeze Networks, Inc.
All rights reserved.
This Trapeze Networks SNMP Management Information Base
Specification (Specification) embodies Trapeze Networks'
confidential and proprietary intellectual property.
Trapeze Networks retains all title and ownership in
the Specification, including any revisions.
This Specification is supplied 'AS IS' and Trapeze Networks
makes no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
REVISION "200708140012Z"
DESCRIPTION "v3.0.1: Added new objects to support
Power Supply status.
(for 6.2 release)"
REVISION "200705040010Z"
DESCRIPTION "v2.1.0: Obsoleted two previously deprecated objects
(for 6.2 release)"
REVISION "200703140007Z"
DESCRIPTION "v2.0.0: Added new objects to support CPU load
and memory (RAM) usage details:
for last few seconds (''instant''),
minute, 5 minutes, hour, day, 3 days
(for 6.0 release)"
REVISION "200611090004Z"
DESCRIPTION "v1.0.3: Removed unused imports"
REVISION "200606060003Z"
DESCRIPTION "v1.0.2: Initial version, for 5.0 release"
::= { trpzMibs 8 }
-- Textual Conventions
TrpzSysCpuLoad ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"CPU load in percents"
SYNTAX Unsigned32 (0..100)
TrpzSysMemoryAmount ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Memory amount in KBytes (1024 octets)"
SYNTAX Unsigned32
TrpzSysPowerSupplyStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of a Power Supply."
SYNTAX INTEGER {
other (1),
unknown (2),
ac-failed (3),
dc-failed (4),
ac-ok-dc-ok (5)
}
-- Object definitions
--
-- The System MIB Tree
--
trpzSysObjects OBJECT IDENTIFIER ::= { trpzSystemMib 1 }
trpzSysDataObjects OBJECT IDENTIFIER ::= { trpzSysObjects 1 }
trpzSysCpuMemoryUsedBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"CPU memory used in bytes.
Obsoleted by trpzSysCpuMemoryInstantUsage."
::= { trpzSysDataObjects 1 }
trpzSysCpuMemoryTotalBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"CPU total physical memory in bytes.
Obsoleted by trpzSysCpuMemorySize."
::= { trpzSysDataObjects 2 }
trpzSysFlashMemoryUsedBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flash memory used in bytes."
::= { trpzSysDataObjects 3 }
trpzSysFlashMemoryTotalBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flash memory available in bytes."
::= { trpzSysDataObjects 4 }
trpzSysCpuAverageLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU load average since system startup."
::= { trpzSysDataObjects 5 }
-- Totals
trpzSysCpuMemorySize OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum available CPU Memory (RAM) in KBytes.
This is the memory available to the Wireless Switch software.
May be less than physical RAM size."
::= { trpzSysDataObjects 6 }
-- Reserving trpzSysDataObjects 7-10 for future scalars indicating totals
trpzSysCpuLoadDetail OBJECT IDENTIFIER ::= { trpzSysDataObjects 11 }
trpzSysCpuMemoryUsageDetail OBJECT IDENTIFIER ::= { trpzSysDataObjects 12 }
trpzSysChassisComponents OBJECT IDENTIFIER ::= { trpzSysDataObjects 13 }
-- CPU load details:
trpzSysCpuInstantLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU instant load (for last few seconds)."
::= { trpzSysCpuLoadDetail 1 }
trpzSysCpuLastMinuteLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU load for last minute."
::= { trpzSysCpuLoadDetail 2 }
trpzSysCpuLast5MinutesLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU load for last 5 minutes."
::= { trpzSysCpuLoadDetail 3 }
trpzSysCpuLastHourLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU load for last hour."
::= { trpzSysCpuLoadDetail 4 }
trpzSysCpuLastDayLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU load for last day."
::= { trpzSysCpuLoadDetail 5 }
trpzSysCpuLast3DaysLoad OBJECT-TYPE
SYNTAX TrpzSysCpuLoad
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU load for last 3 days."
::= { trpzSysCpuLoadDetail 6 }
-- Memory usage details
trpzSysCpuMemoryInstantUsage OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Instant memory usage (RAM) in KBytes (for last few seconds).
Ranges between 0 and trpzSysCpuMemorySize."
::= { trpzSysCpuMemoryUsageDetail 1 }
trpzSysCpuMemoryLastMinuteUsage OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory usage (RAM) for last minute in KBytes.
Ranges between 0 and trpzSysCpuMemorySize."
::= { trpzSysCpuMemoryUsageDetail 2 }
trpzSysCpuMemoryLast5MinutesUsage OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory usage (RAM) for last 5 minutes in KBytes.
Ranges between 0 and trpzSysCpuMemorySize."
::= { trpzSysCpuMemoryUsageDetail 3 }
trpzSysCpuMemoryLastHourUsage OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory usage (RAM) for last hour in KBytes.
Ranges between 0 and trpzSysCpuMemorySize."
::= { trpzSysCpuMemoryUsageDetail 4 }
trpzSysCpuMemoryLastDayUsage OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory usage (RAM) for last day in KBytes.
Ranges between 0 and trpzSysCpuMemorySize."
::= { trpzSysCpuMemoryUsageDetail 5 }
trpzSysCpuMemoryLast3DaysUsage OBJECT-TYPE
SYNTAX TrpzSysMemoryAmount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory usage (RAM) for last 3 days in KBytes.
Ranges between 0 and trpzSysCpuMemorySize."
::= { trpzSysCpuMemoryUsageDetail 6 }
-- Power Supplies Group
trpzSysChasCompPowerSupplies OBJECT IDENTIFIER ::= { trpzSysChassisComponents 1 }
trpzSysNumPowerSuppliesSupported OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of power supplies supported by the Wireless Switch.
This is the upper limit of the number of entries
in the power supply table, trpzSysPowerSupplyTable."
::= { trpzSysChasCompPowerSupplies 1 }
trpzSysPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrpzSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of power supplies actually installed on the Wireless Switch."
::= { trpzSysChasCompPowerSupplies 2 }
trpzSysPowerSupplyEntry OBJECT-TYPE
SYNTAX TrpzSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the trpzSysPowerSupplyTable table."
INDEX { trpzSysPowerSupplyDeviceOID }
::= { trpzSysPowerSupplyTable 1 }
TrpzSysPowerSupplyEntry ::= SEQUENCE {
trpzSysPowerSupplyDeviceOID OBJECT IDENTIFIER,
trpzSysPowerSupplyStatus TrpzSysPowerSupplyStatus,
trpzSysPowerSupplyDescr DisplayString
}
trpzSysPowerSupplyDeviceOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID value used to identify this chassis component
as indicated in Registration MIB."
::= { trpzSysPowerSupplyEntry 1 }
trpzSysPowerSupplyStatus OBJECT-TYPE
SYNTAX TrpzSysPowerSupplyStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the power supply."
::= { trpzSysPowerSupplyEntry 2 }
trpzSysPowerSupplyDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A human interpretable description of this power supply,
for example 'Left Power Supply'."
::= { trpzSysPowerSupplyEntry 3 }
END
|