Initial commit
This commit is contained in:
467
MIBS/silverpeak/SILVERPEAK-MGMT-MIB
Normal file
467
MIBS/silverpeak/SILVERPEAK-MGMT-MIB
Normal file
@ -0,0 +1,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
|
||||
|
92
MIBS/silverpeak/SILVERPEAK-PRODUCTS-MIB
Normal file
92
MIBS/silverpeak/SILVERPEAK-PRODUCTS-MIB
Normal file
@ -0,0 +1,92 @@
|
||||
-- ************************************************************
|
||||
-- SILVERPEAK-PRODUCTS-MIB.txt: Silver Peak Systems, Inc.
|
||||
-- Product Object Identifier Assignments
|
||||
--
|
||||
-- Copyright (c) 2011 Silver Peak Systems, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- ************************************************************
|
||||
--
|
||||
|
||||
SILVERPEAK-PRODUCTS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
silverpeakModules,
|
||||
silverpeakProducts
|
||||
FROM SILVERPEAK-SMI;
|
||||
|
||||
silverpeakProductsMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201101240000Z"
|
||||
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 object identifiers that are
|
||||
assigned to various hardware platforms, and hence are
|
||||
returned as values for sysObjectID."
|
||||
::= { silverpeakProducts 2 }
|
||||
|
||||
|
||||
spsNX2500 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 1 }
|
||||
spsNX3500 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 2 }
|
||||
spsNX5500 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 3 }
|
||||
spsNX7500 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 4 }
|
||||
spsNX8500 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 5 }
|
||||
spsNX1700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 6 }
|
||||
spsNX2600 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 7 }
|
||||
spsNX2610 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 8 }
|
||||
spsNX2700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 9 }
|
||||
spsNX3600 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 10 }
|
||||
spsNX3700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 11 }
|
||||
spsNX5504 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 12 }
|
||||
spsNX5600 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 13 }
|
||||
spsNX5700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 14 }
|
||||
spsNX7504 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 15 }
|
||||
spsNX7600 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 16 }
|
||||
spsNX7700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 17 }
|
||||
spsNX8504 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 18 }
|
||||
spsNX8600 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 19 }
|
||||
spsNX8700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 20 }
|
||||
spsNX9610 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 21 }
|
||||
spsNX9700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 22 }
|
||||
spsVX0100 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 23 }
|
||||
spsVX2000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 24 }
|
||||
spsVX5000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 25 }
|
||||
spsVX1000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 26 }
|
||||
spsVX3000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 27 }
|
||||
spsNX10700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 28 }
|
||||
spsVRX8 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 29 }
|
||||
spsVXXpress OBJECT IDENTIFIER ::= { silverpeakProductsMIB 30 }
|
||||
spsVXUnlicensed OBJECT IDENTIFIER ::= { silverpeakProductsMIB 31 }
|
||||
spsVX500 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 32 }
|
||||
spsVX6000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 33 }
|
||||
spsVX7000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 34 }
|
||||
spsVX8000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 35 }
|
||||
spsVX9000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 36 }
|
||||
spsNX11700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 37 }
|
||||
spsVRX2 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 38 }
|
||||
spsVRX4 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 39 }
|
||||
spsNX6700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 40 }
|
||||
spsVRX6 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 41 }
|
||||
spsNX700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 42 }
|
||||
spsNX12700 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 43 }
|
||||
spsVX0000 OBJECT IDENTIFIER ::= { silverpeakProductsMIB 44 }
|
||||
spsCPX OBJECT IDENTIFIER ::= { silverpeakProductsMIB 45 }
|
||||
spsECV OBJECT IDENTIFIER ::= { silverpeakProductsMIB 46 }
|
||||
spsECXS OBJECT IDENTIFIER ::= { silverpeakProductsMIB 47 }
|
||||
spsECS OBJECT IDENTIFIER ::= { silverpeakProductsMIB 48 }
|
||||
spsECM OBJECT IDENTIFIER ::= { silverpeakProductsMIB 49 }
|
||||
spsECL OBJECT IDENTIFIER ::= { silverpeakProductsMIB 50 }
|
||||
spsECXL OBJECT IDENTIFIER ::= { silverpeakProductsMIB 51 }
|
||||
spsECUS OBJECT IDENTIFIER ::= { silverpeakProductsMIB 52 }
|
||||
spsECMB OBJECT IDENTIFIER ::= { silverpeakProductsMIB 53 }
|
||||
spsECMP OBJECT IDENTIFIER ::= { silverpeakProductsMIB 54 }
|
||||
spsECLB OBJECT IDENTIFIER ::= { silverpeakProductsMIB 55 }
|
||||
spsECLP OBJECT IDENTIFIER ::= { silverpeakProductsMIB 56 }
|
||||
spsECXLB OBJECT IDENTIFIER ::= { silverpeakProductsMIB 57 }
|
||||
spsECXLP OBJECT IDENTIFIER ::= { silverpeakProductsMIB 58 }
|
||||
|
||||
END
|
69
MIBS/silverpeak/SILVERPEAK-SMI
Normal file
69
MIBS/silverpeak/SILVERPEAK-SMI
Normal file
@ -0,0 +1,69 @@
|
||||
-- ************************************************************
|
||||
-- SILVERPEAK-SMI.txt: Silver Peak Systems, Inc.
|
||||
-- Structure of Management Information
|
||||
--
|
||||
-- Copyright (c) 2011 Silver Peak Systems, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- ************************************************************
|
||||
--
|
||||
|
||||
SILVERPEAK-SMI DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-IDENTITY,
|
||||
enterprises
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
silverpeakNW MODULE-IDENTITY
|
||||
LAST-UPDATED "201101240000Z"
|
||||
ORGANIZATION "Silver Peak Systems, Inc."
|
||||
CONTACT-INFO
|
||||
" URL: http://www.silver-peak.com/contact
|
||||
E-mail: support@silver-peak.com "
|
||||
DESCRIPTION
|
||||
"The Structure of Management Information for the
|
||||
Silverpeak Systems enterprise."
|
||||
::= { enterprises 23867 }
|
||||
|
||||
--
|
||||
-- silverpeakNW 10 is being saved for LDAP usage
|
||||
--
|
||||
|
||||
silverpeakProducts OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"silverpeakProducts is the root OBJECT IDENTIFIER from
|
||||
which sysObjectID values are assigned. Actual values
|
||||
are defined in SILVERPEAK-PRODUCTS-MIB."
|
||||
::= { silverpeakNW 1 }
|
||||
|
||||
silverpeakModules OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"silverpeakModules provides a root object identifier from
|
||||
which MODULE-ENTITY values may be assigned."
|
||||
::= { silverpeakNW 2 }
|
||||
|
||||
silverpeakMgmt OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"silverpeakMgmt is the main subtree for management mibs."
|
||||
::= { silverpeakNW 3 }
|
||||
|
||||
silverpeakNotifications OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"silverpeakNotifications is the main subtree for agent notifications."
|
||||
::= { silverpeakNW 4 }
|
||||
|
||||
silverpeakAgentCapability OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"silverpeakAgentCapability provides a root object identifier
|
||||
from which AGENT-CAPABILITIES values may be assigned."
|
||||
::= { silverpeakNW 5 }
|
||||
|
||||
|
||||
END
|
137
MIBS/silverpeak/SILVERPEAK-TC
Normal file
137
MIBS/silverpeak/SILVERPEAK-TC
Normal file
@ -0,0 +1,137 @@
|
||||
-- ************************************************************
|
||||
-- SILVERPEAK-TC.txt: Silver Peak Systems, Inc.
|
||||
-- MIB Textual Conventions
|
||||
--
|
||||
-- Copyright (c) 2011 Silver Peak Systems, Inc.
|
||||
-- All rights reserved.
|
||||
--
|
||||
-- ************************************************************
|
||||
--
|
||||
|
||||
SILVERPEAK-TC DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION,
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
silverpeakModules
|
||||
FROM SILVERPEAK-SMI;
|
||||
|
||||
|
||||
silverpeakTextualConventions MODULE-IDENTITY
|
||||
LAST-UPDATED "201101240000Z"
|
||||
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 textual conventions used throughout
|
||||
Silverpeak Systems enterprise mibs."
|
||||
::= { silverpeakModules 1 }
|
||||
|
||||
--
|
||||
-- General TCs for all Sub-systems
|
||||
--
|
||||
|
||||
SilverpeakDescription ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Represents a string description used for any MIB object.
|
||||
"
|
||||
SYNTAX DisplayString (SIZE(0..255))
|
||||
|
||||
SilverpeakYesNo ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Textual convention for yes/no enum.
|
||||
"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
no(0),
|
||||
yes(1)
|
||||
}
|
||||
|
||||
--
|
||||
-- TCs for Alarm Sub-system
|
||||
--
|
||||
|
||||
SilverpeakSeqNum ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Represents the unique sequence number associated with each
|
||||
generated trap.
|
||||
"
|
||||
SYNTAX INTEGER (1..2147483647)
|
||||
|
||||
SilverpeakAlarmSeverity ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Represents the perceived alarm condition associated with a
|
||||
service affecting condition and/or event.
|
||||
|
||||
indeterminate(8) -
|
||||
Indicates that the severity level cannot be
|
||||
determined.
|
||||
|
||||
unacknowledged(7) -
|
||||
Indicates that the severity level cannot be
|
||||
determined.
|
||||
|
||||
acknowledged(6) -
|
||||
Indicates that the severity level cannot be
|
||||
determined.
|
||||
|
||||
cleared(5) -
|
||||
Indicates a previous alarm condition has been
|
||||
cleared. It is not required (unless specifically
|
||||
stated elsewhere on a case by case basis) that an
|
||||
alarm condition that has been cleared will produce
|
||||
a notification or other event containing an
|
||||
alarm severity with this value.
|
||||
|
||||
critical(4) -
|
||||
Indicates that a service or safety affecting
|
||||
condition has occurred and an immediate
|
||||
corrective action is required.
|
||||
|
||||
major(3) -
|
||||
Indicates that a service affecting condition has
|
||||
occurred and an urgent corrective action is
|
||||
required.
|
||||
|
||||
minor(2) -
|
||||
Indicates the existence of a non-service affecting
|
||||
condition and that corrective action should be
|
||||
taken in order to prevent a more serious (for
|
||||
example, service or safety affecting) condition.
|
||||
|
||||
warning(1) -
|
||||
Indicates the detection of a potential or impending
|
||||
service or safety affecting condition, before any
|
||||
significant effects have been felt.
|
||||
|
||||
info(0) -
|
||||
Indicates an alarm condition that does not
|
||||
meet any other severity definition. This can
|
||||
include important, but non-urgent, notices or
|
||||
informational events.
|
||||
"
|
||||
REFERENCE
|
||||
"ITU-X.733"
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
info(0),
|
||||
warning(1),
|
||||
minor(2),
|
||||
major(3),
|
||||
critical(4),
|
||||
cleared(5),
|
||||
acknowledged(6),
|
||||
unacknowledged(7),
|
||||
indeterminate(8)
|
||||
}
|
||||
|
||||
|
||||
END
|
Reference in New Issue
Block a user