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
|
-- ************************************************************
-- SILVERPEAK-MGMT-MIB.txt: Silver Peak Systems, Inc
-- System Status MIB
--
-- Copyright (c) 2012 Silver Peak Systems, Inc.
-- All rights reserved.
--
-- ************************************************************
--
SILVERPEAK-MGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
SilverpeakAlarmSeverity,
SilverpeakSeqNum,
SilverpeakYesNo
FROM SILVERPEAK-TC
silverpeakMgmt,
silverpeakNotifications
FROM SILVERPEAK-SMI;
silverpeakMgmtMIB MODULE-IDENTITY
LAST-UPDATED "201201060000Z"
ORGANIZATION "Silver Peak Systems, Inc."
CONTACT-INFO
" URL: http://www.silver-peak.com/contact
E-mail: support@silver-peak.com "
DESCRIPTION
"This module defines the management variables used to manage
and monitor appliance status."
::= { silverpeakMgmt 1 }
--
-- Base assignments
--
silverpeakMgmtMIBObjects OBJECT IDENTIFIER ::= { silverpeakMgmtMIB 1 }
silverpeakMgmtMIBNotifications OBJECT IDENTIFIER ::= { silverpeakNotifications 1 }
silverpeakMgmtMIBConformance OBJECT IDENTIFIER ::= { silverpeakMgmtMIB 2 }
--
-- Status Scalars
--
silverpeakMgmtMIBScalars OBJECT IDENTIFIER ::= { silverpeakMgmtMIBObjects 1 }
spsSystemVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System software version string"
::= { silverpeakMgmtMIBScalars 1 }
spsProductModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System product model"
::= { silverpeakMgmtMIBScalars 2 }
spsOperStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the appliance."
::= { silverpeakMgmtMIBScalars 3 }
spsActiveAlarmCount OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of active alarm entries in the alarm table -
spsActiveAlarmTable, defined under silverpeakMgmtMIBTables
subtree."
::= { silverpeakMgmtMIBScalars 4 }
spsSystemUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time in hundredth of a second since
this NX was last initialized. Note that this is
different from sysUpTime in the SNMPv2-MIB [RFC1907]
because sysUpTime is the uptime of the network
management portion of the system."
::= { silverpeakMgmtMIBScalars 5 }
spsSystemSerial OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System serial number string"
::= { silverpeakMgmtMIBScalars 6 }
--
-- Status Tables
--
silverpeakMgmtMIBTables OBJECT IDENTIFIER ::= { silverpeakMgmtMIBObjects 2 }
--
-- Active alarm table
--
spsActiveAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF ActiveAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the active alarm entries. This represents the fault
conditions that are still active in the appliance.
"
::= { silverpeakMgmtMIBTables 1 }
activeAlarmEntry OBJECT-TYPE
SYNTAX ActiveAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The active alarm entries that are still valid system faults."
INDEX { spsActiveAlarmIndex }
::= { spsActiveAlarmTable 1 }
ActiveAlarmEntry ::= SEQUENCE {
spsActiveAlarmIndex INTEGER,
spsActiveAlarmSeqNum SilverpeakSeqNum,
spsActiveAlarmSeverity SilverpeakAlarmSeverity,
spsActiveAlarmName DisplayString,
spsActiveAlarmDescr DisplayString,
spsActiveAlarmSource DisplayString,
spsActiveAlarmType DisplayString,
spsActiveAlarmAcked SilverpeakYesNo,
spsActiveAlarmActive SilverpeakYesNo,
spsActiveAlarmClearable SilverpeakYesNo,
spsActiveAlarmLogTime OCTET STRING,
spsActiveAlarmServiceAffect SilverpeakYesNo,
spsActiveAlarmTypeId INTEGER
}
spsActiveAlarmIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index that uniquely identifies an entry in the
active alarm table."
::= { activeAlarmEntry 1 }
spsActiveAlarmSeqNum OBJECT-TYPE
SYNTAX SilverpeakSeqNum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active alarm's sequence number at the time it was generated."
::= { activeAlarmEntry 2 }
spsActiveAlarmSeverity OBJECT-TYPE
SYNTAX SilverpeakAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The alarm severity for the active alarm."
::= { activeAlarmEntry 3 }
spsActiveAlarmName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A short name for the active alarm."
::= { activeAlarmEntry 4 }
spsActiveAlarmDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A description for the active alarm."
::= { activeAlarmEntry 5 }
spsActiveAlarmSource OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source for the active alarm."
::= { activeAlarmEntry 6 }
spsActiveAlarmType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The alarm type for the active alarm."
::= { activeAlarmEntry 7 }
spsActiveAlarmAcked OBJECT-TYPE
SYNTAX SilverpeakYesNo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies if the user has acknowledged the alarm."
::= { activeAlarmEntry 8 }
spsActiveAlarmActive OBJECT-TYPE
SYNTAX SilverpeakYesNo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies if the alarm is currently active."
::= { activeAlarmEntry 9 }
spsActiveAlarmClearable OBJECT-TYPE
SYNTAX SilverpeakYesNo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies if the user can manually clear the alarm."
::= { activeAlarmEntry 10 }
spsActiveAlarmLogTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the alarm was generated."
::= { activeAlarmEntry 11 }
spsActiveAlarmServiceAffect OBJECT-TYPE
SYNTAX SilverpeakYesNo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies if the alarm is service affecting."
::= { activeAlarmEntry 12 }
spsActiveAlarmTypeId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An ID that uniquely identifies a type of alarm.
The following is a list of currently defined type IDs
(ID listed below is in hexadecimal):
ID Description
----- ------------------------------------------
10000 Tunnel remote ID is misconfigured
10001 Tunnel state is Down
10002 Tunnel VRRP IP is misconfigured
10003 Tunnel keepalive version mismatch
10004 Tunnel WCCP GID is misconfigured
10005 Tunnel software version mismatch
10006 Connecting to a non-VX-X is not supported.
Please contact sales@silver-peak.com to discuss your options.
10007 Duplicate Silver Peak license detected on peer device.
10008 Tunnel local IP address not owned by this appliance
10009 Tunnel software version mismatch results in reduced functionality.
1000a Tunnel peer encapsulation mode mismatch detected.
1000b UDP Destination Port is the same as flow redirection port
20000 Tunnel has unexpected traffic class error
30000 RAID array is degraded
30001 Disk is failed
30002 Disk is degraded
30003 Fan failure detected
30004 System bypass mode
30005 LAN/WAN fail-to-wire card failure
30006 LAN/WAN fail-to-wire card relay failure
30007 Encryption card hardware failure
30008 Network interface admin down
30009 Network interface link down
3000a Management interface link down
3000b Interface is half duplex
3000c Interface speed is 10 Mbps
3000d Config DB disk full
3000e Operating System disk full
3000f File system disk full
30010 Datapath internal loopback test failed
30011 WAN next-hop unreachable
30012 VRRP instance is down
30013 VRRP state changed from Master to Backup
30014 WAN next-hop router discovered on a LAN port
(box is in backwards)
30015 Disk is not in service
30016 Disk is rebuilding
30017 Disk removed by operator
30018 LAN/WAN interfaces have different admin states
30019 LAN/WAN interfaces have different link carrier states
3001a LAN/WAN interface has been shutdown due to
link propagation of paired interface
3001b Disk SMART threshold exceeded
3001c Flow redirection cluster peer is down
3001d Bonding members have different speed/duplex
3001e WCCP adjacency(ies) down
3001f WCCP assignment table mismatch
30020 Power supply not connected, not powered or failed
30021 NIC interface failure
30022 LAN next-hop unreachable
30023 Unexpected system restart
30024 Insufficient configured memory size for this virtual appliance
30025 Insufficient configured processor count for this virtual appliance
30026 Insufficient configured disk storage for this virtual appliance
30027 Interfaces have different MTUs
30028 Interfaces have different MTUs
30029 Bridge loop is detected
3002a Bridge creation failed
3002b Network interface is unassigned
3002c System optimization turned off
3002d Sub-optimal configured memory size for this virtual appliance
3002e Sub-optimal configured processor count for this virtual appliance
3002f Sub-optimal configured disk storage for this virtual appliance
40000 Software upgrade process has failed
40001 System is low on resources
40002 Significant change in time of day has occurred,
and might compromise statistics.
40003 The licensing for this virtual appliance has expired.
40004 There is no license installed on this virtual appliance.
40005 A disk self test has been performed. The system will
require a reboot after the test.
40006 The SSL private key is invalid.
40007 The SSL certificate is not yet valid.
40008 The SSL certificate has expired.
40009 The NTP server is unreachable.
4000a Virtual appliance license expires on yyyy/mm/dd.
4000b Virtual appliance license expires on yyyy/mm/dd.
4000c Invalid virtual appliance license.
4000d Dual Wan-nexthop topology configuration no longer supported.
4000e Setting system wan-nexthop to VLAN nhop is no longer necessary.
4000f Minor inconsistencies during QOS upgrade.
40010 Major inconsistencies during QOS upgrade.
40011 Tunnel IP hdr disable setting was discarded during upgrade.
40012 A very large range has been configured for a local subnet.
40013 A peer name has been specified in a route-map that can't be resolved.
40014 Shaper max bandwidth exceeds system bandwidth
40015 Software capability token exceeds warning threshold
40016 Software capability token has exceeded the required limit
40017 Silvepeak Portal is unreachable
40018 Silverpeak Portal is unreachable for setting up a remote help session
40019 An application has been deleted on the Silver Peak portal
4001a Boost Limiting MTS
4001b Bad portal registration data
4001c EdgeConnect Base license not granted
4001d Orchestrator is unreachable from appliance using HTTPS
4001e Silver Peak Portal is unreachable for licensing
4001f Silver Peak Portal hostname cannot be resolved
40020 Edge Connect Plus license not granted
40021 Edge Connect Boost license not granted
40022 Appliance has not been approved for licensing by Orchestrator
40023 Software capability token related alarm
40024 A NATed interface connected to Internet has no public IP address
40025 Initial admin password is not yet changed
40026 DHCP server mis-configuration
40027 Subnet table has exceeded high-water level for BGP/OSPF entries
40028 Subnet table has reached maximum capacity
40029 Unable to resolve Orchestrator DNS name
4002a Builtin CA certificate is not valid
4002b CA certificate Bundle is not valid
4002c A BGP peer session is no longer in Established state
4002d An IP SLA monitor is in Down state
4002e An OSPF neighbor session is no longer in Full state
4002f DNS Proxy is down
40030 EC Licensing Warning
50001 WAN-side transmit throughput TCA
50002 LAN-side receive throughput TCA
50003 Total number of optimized flows TCA
50004 Total number of flows TCA
50005 File-system utilization TCA
50006 Tunnel latency TCA
50007 Tunnel loss pre-FEC TCA
50008 Tunnel loss post-FEC TCA
50009 Tunnel OOP pre-POC TCA
5000a Tunnel OOP post-POC TCA
5000b Tunnel utilization TCA
5000c Tunnel reduction TCA
5000d Appliance capacity TCA
----- ------------------------------------------"
::= { activeAlarmEntry 13 }
--
-- Notifications
--
spsNotifyAlarm NOTIFICATION-TYPE
OBJECTS { spsActiveAlarmSource,
spsActiveAlarmSeverity,
spsActiveAlarmDescr
}
STATUS current
DESCRIPTION
"A notification that the system has just generated and alarm."
::= { silverpeakMgmtMIBNotifications 1 }
--
-- Conformance information
--
silverpeakMgmtMIBCompliances OBJECT IDENTIFIER ::= { silverpeakMgmtMIBConformance 1 }
silverpeakMgmtMIBGroups OBJECT IDENTIFIER ::= { silverpeakMgmtMIBConformance 2 }
-- Compliance statements
silverpeakMgmtCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for agents implementing
silverpeakMgmtMIB."
MODULE
MANDATORY-GROUPS {
silverpeakMgmtGroup,
silverpeakMgmtNotifyGroup
}
::= { silverpeakMgmtMIBCompliances 1 }
--
-- Units of conformance
--
silverpeakMgmtGroup OBJECT-GROUP
OBJECTS {
spsSystemVersion,
spsProductModel,
spsOperStatus,
spsActiveAlarmSeqNum,
spsActiveAlarmSeverity,
spsActiveAlarmName,
spsActiveAlarmDescr,
spsActiveAlarmSource,
spsActiveAlarmType,
spsActiveAlarmAcked,
spsActiveAlarmActive,
spsActiveAlarmClearable,
spsActiveAlarmLogTime,
spsActiveAlarmServiceAffect
}
STATUS current
DESCRIPTION "A collection of objects used to retrieve management
information from Silverpeak Systems appliances.
"
::= { silverpeakMgmtMIBGroups 1 }
silverpeakMgmtNotifyGroup NOTIFICATION-GROUP
NOTIFICATIONS {
spsNotifyAlarm
}
STATUS current
DESCRIPTION "A collection of the Notifications supported in
the management MIB."
::= { silverpeakMgmtMIBGroups 3 }
END
|