Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

311
mibs/marvell/QLGC-CHFW-MIB Normal file
View File

@ -0,0 +1,311 @@
-- QLGC-CHFW-MIB.my: QLogic Firmware Up/Downgrade MIB
--
-- Copyright 1994-2005 QLogic Corporation
-- All Rights Reserved
QLGC-CHFW-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, zeroDotZero
FROM SNMPv2-SMI
AutonomousType, DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InetAddressType, InetAddress, InetPortNumber
FROM INET-ADDRESS-MIB -- RFC 3291
qlogicMgmt
FROM QLOGIC-SMI
;
qlgcChangeFirmwareModule MODULE-IDENTITY
LAST-UPDATED "200601260000Z" -- January 26, 2006
ORGANIZATION "QLogic Corp."
CONTACT-INFO
"
QLogic Customer Service (SNMP)
Postal: 26650 Aliso Viejo Parkway
Aliso Viejo, California 92656
USA
Tel: +1 952-932-4040
E-mail: support@qlogic.com
"
DESCRIPTION
"The QLogic (firmware) Download MIB module."
REVISION "200601260000Z" -- January 26, 2006
DESCRIPTION
"Added limits to the DisplayString for qlgcChFwDwldPathName
and qlgcChFwDwldFileName objects."
REVISION "200508240000Z" -- August 24, 2005
DESCRIPTION
"Remove hyphens in the named numbers of qlgcChFwOpRequest.
Complete the CONTACT-INFO with something reasonable."
REVISION "200506170000Z" -- June 17, 2005
DESCRIPTION
"Initial version of the QLogic (firmware) Download MIB module."
::= { qlogicMgmt 1 }
qlgcChFwNotifications OBJECT IDENTIFIER ::= { qlgcChangeFirmwareModule 0 }
qlgcChFwObjects OBJECT IDENTIFIER ::= { qlgcChangeFirmwareModule 1 }
qlgcChFwConformance OBJECT IDENTIFIER ::= { qlgcChangeFirmwareModule 2 }
-- Textual Conventions
qlgcChFwOpTypes OBJECT IDENTIFIER ::= { qlgcChFwObjects 1 }
-- The following three OIDs define the primary states in which
-- the download process may be found. In addition, these primary
-- states also act as place holders for possible errors that
-- were encountered in that state
qlgcChFwOperDownload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This defines a request for the switch to download
the firmware as specified in the Download parameters."
::= { qlgcChFwOpTypes 1 }
qlgcChFwOperInstall OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This defines a request for the switch to install
the firmware as specified in the Install parameters."
::= { qlgcChFwOpTypes 2 }
qlgcChFwOperReset OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This defines a request for the switch to reset
itself as specified in the Reset parameters."
::= { qlgcChFwOpTypes 3 }
-- What follows is a list of possible state/error OIDs that
-- could be defined. It is not conclusive and is open for
-- enhancement should error reporting require more precision
qlgcChFwDwldNoErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested download has completed with no error."
::= { qlgcChFwOperDownload 1 }
qlgcChFwDwldHostErr OBJECT-IDENTITY
STATUS obsolete
DESCRIPTION
"The requested download has completed with a host
error. This could be due to an incomplete Download
parameter list, an error encountered when trying
to communicate with the host, or a network
failure."
::= { qlgcChFwOperDownload 2 }
qlgcChFwDwldFileErr OBJECT-IDENTITY
STATUS obsolete
DESCRIPTION
"The requested download has completed with a file
error. This could be due to an incomplete Download
parameter list or an invalid character in the
filename."
::= { qlgcChFwOperDownload 3 }
qlgcChFwDwldTftpErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested download has completed with a TFTP
error. This could be due to an incomplete Download
parameter list, an error encountered when trying
to communicate with the host, a network
failure or an invalid character in the
filename."
::= { qlgcChFwOperDownload 4 }
qlgcChFwInstallNoErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested install has completed with no error."
::= { qlgcChFwOperInstall 1 }
qlgcChFwInstallFileErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested install has completed with a file
error. This could be due to an incomplete Install
parameter list or an error encountered when trying
to install the file."
::= { qlgcChFwOperInstall 2 }
qlgcChFwInstallFileNoAdminErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested install has completed with a permissions
error. This could be due to not being able to set Admin
status, perhaps because it is in use by another user."
::= { qlgcChFwOperInstall 3 }
qlgcChFwResetNoErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This will presumably never be seen and is only
included in the interests of completeness."
::= { qlgcChFwOperReset 1 }
qlgcChFwResetErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested reset has completed with an error.
This could be due to an incomplete Reset parameter
list or an error encountered when trying reset the
switch."
::= { qlgcChFwOperReset 2 }
qlgcChFwResetNoAdminErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The requested reset has completed with an error.
This could be due to not being able to set Admin
status, perhaps because it is in use by another user."
::= { qlgcChFwOperReset 3 }
------------------------------------------------------------------------
qlgcChFwOpControl OBJECT IDENTIFIER ::= { qlgcChFwObjects 2 }
qlgcChFwOpResult OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an OBJECT IDENTIFIER
which identifies the present state of the
switch in completing the task requested in
qlgcChFwOpRequest."
DEFVAL { zeroDotZero }
::= { qlgcChFwOpControl 1 }
qlgcChFwOpRequest OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
downloadOnly(2),
installOnly(3),
resetOnly(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The requested action to be initiated through the objects
defined in this MIB."
::= { qlgcChFwOpControl 2 }
qlgcChFwDwldHostAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of Internet Network Address contained in the
corresponding instance of the qlgcChFwDwldHostAddr."
DEFVAL { ipv4 }
::= { qlgcChFwOpControl 3 }
qlgcChFwDwldHostAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The download host's Internet Network Address."
::= { qlgcChFwOpControl 4 }
qlgcChFwDwldHostPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The download host's Port number."
DEFVAL { 69 }
::= { qlgcChFwOpControl 5 }
qlgcChFwDwldPathName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The full path of directories leading to that where the file
to be fetched is found.
It is assumed that the host is running one of the variations
of the Unix operating system (eg, Linux). See the default
value for an example of a full path definition."
DEFVAL { "/" }
::= { qlgcChFwOpControl 6 }
qlgcChFwDwldFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded. Do not include any
path name information - especially if the qlgcChFwDwldPathName
is using its default."
::= { qlgcChFwOpControl 7 }
qlgcChFwResetMethod OBJECT-TYPE
SYNTAX INTEGER {
reset(1), -- Regular "hard" reset
ndcla(2) -- Non-destructive Code Load Activation
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the method to use when resetting the
switch."
DEFVAL { reset }
::= { qlgcChFwOpControl 8 }
------------------------------------------------------------------------
-- Conformance Statements
qlgcChFwGroups OBJECT IDENTIFIER ::= { qlgcChFwConformance 1 }
qlgcChFwGroup OBJECT-GROUP
OBJECTS {
qlgcChFwOpResult,
qlgcChFwOpRequest,
qlgcChFwDwldHostAddrType,
qlgcChFwDwldHostAddr,
qlgcChFwDwldHostPort,
qlgcChFwDwldPathName,
qlgcChFwDwldFileName,
qlgcChFwResetMethod
}
STATUS current
DESCRIPTION
"A collection of objects providing information about iSCSI
instances."
::= { qlgcChFwGroups 1 }
qlgcChFwCompliances OBJECT IDENTIFIER ::= { qlgcChFwConformance 2 }
qlgcChFwComplianceV1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Initial version of compliance statement based on
initial version of MIB.
If an implementation can be both a target and an
initiator, all groups are mandatory."
MODULE -- this module
MANDATORY-GROUPS {
qlgcChFwGroup
}
::= { qlgcChFwCompliances 1 }
END

View File

@ -0,0 +1,524 @@
QLGC-GLOBAL-CAPABILITY DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY
FROM SNMPv2-SMI
AGENT-CAPABILITIES
FROM SNMPv2-CONF
DisplayString
FROM SNMPv2-TC
qlogicAgentCapability
FROM QLOGIC-SMI
;
qlgcSANBox2Capability MODULE-IDENTITY
LAST-UPDATED "200909290000Z" -- September 29, 2009
ORGANIZATION "QLOGIC Corporation"
CONTACT-INFO "QLOGIC Technical Support
Postal: QLogic Corporation
4601 Dean Lakes Blvd
Shakopee, MN 55379
US
Tel: +1 952 932 4040
Fax: +1 952 932 4018
E-mail: support@QLogic.com"
DESCRIPTION
"The capabilities statement for the QLogic
enterprise switch modules."
REVISION "200909290000Z" -- September 29, 2009
DESCRIPTION
"The syntax and semantics errors reported by the
smilint program were resolved."
REVISION "200805070000Z" -- May 7, 2008
DESCRIPTION
"Make some objects included with release 7.4
read-only, and general cleanup."
REVISION "200702270000Z" -- February 27, 2007
DESCRIPTION
"Clean up FE-MIB objects to reflect the capabilities
that are currently being supported."
REVISION "200702150000Z" -- February 15, 2007
DESCRIPTION
"Modify name to reflect specific agent capabilities, even
if they are in a sense generic."
REVISION "0307252359Z" -- July 25, 2003
DESCRIPTION
"Initial version of this MIB module."
::= { qlogicAgentCapability 1 }
sanbox2Agent AGENT-CAPABILITIES
PRODUCT-RELEASE "SANBox-2 agent release 2.1"
STATUS current
DESCRIPTION "QLogic release for SANBox-2"
--
-- MIB-2
--
SUPPORTS IF-MIB
INCLUDES { interfaces }
VARIATION ifAdminStatus
ACCESS read-only
DESCRIPTION "Supported readonly"
VARIATION ifPromiscuousMode
ACCESS read-only
DESCRIPTION "Supported readonly"
SUPPORTS RFC1213-MIB
INCLUDES { at }
VARIATION atPhysAddress
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS RFC1213-MIB
INCLUDES { ip }
VARIATION ipRouteIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric1
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric2
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric3
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric4
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteNextHop
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteAge
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMask
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric5
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS IP-MIB
INCLUDES { ip }
VARIATION ipForwarding
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipDefaultTTL
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToMediaPhysAddress
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToMediaType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressRowStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToPhysicalPhysAddress
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToPhysicalType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToPhysicalRowStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IpForwarding
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IpDefaultHopLimit
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS IPV6-MIB
INCLUDES { ip }
VARIATION ipv6IfAdminStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6Forwarding
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6DefaultHopLimit
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IfDescr
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IfAdminStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
---
--- IP-FORWARD-MIB
---
SUPPORTS IP-FORWARD-MIB
INCLUDES { ip }
VARIATION ipCidrRouteIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteInfo
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteNextHopAS
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric1
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric2
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric3
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric4
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric5
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteProto
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteAge
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteNextHopAS
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric1
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric2
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric3
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric4
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric5
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS TCP-MIB
INCLUDES { tcp }
VARIATION tcpConnectionState
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- SNMP-MIB
--
SUPPORTS SNMPv2-MIB
INCLUDES { snmp }
VARIATION snmpEnableAuthenTraps
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- SNMP-USER-BASED-SM-MIB
--
SUPPORTS SNMP-USER-BASED-SM-MIB
INCLUDES { usmUser }
VARIATION usmUserSpinLock
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserCloneFrom
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserPublic
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- SNMP-VIEW-BASED-ACM-MIB
--
SUPPORTS SNMP-VIEW-BASED-ACM-MIB
INCLUDES { vacmMIBObjects }
VARIATION vacmSecurityToGroupStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmSecurityToGroupStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmGroupName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessContextMatch
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessReadViewName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessWriteViewName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessNotifyViewName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyMask
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- FC-MIB
--
SUPPORTS FCMGMT-MIB
INCLUDES { connSet }
VARIATION connUnitUrl
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION systemURL
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION connUnitContact
SYNTAX DisplayString (SIZE(1..64))
DESCRIPTION "1 to 64 characters"
VARIATION connUnitName
SYNTAX DisplayString (SIZE(1..32))
DESCRIPTION "1 to 32 characters"
VARIATION connUnitLocation
SYNTAX DisplayString (SIZE(1..64))
DESCRIPTION "1 to 64 characters"
VARIATION connUnitPortName
SYNTAX DisplayString (SIZE(1..32))
DESCRIPTION "1 to 32 characters"
--
-- FE-MIB
--
SUPPORTS FIBRE-CHANNEL-FE-MIB
INCLUDES { fcFeConfigGroup, fcFeStatusGroup, fcFeErrorGroup }
VARIATION fcFeFabricName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFeElementName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFeModuleLastChange
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFeModuleName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFxPortBbCreditAvailable
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortAdminMode
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortPhysLastChange
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortFcphVersionAgreed
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortNxPortBbCredit
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortNxPortRxDataFieldSize
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortConnectedNxPort
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortBbCreditModel
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFxPortSigLosses
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortDelimiterErrors
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1InFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1OutFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1InOctets
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1OutOctets
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1Discards
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1FbsyFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1FrjtFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1InConnections
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1OutConnections
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1ConnTime
ACCESS not-implemented
DESCRIPTION "Not implemented"
::= { qlgcSANBox2Capability 1 }
END

120
mibs/marvell/QLGC-MP-MIB Normal file
View File

@ -0,0 +1,120 @@
-- QLGC-MP-MIB.my: QLogic Maintenance Panel MIB
--
-- Copyright (c) 1994-2009 QLogic Corporation.
-- All Rights Reserved
QLGC-MP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
qlogicMgmt
FROM QLOGIC-SMI
;
qlgcMaintenancePanelModule MODULE-IDENTITY
LAST-UPDATED "200909290000Z" -- September 29, 2009
ORGANIZATION "QLogic Corp."
CONTACT-INFO
"
QLogic Customer Service (SNMP)
Postal: 26650 Aliso Viejo Parkway
Aliso Viejo, California 92656
USA
Tel: +1 952-932-4040
E-mail: support@qlogic.com
"
DESCRIPTION
"The QLogic maintenance panel MIB module."
REVISION "200909290000Z" -- September 29, 2009
DESCRIPTION
"The syntax and semantics errors reported by the
smilint program were resolved."
REVISION "200703310000Z" -- March 31, 2007
DESCRIPTION
"Initial version of this MIB module."
::= { qlogicMgmt 2 }
qlgcMPNotifications OBJECT IDENTIFIER ::= { qlgcMaintenancePanelModule 0 }
qlgcMPObjects OBJECT IDENTIFIER ::= { qlgcMaintenancePanelModule 1 }
qlgcMPConformance OBJECT IDENTIFIER ::= { qlgcMaintenancePanelModule 2 }
-- Textual Conventions
MPEpromStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the current status of eprom."
SYNTAX INTEGER {
ok(1),
alarm(2)}
------------------------------------------------------------------------
qlgcMPStatus OBJECT IDENTIFIER ::= { qlgcMPObjects 1 }
qlgcMPEpromStatus OBJECT-TYPE
SYNTAX MPEpromStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the eprom monitor."
::= { qlgcMPStatus 1 }
------------------------------------------------------------------------
-- Related traps
qlgcMPStatusChange NOTIFICATION-TYPE
OBJECTS { qlgcMPEpromStatus }
STATUS current
DESCRIPTION
"The status of the maintenance panel eprom monitor changed."
::= { qlgcMPNotifications 1 }
------------------------------------------------------------------------
-- Conformance Statements
qlgcMPGroups OBJECT IDENTIFIER ::= { qlgcMPConformance 1 }
qlgcMPGroup OBJECT-GROUP
OBJECTS {
qlgcMPEpromStatus
}
STATUS current
DESCRIPTION
"A single point status report on the health of eprom
located on the maintenance panel."
::= { qlgcMPGroups 1 }
qlgcMPCompliances OBJECT IDENTIFIER ::= { qlgcMPConformance 2 }
qlgcMPComplianceV1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Initial version of compliance statement based on
initial version of MIB.
If an implementation can be both a target and an
initiator, all groups are mandatory."
MODULE -- this module
MANDATORY-GROUPS {
qlgcMPGroup
}
::= { qlgcMPCompliances 1 }
END -- QLGC-MP-MIB DEFINITIONS

380
mibs/marvell/QLOGIC-MIB Normal file
View File

@ -0,0 +1,380 @@
-- QLOGIC-MIB.my: QLogic Object Identifier Assignments
--
-- Copyright (c) 1994-2009 QLogic Corporation.
-- All Rights Reserved
QLOGIC-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
enterprises, Integer32, Counter32, Unsigned32
FROM SNMPv2-SMI
connUnitId
FROM FCMGMT-MIB
ancorOidTree
FROM QLOGIC-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC;
ancorPortModule MODULE-IDENTITY
LAST-UPDATED "200909290000Z" -- September 29, 2009
ORGANIZATION "QLOGIC Corporation"
CONTACT-INFO "QLOGIC Technical Support
Postal: QLogic Corporation
6321 Bury Drive
Eden Prairie, MN 55346
US
Tel: +1 952 932 4040
Fax: +1 952 932 4018
E-mail: support@QLogic.com"
DESCRIPTION
"This table replaces the fcFxPortPhysTable module
defined in FIBRE-CHANNEL-FE-MIB. It defines volatile
control objects for ports in a QLogic SANbox switch."
REVISION "200909290000Z" -- September 29, 2009
DESCRIPTION
"The syntax and semantics errors reported by the
smilint program were resolved."
REVISION "200610110000Z" -- October 11, 2006
DESCRIPTION
"Changed module identity from qlogic to ancor to remove conflicts
with existing definitions in the QLOGIC-SMI.
Commented out duplicate definitions of fcQxPortOperMode and
fcQxPortAdminMode that overlap with fcQxQuailPortOperMode
and fcQxQuailPortAdminMode."
::= { ancorOidTree 3 }
qlSB2PortControl OBJECT IDENTIFIER ::= { ancorPortModule 10 }
qlSB2PortStatus OBJECT IDENTIFIER ::= { ancorPortModule 11 }
FcQlModuleIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the module index within a conceptual table."
SYNTAX Unsigned32
FcQxPortIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the Port index within a conceptual table."
SYNTAX Unsigned32
------------------------------------------------------------------------------
-- Port Control group
-- the QxPort Physical Level table
-- This table contains, one entry for each QxPort in the
-- Fabric Element, the physical level status and parameters
-- of the QxPorts.
fcQxPortPhysTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcQxPortPhysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each QxPort in the
Fabric Element, physical level status and parameters of the
QxPorts."
::= { qlSB2PortControl 1 }
fcQxPortPhysEntry OBJECT-TYPE
SYNTAX FcQxPortPhysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing physical level status and parameters of
a QxPort."
INDEX { fcQxPortPhysModule, fcQxPortPhysIndex }
::= { fcQxPortPhysTable 1 }
FcQxPortPhysEntry ::=
SEQUENCE {
fcQxPortPhysModule
FcQlModuleIndex,
fcQxPortPhysIndex
FcQxPortIndex,
fcQxPortPhysAdminStatus
INTEGER,
fcQxPortPhysOperStatus
INTEGER,
fcQxQuailPortPhysAdminStatus
INTEGER,
fcQxQuailPortPhysOperStatus
INTEGER,
fcQxQuailPortPhysReasonCode
INTEGER
}
fcQxPortPhysModule OBJECT-TYPE
SYNTAX FcQlModuleIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the module within the Fabric Element
for which this entry contains information. This value is
never greater than fcFeModuleCapacity."
::= { fcQxPortPhysEntry 1 }
fcQxPortPhysIndex OBJECT-TYPE
SYNTAX FcQxPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the QxPort within the module. This
number ranges from 1 to the value of fcFeModulePortCapacity
for the associated module. The value remains constant for
the identified QxPort until the module is re-initialized."
::= { fcQxPortPhysEntry 2 }
fcQxPortPhysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1), -- place port online
offline (2), -- take port offline
testing (3) -- initiate test procedures
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the QxPort. A management station may
place the QxPort in a desired state by setting this object
accordingly. The testing(3) state indicates that no
operational frames can be passed. When a Fabric Element
initializes, all QxPorts start with fcQxPortPhysAdminStatus
in the offline(2) state. As the result of either explicit
management action or per configuration information
accessible by the Fabric Element, fcQxPortPhysAdminStatus
is then changed to either the online(1) or testing(3)
states, or remains in the offline state."
::= { fcQxPortPhysEntry 3 }
fcQxPortPhysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1), -- Login may proceed
offline (2), -- Login cannot proceed
testing (3), -- port is under test
linkFailure (4) -- failure after online/testing
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of the QxPort. The
testing(3) indicates that no operational frames can be
passed. If fcQxPortPhysAdminStatus is offline(2) then
fcQxPortPhysOperStatus should be offline(2). If
fcQxPortPhysAdminStatus is changed to online(1) then
fcQxPortPhysOperStatus should change to online(1) if the
QxPort is ready to accept Fabric Login request from the
attached NxPort; it should proceed and remain in the link-
failure(4) state if and only if there is a fault that
prevents it from going to the online(1) state."
::= { fcQxPortPhysEntry 4 }
fcQxQuailPortPhysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1), -- place port online
down (2) -- take port offline
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the port."
::= { fcQxPortPhysEntry 5 }
fcQxQuailPortPhysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1), -- online
down (2) -- offline
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of the QxPort."
::= { fcQxPortPhysEntry 6 }
fcQxQuailPortPhysReasonCode OBJECT-TYPE
SYNTAX INTEGER {
unknown (1), -- Unknown
up (2), -- None
down (3), -- Administratively down
notConnected (4), -- Link failure or not connected
sfpAbsent (5), -- SFP not present
sfpUnsupported (6), -- Unknown SFP
hardwareFailure (7), -- Hardware failure
isolated (8) -- Isolated
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason for the current operational status of the port.
If the status is 'up', this will be 'up'. If the status is
'down', the reason code will indicate the reason, e.g.
'isolated', 'sfpAbsent', etc."
::= { fcQxPortPhysEntry 7 }
------------------------------------------------------------------------------
-- the Status group
-- This group consists of tables that contains operational
-- status and established service parameters for the Fabric
-- Element and the attached NxPorts.
-- The QxPort Status table
-- This table contains, one entry for each QxPort,
-- the operational status and parameters of the FxPorts.
fcQxPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcQxPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each QxPort in the
Fabric Element, operational status and parameters of the
QxPorts."
::= { qlSB2PortStatus 1 }
fcQxPortStatusEntry OBJECT-TYPE
SYNTAX FcQxPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing operational status and parameters of a
QxPort."
INDEX { fcQxPortStatusModule, fcQxPortStatusIndex }
::= { fcQxPortStatusTable 1 }
FcQxPortStatusEntry ::=
SEQUENCE {
fcQxPortStatusModule
FcQlModuleIndex,
fcQxPortStatusIndex
FcQxPortIndex,
-- fcQxPortOperMode
-- INTEGER,
-- fcQxPortAdminMode
-- INTEGER
fcQxQuailPortOperMode
INTEGER,
fcQxQuailPortAdminMode
INTEGER
}
fcQxPortStatusModule OBJECT-TYPE
SYNTAX FcQlModuleIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the module within the Fabric Element
for which this entry contains information. This value is
never greater than fcFeModuleCapacity."
::= { fcQxPortStatusEntry 1 }
fcQxPortStatusIndex OBJECT-TYPE
SYNTAX FcQxPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the QxPort within the module. This
number ranges from 1 to the value of fcFeModulePortCapacity
for the associated module. The value remains constant for
the identified QxPort until the module is re-initialized."
::= { fcQxPortStatusEntry 2 }
-- fcQxPortOperMode OBJECT-TYPE
-- SYNTAX INTEGER {
-- glPort (1),
-- fPort (2),
-- lPort (3),
-- ePort (4),
-- flPort (6)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The current operational mode of the FxPort."
-- ::= { fcQxPortStatusEntry 3 }
-- fcQxPortAdminMode OBJECT-TYPE
-- SYNTAX INTEGER {
-- glPort (1),
-- fPort (2),
-- lPort (3),
-- ePort (4),
-- flPort (6)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The desired operational mode of the FxPort."
-- ::= { fcQxPortStatusEntry 4 }
fcQxQuailPortOperMode OBJECT-TYPE
SYNTAX INTEGER {
auto (1),
fPort (2),
flPort (3),
ePort (4),
fxPort (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational mode of the FxPort."
::= { fcQxPortStatusEntry 3 }
fcQxQuailPortAdminMode OBJECT-TYPE
SYNTAX INTEGER {
auto (1),
fPort (2),
flPort (3),
ePort (4),
fxPort (6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired operational mode of the FxPort."
::= { fcQxPortStatusEntry 4 }
------------------------------------------------------------------------------
-- Related traps
qlSB2PortLinkDown NOTIFICATION-TYPE
OBJECTS { fcQxPortPhysAdminStatus, fcQxPortPhysOperStatus }
STATUS current
DESCRIPTION
"A linkDown trap signifies that the SNMP entity, acting in
an agent role, has detected that the fcQxPortPhysOperStatus
object for one of its communication links has left the online
state and transitioned to some other state. The current state
is indicated by the included value of fcQxPortPhysOperStatus."
::= { ancorPortModule 0 10 }
qlSB2PortLinkUp NOTIFICATION-TYPE
OBJECTS { fcQxPortPhysAdminStatus, fcQxPortPhysOperStatus }
STATUS current
DESCRIPTION
"A linkUp trap signifies that the SNMP entity, acting in
an agent role, has detected that the fcQxPortPhysOperStatus
object for one of its communication links has entered the online
state from some other state. The current state is indicated by
the included value of fcQxPortPhysOperStatus."
::= { ancorPortModule 0 11 }
qlconnUnitAddedTrap NOTIFICATION-TYPE
OBJECTS { connUnitId }
STATUS current
DESCRIPTION
"A connUnit has been added to this agent.
This is a suppliment to the FCMGMT-MIB which only defines a
connUnitDeletedTrap"
::= { ancorPortModule 0 12 }
END
-- End of Object Definitions

View File

@ -0,0 +1,205 @@
-- QLOGIC-PRODUCTS-MIB.my: QLogic Product Object Identifier Assignments
--
-- Copyright (c) 1994-2013 QLogic Corporation.
-- All Rights Reserved
QLOGIC-PRODUCTS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY
FROM SNMPv2-SMI
qlogicModules, qlogicProducts
FROM QLOGIC-SMI
;
qlogicProductsMIB MODULE-IDENTITY
LAST-UPDATED "201303290000Z" -- March 29, 2013
ORGANIZATION "QLogic Corp."
CONTACT-INFO
"
QLogic Customer Service (SNMP)
Postal: 26650 Aliso Viejo Parkway
Aliso Viejo, California 92656
USA
Tel: +1 952-932-4040
E-mail: support@qlogic.com
"
DESCRIPTION
"This module defines the object identifiers that are
assigned to various hardware platforms, and hence are
returned as values for sysObjectID"
REVISION "201303290000Z" -- March 29, 2013
DESCRIPTION
"Added hpStorageWorksSN6000SingleFcSwitch and
hpStorageWorksSN6000DualFcSwitch systems.
Changed object name for qlogicProducts 34."
REVISION "200909290000Z" -- September 29, 2009
DESCRIPTION
"The syntax and semantics errors reported by the
smilint program were resolved."
REVISION "200903030000Z" -- March 03, 2009
DESCRIPTION
"Added sanBox3810 system."
REVISION "200902170000Z" -- February 17, 2009
DESCRIPTION
"Added iSR6140, iSR6142, mpx100, mpx110, iSR6200, mpx200 and mez50 systems."
REVISION "200610110000Z" -- October 11, 2006
DESCRIPTION
"Renamed EVA-iSCSI to evaISCSI."
REVISION "200610060000Z" -- October 6, 2006
DESCRIPTION
"Added sanBox6140, EVA-iSCSI."
REVISION "200508230000Z" -- August 23, 2005
DESCRIPTION
"Initial version of this MIB module."
::= { qlogicModules 1 }
-- OBJECT-IDENTITY will be used for products that can be public knowledge
-- OBJECT IDENTIFIERs are used to mark spaces reserved for products that
-- are in development and thus are not yet public info. Use the name
-- reservedX in which X is the index (reserved1 is "qlogicProducts 1".
sanBox6140 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"QLogic SANbox 6000 Series Intelligent Storage Router between
iSCSI and FibreChannel comprising sanBox6140 and sanBox6142."
::= { qlogicProducts 1 }
evaISCSI OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The HP Storage Works EVA iSCSI Connectivity Option."
::= { qlogicProducts 2 }
reserved3 OBJECT IDENTIFIER ::= { qlogicProducts 3 } -- historical
mpx100 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks mpx100"
::= { qlogicProducts 4 }
iSR6140 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"QLogic iSR-6140"
::= { qlogicProducts 5 }
iSR6142 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"QLogic iSR-6142"
::= { qlogicProducts 6 }
mpx110 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks mpx110"
::= { qlogicProducts 7 }
reserved8 OBJECT IDENTIFIER ::= { qlogicProducts 8 } -- unreleased product
sanBox5802 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"QLogic SANbox 5802 FC Switch."
::= { qlogicProducts 9 }
reserved10 OBJECT IDENTIFIER ::= { qlogicProducts 10 } -- unreleased product
hpStorageWorks820FcSwitch OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks 8/20q FC Switch"
::= { qlogicProducts 11 }
reserved12 OBJECT IDENTIFIER ::= { qlogicProducts 12 } -- unreleased product
reserved13 OBJECT IDENTIFIER ::= { qlogicProducts 13 } -- unreleased product
sanBox5800 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"QLogic SANbox 5800 FC Switch."
::= { qlogicProducts 14 }
reserved15 OBJECT IDENTIFIER ::= { qlogicProducts 15 } -- unreleased product
reserved16 OBJECT IDENTIFIER ::= { qlogicProducts 16 } -- unreleased product
iSR6200 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"QLogic iSR6200 system, High Availability Intelligent Storage Router"
::= { qlogicProducts 17 }
mpx200 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks MPX200 Multifunction Router"
::= { qlogicProducts 18 }
mez50 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks MEZ50"
::= { qlogicProducts 19 }
sanBox3810 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"SANbox 3810 FC Switch"
::= { qlogicProducts 20 }
reserved21 OBJECT IDENTIFIER ::= { qlogicProducts 21 } -- unreleased product
reserved22 OBJECT IDENTIFIER ::= { qlogicProducts 22 } -- unreleased product
reserved23 OBJECT IDENTIFIER ::= { qlogicProducts 23 } -- unreleased product
hpStorageWorksSN6000SingleFcSwitch OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks SN6000 Stackable Single Power Supply FC Switch"
::= { qlogicProducts 24 }
hpStorageWorksSN6000DualFcSwitch OBJECT-IDENTITY
STATUS current
DESCRIPTION
"HP StorageWorks SN6000 Stackable Dual Power Supply FC Switch"
::= { qlogicProducts 25 }
reserved26 OBJECT IDENTIFIER ::= { qlogicProducts 26 } -- unreleased product
reserved27 OBJECT IDENTIFIER ::= { qlogicProducts 27 } -- unreleased product
reserved28 OBJECT IDENTIFIER ::= { qlogicProducts 28 } -- unreleased product
reserved29 OBJECT IDENTIFIER ::= { qlogicProducts 29 } -- unreleased product
reserved30 OBJECT IDENTIFIER ::= { qlogicProducts 30 } -- unreleased product
reserved31 OBJECT IDENTIFIER ::= { qlogicProducts 31 } -- unreleased product
reserved32 OBJECT IDENTIFIER ::= { qlogicProducts 32 } -- unreleased product
reserved33 OBJECT IDENTIFIER ::= { qlogicProducts 33 } -- unreleased product
sns2120 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"SNS2120 FC Switch"
::= { qlogicProducts 34 }
reserved35 OBJECT IDENTIFIER ::= { qlogicProducts 35 } -- unreleased product
reserved36 OBJECT IDENTIFIER ::= { qlogicProducts 36 } -- unreleased product
reserved37 OBJECT IDENTIFIER ::= { qlogicProducts 37 } -- unreleased product
reserved38 OBJECT IDENTIFIER ::= { qlogicProducts 38 } -- unreleased product
reserved39 OBJECT IDENTIFIER ::= { qlogicProducts 39 } -- unreleased product
reserved40 OBJECT IDENTIFIER ::= { qlogicProducts 40 } -- unreleased product
reserved41 OBJECT IDENTIFIER ::= { qlogicProducts 41 } -- unreleased product
reserved42 OBJECT IDENTIFIER ::= { qlogicProducts 42 } -- unreleased product
reserved43 OBJECT IDENTIFIER ::= { qlogicProducts 43 } -- unreleased product
END

266
mibs/marvell/QLOGIC-SMI Normal file
View File

@ -0,0 +1,266 @@
-- QLOGIC-SMI.my: QLogic Enterprise Structure of Management Information
--
-- Copyright 1994-2006 QLogic Corporation
-- All Rights Reserved
QLOGIC-SMI DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY,
enterprises
FROM SNMPv2-SMI
;
qlogic MODULE-IDENTITY
LAST-UPDATED "200610110000Z" -- October 11, 2006
ORGANIZATION "QLogic Corp."
CONTACT-INFO
"
QLogic Customer Service (SNMP)
Postal: 26650 Aliso Viejo Parkway
Aliso Viejo, California 92656
USA
Tel: +1 952-932-4040
E-mail: support@qlogic.com
"
DESCRIPTION
"The Structure of Management Information for the
QLogic enterprise."
REVISION "200610110000Z" -- October 11, 2006
DESCRIPTION
"Commented out the definition of ancorExperimental to remove
conflicts with declarations in the QLOGIC-MIB"
REVISION "200610060000Z" -- October 6, 2006
DESCRIPTION
"Added sanBox9000. Declared some values as never to be used
historical."
REVISION "200507080000Z" -- July 8, 2005
DESCRIPTION
"Initial version of this MIB module."
::= { enterprises 3873 } -- assigned by IANA
qlogicProducts OBJECT-IDENTITY
STATUS current
DESCRIPTION
"qlogicProducts is the root OBJECT IDENTIFIER from
which sysObjectID values are assigned. Actual
values are defined in QLOGIC-PRODUCTS-MIB."
::= { qlogic 1 }
qlogicModules OBJECT-IDENTITY
STATUS current
DESCRIPTION
"qlogicModules provides a root object identifier
from which MODULE-IDENTITY values may be assigned."
::= { qlogic 2 }
qlogicMgmt OBJECT-IDENTITY
STATUS current
DESCRIPTION
"qlogicMgmt is the main subtree for new MIB
development."
::= { qlogic 3 }
qlogicAgentCapability OBJECT-IDENTITY
STATUS current
DESCRIPTION
"qlogicAgentCapability provides a root object identifier
from which AGENT-CAPABILITIES values may be assigned."
::= { qlogic 4 }
qlogicOtherEnterprises OBJECT-IDENTITY
STATUS current
DESCRIPTION
"To provide a root object identifier from which MIBs
produced by other companies may be placed. MIBs produced
by other enterprises are typicially implemented with the
object identifiers as defined in the MIB, but if the MIB
is deemed to be uncontrolled, we may reroot the MIB at this
subtree in order to have a controlled version."
::= { qlogic 5 }
qlogicExperimental OBJECT-IDENTITY
STATUS current
DESCRIPTION
"qlogicExperiment provides a root object identifier
from which experimental MIBs may be temporarily
based. MIBs are typicially based here if they
fall in one of two categories
1) are IETF work-in-process MIBs which have not
been assigned a permanent object identifier by
the IANA.
2) are qlogic work-in-process which has not been
assigned a permanent object identifier by the
qlogic assigned number authority, typicially because
the MIB is not ready for deployment.
NOTE WELL: support for MIBs in the qlogicExperiment
subtree will be deleted when a permanent object
identifier assignment is made."
::= { qlogic 6 }
-- Most of the QLogic SNMP support until the initial creation of this
-- document has taken place under the enterprise number of a QLogic
-- daughter company (Ancor).
--
-- The following defines the existing tree of numbers in use. The
-- numbers defined here are valid as long as is necessary; HOWEVER,
-- no new numbers can be assigned from this tree as of the initial
-- revision of this document.
ancor OBJECT IDENTIFIER ::= { enterprises 1663 } -- assigned by IANA
ancorOidTree OBJECT IDENTIFIER ::= { ancor 1 }
products OBJECT IDENTIFIER ::= { ancorOidTree 1 }
networkComponents OBJECT IDENTIFIER ::= { products 1 }
fibreChannelSwitches OBJECT IDENTIFIER ::= { networkComponents 1 }
-- fibreChannelSwitches { networkComponents 1 } :
-- The following (10) are as of the initial revision of this document unsupported
-- however, the numbers are taken.
-- fcs266FibreSwitch16 OBJECT IDENTIFIER ::= { fibreChannelSwitches 1 } FCS 266 Fibre Switch 16 ports
-- fcs266FibreSwitch64 OBJECT IDENTIFIER ::= { fibreChannelSwitches 2 } FCS 266 Fibre Switch 64 ports
-- fcs1062GigabitFibreSwitch OBJECT IDENTIFIER ::= { fibreChannelSwitches 3 } FCS 1062 Gigabit Fibre Switch
-- gigWorksMKII16 OBJECT IDENTIFIER ::= { fibreChannelSwitches 4 } GigWorks MKII-16 Switch
-- gigWorksMKII8 OBJECT IDENTIFIER ::= { fibreChannelSwitches 5 } GigWorks MKII-8 Switch
-- sanboxMKIISL OBJECT IDENTIFIER ::= { fibreChannelSwitches 6 } SANbox MKII-SL Switch
-- sanboxMKII16 OBJECT IDENTIFIER ::= { fibreChannelSwitches 7 } SANbox MKII-16 Switch
-- sanboxMKII8 OBJECT IDENTIFIER ::= { fibreChannelSwitches 8 } SANbox MKII-8 Switch
-- sanbox64PortDirector OBJECT IDENTIFIER ::= { fibreChannelSwitches 9 } SANbox 64 Port Director
-- sanbox128PortDirector OBJECT IDENTIFIER ::= { fibreChannelSwitches 10 } SANbox 128 Port Director
-- The following (30) are, except as marked, are supported in some way as of the
-- initial revision of this document.
sanboxTwo16Port OBJECT IDENTIFIER ::= { fibreChannelSwitches 11 } -- SANbox2 16 Port Switch
sanboxTwo64Port OBJECT IDENTIFIER ::= { fibreChannelSwitches 12 } -- SANbox2-64 FC Switch ("Jupiter")
oemConnectrixSCQ OBJECT IDENTIFIER ::= { fibreChannelSwitches 13 } -- Connectrix-SCQ (Spider-1, 16 Port Blade)
sanboxTwo8Port OBJECT IDENTIFIER ::= { fibreChannelSwitches 14 } -- SANbox2 8 Port Half-Wide Switch
oemIBM2G8PortSwitch OBJECT IDENTIFIER ::= { fibreChannelSwitches 15 } -- IBM 2G 8 Port Switch
oemIBMSwitchBlade OBJECT IDENTIFIER ::= { fibreChannelSwitches 16 } -- IBM Switch Blade
sanbox5200 OBJECT IDENTIFIER ::= { fibreChannelSwitches 17 } -- SANbox 5200 (Amazon 8,12,16,20)
oemGenericSwitchBlade OBJECT IDENTIFIER ::= { fibreChannelSwitches 18 } -- Generic SwitchBlade
sanbox3000 OBJECT IDENTIFIER ::= { fibreChannelSwitches 19 } -- SANbox 3000 (Laguna 8)
sanbox3100 OBJECT IDENTIFIER ::= { fibreChannelSwitches 20 } -- SANbox 3100 (Laguna 16)
oemIBMSwitchBlade20 OBJECT IDENTIFIER ::= { fibreChannelSwitches 21 } -- IBM Switch Blade-20
oemGenericSwitchBlade20 OBJECT IDENTIFIER ::= { fibreChannelSwitches 22 } -- Generic SwitchBlade-20
sanbox5600 OBJECT IDENTIFIER ::= { fibreChannelSwitches 23 } -- SANbox 5600 (Amazon 4)
sanbox5602 OBJECT IDENTIFIER ::= { fibreChannelSwitches 24 } -- SANbox 5602 (Amazon 4HA)
sanbox3600 OBJECT IDENTIFIER ::= { fibreChannelSwitches 25 } -- SANbox 3600 (Galpin20)
sanbox3602 OBJECT IDENTIFIER ::= { fibreChannelSwitches 26 } -- SANbox 3602 (Galpin20-HA)
sanbox1400 OBJECT IDENTIFIER ::= { fibreChannelSwitches 27 } -- SANbox 1400 (Amber)
-- OBJECT IDENTIFIER ::= { fibreChannelSwitches 28 } historical
oemDellBlade OBJECT IDENTIFIER ::= { fibreChannelSwitches 29 } -- Dell Blade (Glacier)
sanbox5202 OBJECT IDENTIFIER ::= { fibreChannelSwitches 30 } -- SANbox 5202 (Amazon-HA 8,12,16,20)
oemHPStorageWorks28qFCSwitch OBJECT IDENTIFIER ::= { fibreChannelSwitches 31 } -- HP StorageWorks 2/8q FC Switch
oemEngenioESHIC OBJECT IDENTIFIER ::= { fibreChannelSwitches 32 } -- Engenio ESHIC (Vermillion)
sanBox9000 OBJECT IDENTIFIER ::= { fibreChannelSwitches 33 }
oemIBM4GSwitchBlade20 OBJECT IDENTIFIER ::= { fibreChannelSwitches 34 } -- 4G IBM Switch Blade-20 (Clover)
oemGeneric4GSwitchBlade20 OBJECT IDENTIFIER ::= { fibreChannelSwitches 35 } -- 4Gig Generic Switch Blade-20
-- OBJECT IDENTIFIER ::= { fibreChannelSwitches 36 } historical
oemHPMcDATAMode4GSwitch OBJECT IDENTIFIER ::= { fibreChannelSwitches 37 } -- HP CUBE
oemMcDATASwitchBlade20 OBJECT IDENTIFIER ::= { fibreChannelSwitches 38 } -- McDATA - IBM Switch Blade-20
oemMcDATA4GSwitchBlade20 OBJECT IDENTIFIER ::= { fibreChannelSwitches 39 } -- McDATA -Clover - 4G IBM Switch Blade-20
-- OBJECT IDENTIFIER ::= { fibreChannelSwitches 40 } historical
-- OBJECT IDENTIFIER ::= { fibreChannelSwitches 41 } historical
-- The reserved identifiers will be added when the products are released
-- or dropped. No others will be added to this list (ie, 41 is the final
-- value).
-- Please see the QLOGIC-PRODUCTS MIB for the newest product IDs.
fibreChannelSwitchModules OBJECT IDENTIFIER ::= { networkComponents 2 }
-- fcs266FibreSwitchPortModule OBJECT IDENTIFIER ::= { fibreChannelSwitchModules 1 }
-- fcs266FibreSwitchPowerSupply OBJECT IDENTIFIER ::= { fibreChannelSwitchModules 2 }
-- fcs266FibreSwitchMultistageSoftware has same OID as fcs266FibreSwitchPowerSupply
-- fibreChannelSwitchFirmware has same OID as fibreChannelSwitchModules
networkGateways OBJECT IDENTIFIER ::= { products 2 }
-- network gateways
-- fibreLink OBJECT IDENTIFIER ::= { networkGateways 1 }
-- fcs266FibreLinkSystem OBJECT IDENTIFIER ::= { fibreLink 1 }
-- fcs1062FibreLinkSystem has same OID as fcs266FibreLinkSystem
-- fibreLinkExpansionModules OBJECT IDENTIFIER ::= { networkGateways 2 }
-- fcs266MPREnetExpansionModule OBJECT IDENTIFIER ::= { fibreLinkExpansionModules 1 }
-- fcs266MPRTknRingExpansionModule OBJECT IDENTIFIER ::= { fibreLinkExpansionModules 2 }
-- fcs266MPRFddiExpansionModule OBJECT IDENTIFIER ::= { fibreLinkExpansionModules 3 }
-- fcs266MPRAtmExpansionModule OBJECT IDENTIFIER ::= { fibreLinkExpansionModules 4 }
networkInterfaces OBJECT IDENTIFIER ::= { products 3 }
-- adapters OBJECT IDENTIFIER ::= { networkInterfaces 1 }
-- eisa OBJECT IDENTIFIER ::= { adapters 1 }
-- fcs266EisaAdapter OBJECT IDENTIFIER ::= { eisa 1 } FCS 266 EISA Adapter
-- mca OBJECT IDENTIFIER ::= { adapters 2 }
-- fcs266McaAdapter OBJECT IDENTIFIER ::= { mca 1 } FCS 266 MCA Adapter
-- vme OBJECT IDENTIFIER ::= { adapters 3 }
-- fcs266Vme6UAdapter OBJECT IDENTIFIER ::= { vme 1 } FCS 266 VME/64 6UAdapter
-- fcs266Vme9UAdapter OBJECT IDENTIFIER ::= { vme 2 } FCS 266 SGI VME/64 9U Adapter
-- sbus OBJECT IDENTIFIER ::= { adapters 4 }
-- fcs266SbusAdapter OBJECT IDENTIFIER ::= { sbus 1 } FCS 266 SBus Adapter
-- fcs1062SbusAdapter OBJECT IDENTIFIER ::= { sbus 2 } FCS 1062/266 SBus Adapter
-- pci OBJECT IDENTIFIER ::= { adapters 5 }
-- fcs266PciAdapter OBJECT IDENTIFIER ::= { pci 1 } FCS 266 PCI Adapter
-- fcs1062PciAdapter OBJECT IDENTIFIER ::= { pci 2 } FCS 1062/266 PCI Adapter
-- fcs1062MultiMediaPciAdapter OBJECT IDENTIFIER ::= { pci 3 } FCS 1062 Multiimedia PCI Adapter
-- drivers OBJECT IDENTIFIER ::= { networkInterfaces 2 }
-- eisa OBJECT IDENTIFIER ::= { drivers 1 }
-- novell312 OBJECT IDENTIFIER ::= { eisa 1 } Novell 3.12
-- hpux OBJECT IDENTIFIER ::= { eisa 2 } HPUX
-- irix53 OBJECT IDENTIFIER ::= { eisa 3 } IRIX 5.3
-- mca object identifier ::= { drivers 2 }
-- novell312 OBJECT IDENTIFIER ::= { mca 1 } Novell 3.12
-- aix325 OBJECT IDENTIFIER ::= { mca 2 } AIX 3.2.5
-- vme object identifier ::= { drivers 3 }
-- irix53 OBJECT IDENTIFIER ::= { vme 1 } IRIX 5.3
-- sbus object identifier ::= { drivers 4 }
-- solaris2324 OBJECT IDENTIFIER ::= { sbus 1 } Solaris 2.3 & 2.4
-- pci object identifier ::= { drivers 5 }
-- novell312 OBJECT IDENTIFIER ::= { pci 1 } Novell 3.12
networkManagement OBJECT IDENTIFIER ::= { products 4 }
-- proxyAgents OBJECT IDENTIFIER ::= { networkManagement 1 }
-- fcsview10 OBJECT IDENTIFIER ::= { proxyAgents 1 }
enterpriseMIB OBJECT IDENTIFIER ::= { ancorOidTree 2 }
-- fibreChannelSwitches OBJECT IDENTIFIER ::= { enterpriseMIB 1 }
-- objects under fibreChannelSwitches ignored
-- obsoleted OBJECT IDENTIFIER ::= { enterpriseMIB 2 }
-- these two MIBs use hard-coded (pre-SMI) values to link up to
-- the Ancor enterprise, they are not needed but included for reference
-- I do not know as of yet, whether these MIBs are in use or not.
-- ancorNameServiceMib OBJECT IDENTIFIER ::= { enterpriseMIB 3 }
-- ancorFabricLoopMib OBJECT IDENTIFIER ::= { enterpriseMIB 4 }
-- ancorExperimental OBJECT IDENTIFIER ::= { ancorOidTree 3 }
-- FC Loop OBJECT IDENTIFIER ::= {ancorExperimental 1 }
-- MKIIAccountingX OBJECT IDENTIFIER ::= {ancorExperimental 2 }
-- Testing OBJECT IDENTIFIER ::= {ancorExperimental 3 }
-- Traps OBJECT IDENTIFIER ::= {ancorExperimental 4 }
-- Zoning OBJECT IDENTIFIER ::= {ancorExperimental 5 }
-- Configuration OBJECT IDENTIFIER ::= {ancorExperimental 6 }
-- Name Service OBJECT IDENTIFIER ::= {ancorExperimental 7 }
-- Diagnostics OBJECT IDENTIFIER ::= {ancorExperimental 8 }
-- II-Cons OBJECT IDENTIFIER ::= {ancorExperimental 9 }
-- As far as I can tell, this is the only actual existing, in-use
-- QLogic proprietary MIB. It has hard-coded the following information
-- so it is given here for reference/completeness.
-- QlSB2PortControl OBJECT IDENTIFIER ::= {ancorExperimental 10 } SANbox2 Port Control MIB
END

View File

@ -0,0 +1,509 @@
VC-FC-GLOBAL-CAPABILITY DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY
FROM SNMPv2-SMI
AGENT-CAPABILITIES
FROM SNMPv2-CONF
DisplayString
FROM SNMPv2-TC
qlogicAgentCapability
FROM QLOGIC-SMI
;
oemHPShadowCapability MODULE-IDENTITY
LAST-UPDATED "200909290000Z" -- September 29, 2009
ORGANIZATION "QLOGIC Corporation"
CONTACT-INFO "QLOGIC Technical Support
Postal: QLogic Corporation
4601 Dean Lakes Blvd
Shakopee, MN 55379
US
Tel: +1 952 932 4040
Fax: +1 952 932 4018
E-mail: support@QLogic.com"
DESCRIPTION
"The capabilities statement for the QLogic
OEM HP VC-FC switch modules."
REVISION "200909290000Z" -- September 29, 2009
DESCRIPTION
"The syntax and semantics errors reported by the
smilint program were resolved."
REVISION "200809240000Z" -- September 24, 2008
DESCRIPTION
"Initial version of this MIB module."
::= { qlogicAgentCapability 2 }
oemHPShadowAgent AGENT-CAPABILITIES
PRODUCT-RELEASE "OEM HP Shadow agent release 1.0"
STATUS current
DESCRIPTION "QLogic release for OEM HP Shadow"
--
-- MIB-2
--
SUPPORTS IF-MIB
INCLUDES { interfaces }
VARIATION ifAdminStatus
ACCESS read-only
DESCRIPTION "Supported readonly"
VARIATION ifPromiscuousMode
ACCESS read-only
DESCRIPTION "Supported readonly"
SUPPORTS RFC1213-MIB
INCLUDES { at }
VARIATION atPhysAddress
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS RFC1213-MIB
INCLUDES { ip }
VARIATION ipRouteIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric1
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric2
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric3
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric4
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteNextHop
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteAge
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMask
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipRouteMetric5
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS IP-MIB
INCLUDES { ip }
VARIATION ipForwarding
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipDefaultTTL
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToMediaPhysAddress
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToMediaType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressRowStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipAddressStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToPhysicalPhysAddress
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToPhysicalType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipNetToPhysicalRowStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IpForwarding
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IpDefaultHopLimit
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS IPV6-MIB
INCLUDES { ipv6MIB }
VARIATION ipv6IfAdminStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6Forwarding
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6DefaultHopLimit
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IfDescr
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipv6IfAdminStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
---
--- IP-FORWARD-MIB
---
SUPPORTS IP-FORWARD-MIB
INCLUDES { ipForward }
VARIATION ipCidrRouteIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteInfo
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteNextHopAS
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric1
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric2
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric3
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric4
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION ipCidrRouteMetric5
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteIfIndex
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteProto
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteAge
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteNextHopAS
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric1
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric2
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric3
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric4
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteMetric5
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION inetCidrRouteStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
SUPPORTS TCP-MIB
INCLUDES { tcp }
VARIATION tcpConnectionState
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- SNMP-MIB
--
SUPPORTS SNMPv2-MIB
INCLUDES { snmp }
VARIATION snmpEnableAuthenTraps
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- SNMP-USER-BASED-SM-MIB
--
SUPPORTS SNMP-USER-BASED-SM-MIB
INCLUDES { usmUser }
VARIATION usmUserSpinLock
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserCloneFrom
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserPublic
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION usmUserStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- SNMP-VIEW-BASED-ACM-MIB
--
SUPPORTS SNMP-VIEW-BASED-ACM-MIB
INCLUDES { vacmMIBObjects }
VARIATION vacmSecurityToGroupStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmSecurityToGroupStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmGroupName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessContextMatch
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessReadViewName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessWriteViewName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessNotifyViewName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmAccessStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyMask
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyStorageType
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION vacmViewTreeFamilyStatus
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
--
-- FC-MIB
--
SUPPORTS FCMGMT-MIB
INCLUDES { connSet }
VARIATION connUnitUrl
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION systemURL
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION connUnitContact
SYNTAX DisplayString (SIZE(1..64))
DESCRIPTION "1 to 64 characters"
VARIATION connUnitName
SYNTAX DisplayString (SIZE(1..32))
DESCRIPTION "1 to 32 characters"
VARIATION connUnitLocation
SYNTAX DisplayString (SIZE(1..64))
DESCRIPTION "1 to 64 characters"
VARIATION connUnitPortName
SYNTAX DisplayString (SIZE(1..32))
DESCRIPTION "1 to 32 characters"
--
-- FE-MIB
--
SUPPORTS FIBRE-CHANNEL-FE-MIB
INCLUDES { fcFeConfigGroup, fcFeStatusGroup, fcFeErrorGroup }
VARIATION fcFeFabricName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFeElementName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFeModuleLastChange
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFeModuleName
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFxPortBbCreditAvailable
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortAdminMode
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortPhysLastChange
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortFcphVersionAgreed
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortNxPortBbCredit
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortNxPortRxDataFieldSize
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortConnectedNxPort
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortBbCreditModel
ACCESS read-only
DESCRIPTION "Not allowed through SNMP"
VARIATION fcFxPortSigLosses
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortDelimiterErrors
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1InFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1OutFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1InOctets
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1OutOctets
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1Discards
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1FbsyFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1FrjtFrames
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1InConnections
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1OutConnections
ACCESS not-implemented
DESCRIPTION "Not implemented"
VARIATION fcFxPortC1ConnTime
ACCESS not-implemented
DESCRIPTION "Not implemented"
::= { oemHPShadowCapability 1 }
END