mib update from librenms

This commit is contained in:
Graham McIntire 2026-01-28 13:38:31 -06:00
parent 234ff7cbd2
commit 8b71c4adb8
38 changed files with 17425 additions and 9043 deletions

View file

@ -24,13 +24,6 @@ defmodule ToweropsWeb.Components.CookieConsent do
attr :requires_consent, :boolean, required: true
def banner(assigns) do
# Debug logging
require Logger
Logger.info(
"CookieConsent.banner called with requires_consent=#{inspect(assigns[:requires_consent])}, all assign keys: #{inspect(Map.keys(assigns))}"
)
~H"""
<%= if @requires_consent do %>
<div

View file

@ -504,12 +504,8 @@ defmodule ToweropsWeb.UserAuth do
end
def on_mount(:load_cookie_consent, _params, session, socket) do
require Logger
requires_consent = Map.get(session, "requires_cookie_consent", false)
Logger.info("on_mount :load_cookie_consent - session value: #{inspect(requires_consent)}")
# Store in process dictionary so layouts can access without explicit component attribute
Process.put(:requires_cookie_consent, requires_consent)
@ -519,18 +515,9 @@ defmodule ToweropsWeb.UserAuth do
|> LiveView.attach_hook(:persist_cookie_consent, :handle_params, fn _params, _url, socket ->
# Ensure the assign persists across navigation
socket = Phoenix.Component.assign(socket, :requires_cookie_consent, requires_consent)
Logger.info(
"handle_params hook: socket.assigns.requires_cookie_consent = #{inspect(socket.assigns.requires_cookie_consent)}"
)
{:cont, socket}
end)
Logger.info(
"After assign: socket.assigns.requires_cookie_consent = #{inspect(socket.assigns.requires_cookie_consent)}"
)
{:cont, socket}
end

0
priv/mibs/cambium/CAMBIUM-PTP670-MIB Executable file → Normal file
View file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
-- *****************************************************************
-- Cisco Class-Based QoS Configuration and Statistics MIB
--
-- Copyright (c) 2000-2004, 2007-2009-2014 by Cisco Systems Inc.
-- Copyright (c) 2000-2004, 2007-2009-2014, 2020 by Cisco Systems Inc.
--
-- All rights reserved.
--
@ -17,7 +17,8 @@ IMPORTS
Gauge32,
Unsigned32,
Counter64,
dod
dod,
Opaque
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
@ -34,6 +35,9 @@ IMPORTS
FROM Q-BRIDGE-MIB
CounterBasedGauge64
FROM HCNUM-TC
InetAddress,
InetAddressType
FROM INET-ADDRESS-MIB
Unsigned64,
EntPhysicalIndexOrZero
FROM CISCO-TC
@ -44,7 +48,7 @@ IMPORTS
ciscoCBQosMIB MODULE-IDENTITY
LAST-UPDATED "201401240000Z"
LAST-UPDATED "202007270000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
@ -421,6 +425,27 @@ ciscoCBQosMIB MODULE-IDENTITY
Users can uniquely identify each QoS object defined on the
router and query the entries in each stats table on a per
QoS object basis."
REVISION "202007270000Z"
DESCRIPTION
"Added cbQosServiceGroupIndex in CbQosServicePolicyEntry
Added cbQoSTSStatsQSizeLastTenSecMin in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastTenSecMax in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastTenSecAvg in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastOneMinMin in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastOneMinMax in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastOneMinAvg in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastFiveMinMin in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastFiveMinMax in CbQosTSStatsEntry
Added cbQoSTSStatsQSizeLastFiveMinAvg in CbQosTSStatsEntry"
REVISION "201410130000Z"
DESCRIPTION
"Added tunnel(8) in InterfaceType TC
Added wirelessInterface(9) in InterfaceType TC
Added cbQosTunDstAddrType in CbQosServicePolicyEntry
Added cbQosTunDstAddr in CbQosServicePolicyEntry
Added cbQosWirelessIifid in CbQosServicePolicyEntry
Added cbQosTSStatsTargetShapeRate in cbQosTSStatsEntry
Added cbQosTSCfgAdaptivePercentRateValue in cbQosTSCfgEntry"
REVISION "201401240000Z"
DESCRIPTION
"Added new object cbQosParentPolicyIndex in
@ -787,7 +812,10 @@ InterfaceType ::= TEXTUAL-CONVENTION
vlan of a layer 2 interface that can carry
traffic on multiple vlans.
EVC - Service policy is attached to the Ethernet
Virtual Connections."
Virtual Connections.
Tunnel - Service policy is attached to DMVPN tunnel
Wireless Interface - Service policy is attached on the
wireless interface."
SYNTAX INTEGER {
mainInterface(1),
subInterface(2),
@ -795,7 +823,9 @@ InterfaceType ::= TEXTUAL-CONVENTION
atmPVC(4),
controlPlane(5),
vlanPort(6),
evc(7)
evc(7),
tunnel(8),
wirelessInterface(9)
}
QueueingBandwidthUnits ::= TEXTUAL-CONVENTION
@ -1446,7 +1476,11 @@ CbQosServicePolicyEntry ::= SEQUENCE {
cbQosVlanIndex VlanIndex,
cbQosEVC Unsigned32,
cbQosPolicyDiscontinuityTime TimeStamp,
cbQosParentPolicyIndex Unsigned32
cbQosParentPolicyIndex Unsigned32,
cbQosTunDstAddrType InetAddressType,
cbQosTunDstAddr InetAddress,
cbQosWirelessIifid Unsigned64,
cbQosServiceGroupIndex Unsigned32
}
cbQosPolicyIndex OBJECT-TYPE
@ -1579,6 +1613,44 @@ cbQosParentPolicyIndex OBJECT-TYPE
interface on which PolicyMap applied directly."
::= { cbQosServicePolicyEntry 12 }
cbQosTunDstAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is instantiated if cbQoSIfType object has the value
of tunnel(8)."
::= { cbQosServicePolicyEntry 13 }
cbQosTunDstAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is instantiated if cbQoSIfType
object has the value of tunnel(8)."
::= { cbQosServicePolicyEntry 14 }
cbQosWirelessIifid OBJECT-TYPE
SYNTAX Unsigned64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is instantiated if cbQoSIfType
object has the value of wirelessInterface(9)."
::= { cbQosServicePolicyEntry 15 }
cbQosServiceGroupIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the service policy is attached to a particular
service-group, then this object specifies the
corresponding Service-group id. In all other cases
the value of this object is '0'."
::= { cbQosServicePolicyEntry 16 }
-- End of the cbQosServicePolicy group
--
@ -3053,7 +3125,8 @@ CbQosTSCfgEntry ::= SEQUENCE {
cbQosTSCfgExtBurstTime Unsigned32,
cbQosTSCfgRate64 Unsigned64,
cbQosTSCfgBurstSize64 Unsigned64,
cbQosTSCfgExtBurstSize64 Unsigned64
cbQosTSCfgExtBurstSize64 Unsigned64,
cbQosTSCfgAdaptivePercentRateValue Unsigned32
}
cbQosTSCfgRate OBJECT-TYPE
@ -3211,6 +3284,17 @@ cbQosTSCfgExtBurstSize64 OBJECT-TYPE
it should not implement cbQosTSCfgExtBurstSize."
::= { cbQosTSCfgEntry 13 }
cbQosTSCfgAdaptivePercentRateValue OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percentage"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The committed lower traffic-shaping rate in percentage.
Its value is valid only when cbQosTSCfgRateType
equals to 2."
::= { cbQosTSCfgEntry 14 }
-- end of cbQosTSCfgTable
--
@ -4399,7 +4483,17 @@ CbQosTSStatsEntry ::= SEQUENCE {
cbQosTSStatsDropPkt Counter32,
cbQosTSStatsDropPkt64 Counter64,
cbQosTSStatsActive TruthValue,
cbQosTSStatsCurrentQSize Gauge32
cbQosTSStatsCurrentQSize Gauge32,
cbQosTSStatsTargetShapeRate Unsigned64,
cbQoSTSStatsQSizeLastTenSecMin Gauge32,
cbQoSTSStatsQSizeLastTenSecMax Gauge32,
cbQoSTSStatsQSizeLastTenSecAvg Gauge32,
cbQoSTSStatsQSizeLastOneMinMin Gauge32,
cbQoSTSStatsQSizeLastOneMinMax Gauge32,
cbQoSTSStatsQSizeLastOneMinAvg Gauge32,
cbQoSTSStatsQSizeLastFiveMinMin Gauge32,
cbQoSTSStatsQSizeLastFiveMinMax Gauge32,
cbQoSTSStatsQSizeLastFiveMinAvg Gauge32
}
cbQosTSStatsDelayedByteOverflow OBJECT-TYPE
@ -4544,6 +4638,106 @@ cbQosTSStatsCurrentQSize OBJECT-TYPE
queue depth in packets."
::= { cbQosTSStatsEntry 14 }
cbQosTSStatsTargetShapeRate OBJECT-TYPE
SYNTAX Unsigned64
UNITS "bits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The committed traffic-shaping rate. This is the
sustained rate permitted by the traffic-shaping."
::= { cbQosTSStatsEntry 15 }
cbQoSTSStatsQSizeLastTenSecMin OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the minimum traffic-shaping
queue depth(in packets) in last 10 seconds."
::= { cbQosTSStatsEntry 16 }
cbQoSTSStatsQSizeLastTenSecMax OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum traffic-shaping
queue depth(in packets) in last 10 seconds."
::= { cbQosTSStatsEntry 17 }
cbQoSTSStatsQSizeLastTenSecAvg OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the average traffic-shaping
queue depth(in packets) in last 10 seconds."
::= { cbQosTSStatsEntry 18 }
cbQoSTSStatsQSizeLastOneMinMin OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the minimum traffic-shaping
queue depth(in packets) in last 1 minute."
::= { cbQosTSStatsEntry 19 }
cbQoSTSStatsQSizeLastOneMinMax OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum traffic-shaping
queue depth(in packets) in last 1 minute."
::= { cbQosTSStatsEntry 20 }
cbQoSTSStatsQSizeLastOneMinAvg OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the average traffic-shaping
queue depth(in packets) in last 1 minute."
::= { cbQosTSStatsEntry 21 }
cbQoSTSStatsQSizeLastFiveMinMin OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the minimum traffic-shaping
queue depth(in packets) in last 5 minutes."
::= { cbQosTSStatsEntry 22 }
cbQoSTSStatsQSizeLastFiveMinMax OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the maximum traffic-shaping
queue depth(in packets) in last 5 minutes."
::= { cbQosTSStatsEntry 23 }
cbQoSTSStatsQSizeLastFiveMinAvg OBJECT-TYPE
SYNTAX Gauge32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Average traffic-shaping
queue depth(in packets) in last 5 minutes."
::= { cbQosTSStatsEntry 24 }
-- end of cbQosTSStats Group
--
@ -10144,10 +10338,11 @@ cbQosEBStatsGroup OBJECT-GROUP
cbQosServicePolicyExtGroup OBJECT-GROUP
OBJECTS { cbQosVlanIndex }
STATUS current
STATUS deprecated
DESCRIPTION
"Optional objects to provide more information about a
particular service policy instance."
particular service policy instance.
cbQosServicePolicyExtGroup object is superseded by cbQosServicePolicyExtGroupRev3."
::= { ciscocbQosMIBGroups 63 }
cbQosMeasureIPSLACfgGroup OBJECT-GROUP
@ -10162,11 +10357,12 @@ cbQosMeasureIPSLACfgGroup OBJECT-GROUP
cbQosTSCfgExtGroup OBJECT-GROUP
OBJECTS { cbQosTSCfgRate64 }
STATUS current
STATUS deprecated
DESCRIPTION
"Objects to provide the information of the
committed shaping rate that is greater than the
maximum value reportable by cbQosTSCfgRate."
maximum value reportable by cbQosTSCfgRate.
cbQosTSCfgExtGroup object is superseded by cbQosTSCfgExtGroupRev1."
::= { ciscocbQosMIBGroups 65 }
cbQosQueueingCfgGroupRev2 OBJECT-GROUP
@ -10434,21 +10630,45 @@ cbQosQueueingStatsGroupRev1 OBJECT-GROUP
cbQosServicePolicyExtGroupRev2 OBJECT-GROUP
OBJECTS { cbQosParentPolicyIndex }
STATUS deprecated
DESCRIPTION
"Added cbQosParentPolicyIndex to cbQosServicePolicyTable.
cbQosServicePolicyExtGroupRev2 object is superseded by cbQosServicePolicyExtGroupRev3."
::= { ciscocbQosMIBGroups 83 }
cbQosServicePolicyExtGroupRev3 OBJECT-GROUP
OBJECTS {
cbQosTunDstAddrType,
cbQosTunDstAddr,
cbQosWirelessIifid,
cbQosVlanIndex,
cbQosParentPolicyIndex
}
STATUS current
DESCRIPTION
"Added cbQosParentPolicyIndex to cbQosServicePolicyTable."
::= { ciscocbQosMIBGroups 83 }
"Optional objects to provide more information about a
particular service policy instance."
::= { ciscocbQosMIBGroups 84 }
cbQosTSCfgExtGroupRev1 OBJECT-GROUP
OBJECTS {
cbQosTSCfgAdaptiveRate,
cbQosTSCfgRate64
}
STATUS current
DESCRIPTION
"Optional objects to provide CB QoS objects configuration
information."
::= { ciscocbQosMIBGroups 85 }
cbQosTSStatsExtGroup OBJECT-GROUP
OBJECTS { cbQosTSStatsTargetShapeRate }
STATUS current
DESCRIPTION
"Optional objects to provide CB QoS object statistics
information."
::= { ciscocbQosMIBGroups 86 }
END

File diff suppressed because it is too large Load diff

View file

@ -4,10 +4,10 @@
--
-- April 2002, Francis Pang
--
-- Copyright (c) 2002-2007 by Cisco Systems, Inc.
-- Copyright (c) 2002-2005, 2006-2007, 2016 by Cisco Systems Inc.
-- All rights reserved.
-- *******************************************************************
--
-- ******************************************************************
CISCO-DOT11-ASSOCIATION-MIB DEFINITIONS ::= BEGIN
IMPORTS
@ -16,7 +16,8 @@ IMPORTS
Gauge32,
Counter32,
Integer32,
Unsigned32
Unsigned32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
@ -46,7 +47,7 @@ IMPORTS
-- ********************************************************************
ciscoDot11AssociationMIB MODULE-IDENTITY
LAST-UPDATED "200701050000Z"
LAST-UPDATED "201612060000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems
@ -261,6 +262,12 @@ ciscoDot11AssociationMIB MODULE-IDENTITY
Work Group Bridges (WGB)
See bridge host."
REVISION "201612060000Z"
DESCRIPTION
"Added ciscoDot11StationStatusTrap to
indicate wireless client status change
like associate to AP or disassociate
from AP"
REVISION "200701050000Z"
DESCRIPTION
"The changes made are as follows.
@ -272,7 +279,6 @@ ciscoDot11AssociationMIB MODULE-IDENTITY
- Added cDot11ClientNewKeyManagement object
to the cDot11ClientConfigInfoTable."
REVISION "200606120000Z"
DESCRIPTION
"The changes made are as follows.
@ -288,7 +294,6 @@ ciscoDot11AssociationMIB MODULE-IDENTITY
- Added cDot11ClientDevObjectID to
cDot11ClientConfigInfoTable."
REVISION "200503080000Z"
DESCRIPTION
"Updated CDot11ClientDevType to include a new device
@ -346,6 +351,9 @@ cDot11ClientConfiguration OBJECT IDENTIFIER
cDot11ClientStatistics OBJECT IDENTIFIER
::= { ciscoDot11AssocMIBObjects 3 }
ciscoDot11StationTraps OBJECT IDENTIFIER
::= { ciscoDot11AssocMIBObjects 4 }
-- Textual Conventions
@ -368,7 +376,8 @@ CDot11ClientRoleClassType ::= TEXTUAL-CONVENTION
bridgeHost(3),
bridge(4),
bridgeRoot(5),
ethernetClient(6) }
ethernetClient(6)
}
CDot11ClientDevType ::= TEXTUAL-CONVENTION
STATUS current
@ -417,8 +426,6 @@ CDot11ClientDevType ::= TEXTUAL-CONVENTION
c1310SeriesBridge(138) - Cisco 1310 series bridge,
c7920phone(139) - Cisco 7920 series phone,
c1240SeriesAP(140) - Cisco 1240 series AP."
SYNTAX INTEGER {
unknown(1),
ethernetAP(76),
@ -501,6 +508,7 @@ CDot11AuthenticationMethod ::= TEXTUAL-CONVENTION
open(1) - Open System
sharedKey(2) - Shared Key
networkEap(129) - Network EAP."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
@ -513,7 +521,6 @@ CDot11AuthenticationMethod ::= TEXTUAL-CONVENTION
networkEap(129)
}
CDot11AdditionalAuthenMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
@ -579,10 +586,156 @@ CDot11NewKeyManagementMethod ::= TEXTUAL-CONVENTION
wpa1(1),
wpa2(2)
}
-- ********************************************************************
-- * dot11 association global parameters
-- ********************************************************************
ciscoDot11StationInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoDot11StationInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Station Information parameters."
::= { ciscoDot11AssocMIBObjects 5 }
ciscoDot11StationInfoEntry OBJECT-TYPE
SYNTAX CiscoDot11StationInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Status and parameter values for the wireless client."
INDEX { ifIndex }
::= { ciscoDot11StationInfoTable 1 }
CiscoDot11StationInfoEntry ::= SEQUENCE {
clientMacAddr MacAddress,
clientDeviceType CDot11ClientRoleClassType,
clientDeviceName SnmpAdminString,
clientIpv4Address InetAddress,
clientIpv6Address InetAddress,
apMacAddr MacAddress,
apIpv4Address InetAddress,
apIpv6Address InetAddress,
clientStationState INTEGER,
clientDisassocReasonStr SnmpAdminString
}
clientMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates wireless client mac address."
::= { ciscoDot11StationInfoEntry 1 }
clientDeviceType OBJECT-TYPE
SYNTAX CDot11ClientRoleClassType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates wireless client device type.
possible types are client, ethernet, AP,
Bridge, Repeater, WGB"
::= { ciscoDot11StationInfoEntry 2 }
clientDeviceName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates Cisco IOS device hostname ."
::= { ciscoDot11StationInfoEntry 3 }
clientIpv4Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates wireless client IPv4 address."
::= { ciscoDot11StationInfoEntry 4 }
clientIpv6Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates wireless client IPv6 address."
::= { ciscoDot11StationInfoEntry 5 }
apMacAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates AP mac address which client associated."
::= { ciscoDot11StationInfoEntry 6 }
apIpv4Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates AP IPv4 address that wireless client associates."
::= { ciscoDot11StationInfoEntry 7 }
apIpv6Address OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates AP IPv6 address that wireless client associates."
::= { ciscoDot11StationInfoEntry 8 }
clientStationState OBJECT-TYPE
SYNTAX INTEGER {
associated(1),
disAssociated(2),
run(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the state of the authentication
and association process between the two parties:
associated(1) - client associates to AP
disAssociated(2) - client disassociates to AP
run(3) - client passes authentication and gets IP address"
::= { ciscoDot11StationInfoEntry 9 }
clientDisassocReasonStr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This attribute holds the most recently
transmitted Reason in a Disassociation frame."
::= { ciscoDot11StationInfoEntry 10 }
ciscoDot11StationStatusTrap NOTIFICATION-TYPE
OBJECTS {
ifIndex,
clientMacAddr,
clientDeviceType,
clientDeviceName,
clientIpv4Address,
clientIpv6Address,
apMacAddr,
apIpv4Address,
apIpv6Address,
clientStationState,
clientDisassocReasonStr
}
STATUS current
DESCRIPTION
"ciscoDot11StationStatusTrap is generated when wireless client
status change :
1. associate to AP
2. disassociate from AP
3. run state : client passes authentication and gets IP address"
::= { ciscoDot11StationTraps 1 }
cDot11ParentAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
@ -615,8 +768,7 @@ cDot11ActiveDevicesEntry OBJECT-TYPE
INDEX { ifIndex }
::= { cDot11ActiveDevicesTable 1 }
CDot11ActiveDevicesEntry ::=
SEQUENCE {
CDot11ActiveDevicesEntry ::= SEQUENCE {
cDot11ActiveWirelessClients Gauge32,
cDot11ActiveBridges Gauge32,
cDot11ActiveRepeaters Gauge32
@ -653,6 +805,8 @@ cDot11ActiveRepeaters OBJECT-TYPE
associating with this device on this interface."
::= { cDot11ActiveDevicesEntry 3 }
cDot11AssociationStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CDot11AssociationStatsEntry
MAX-ACCESS not-accessible
@ -677,8 +831,7 @@ cDot11AssociationStatsEntry OBJECT-TYPE
INDEX { ifIndex }
::= { cDot11AssociationStatsTable 1 }
CDot11AssociationStatsEntry ::=
SEQUENCE {
CDot11AssociationStatsEntry ::= SEQUENCE {
cDot11AssStatsAssociated Counter32,
cDot11AssStatsAuthenticated Counter32,
cDot11AssStatsRoamedIn Counter32,
@ -754,6 +907,7 @@ cDot11AssStatsDisassociated OBJECT-TYPE
::= { cDot11AssociationStatsEntry 6 }
cd11IfCipherStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfCipherStatsEntry
MAX-ACCESS not-accessible
@ -777,8 +931,7 @@ cd11IfCipherStatsEntry OBJECT-TYPE
INDEX { ifIndex }
::= { cd11IfCipherStatsTable 1 }
Cd11IfCipherStatsEntry ::=
SEQUENCE {
Cd11IfCipherStatsEntry ::= SEQUENCE {
cd11IfCipherMicFailClientAddress MacAddress,
cd11IfCipherTkipLocalMicFailures Counter32,
cd11IfCipherTkipRemotMicFailures Counter32,
@ -887,8 +1040,7 @@ cDot11ClientConfigInfoEntry OBJECT-TYPE
}
::= { cDot11ClientConfigInfoTable 1 }
CDot11ClientConfigInfoEntry ::=
SEQUENCE {
CDot11ClientConfigInfoEntry ::= SEQUENCE {
cDot11ClientAddress MacAddress,
cDot11ClientParentAddress MacAddress,
cDot11ClientRoleClassType CDot11ClientRoleClassType,
@ -907,21 +1059,14 @@ CDot11ClientConfigInfoEntry ::=
cDot11ClientIpAddress InetAddress,
cDot11ClientVlanId CDot11IfVlanIdOrZero,
cDot11ClientSubIfIndex InterfaceIndex,
cDot11ClientAuthenAlgorithm
CDot11AuthenticationMethod,
cDot11ClientAdditionalAuthen
CDot11AdditionalAuthenMethod,
cDot11ClientDot1xAuthenAlgorithm
CDot11Dot1xAuthenMethod,
cDot11ClientKeyManagement
CDot11KeyManagementMethod,
cDot11ClientUnicastCipher
CDot11IfCipherType,
cDot11ClientMulticastCipher
CDot11IfCipherType,
cDot11ClientAuthenAlgorithm CDot11AuthenticationMethod,
cDot11ClientAdditionalAuthen CDot11AdditionalAuthenMethod,
cDot11ClientDot1xAuthenAlgorithm CDot11Dot1xAuthenMethod,
cDot11ClientKeyManagement CDot11KeyManagementMethod,
cDot11ClientUnicastCipher CDot11IfCipherType,
cDot11ClientMulticastCipher CDot11IfCipherType,
cDot11ClientDevObjectID OBJECT IDENTIFIER,
cDot11ClientNewKeyManagement
CDot11NewKeyManagementMethod
cDot11ClientNewKeyManagement CDot11NewKeyManagementMethod
}
cDot11ClientAddress OBJECT-TYPE
@ -1002,7 +1147,8 @@ cDot11ClientMicEnabled OBJECT-TYPE
cDot11ClientPowerSaveMode OBJECT-TYPE
SYNTAX INTEGER {
active(1),
powersave(2) }
powersave(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1239,8 +1385,7 @@ cDot11ClientDevObjectID OBJECT-TYPE
assigned by the respective vendor. A value of '0.0'
shall be populated if no such identification exists
for this 802.11 client."
REFERENCE
"sysObjectID from SNMPv2-MIB"
REFERENCE "sysObjectID from SNMPv2-MIB"
::= { cDot11ClientConfigInfoEntry 25 }
cDot11ClientNewKeyManagement OBJECT-TYPE
@ -1254,6 +1399,7 @@ cDot11ClientNewKeyManagement OBJECT-TYPE
management method is employed."
::= { cDot11ClientConfigInfoEntry 26 }
-- ********************************************************************
-- * dot11 client statistics
-- ********************************************************************
@ -1280,8 +1426,7 @@ cDot11ClientStatisticEntry OBJECT-TYPE
AUGMENTS { cDot11ClientConfigInfoEntry }
::= { cDot11ClientStatisticTable 1 }
CDot11ClientStatisticEntry ::=
SEQUENCE {
CDot11ClientStatisticEntry ::= SEQUENCE {
cDot11ClientCurrentTxRateSet OCTET STRING,
cDot11ClientUpTime Unsigned32,
cDot11ClientSignalStrength Integer32,
@ -1296,7 +1441,8 @@ CDot11ClientStatisticEntry ::=
cDot11ClientMsduFails Counter32,
cDot11ClientWepErrors Counter32,
cDot11ClientMicErrors Counter32,
cDot11ClientMicMissingFrames Counter32 }
cDot11ClientMicMissingFrames Counter32
}
cDot11ClientCurrentTxRateSet OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..126))
@ -1467,8 +1613,10 @@ cDot11ClientMicMissingFrames OBJECT-TYPE
ciscoDot11AssocMIBConformance OBJECT IDENTIFIER
::= { ciscoDot11AssociationMIB 2 }
ciscoDot11AssocMIBCompliances OBJECT IDENTIFIER
::= { ciscoDot11AssocMIBConformance 1 }
ciscoDot11AssocMIBGroups OBJECT IDENTIFIER
::= { ciscoDot11AssocMIBConformance 2 }
@ -1482,7 +1630,8 @@ ciscoDot11AssocMIBCompliance MODULE-COMPLIANCE
DESCRIPTION
"The compliance statement for the ciscoDot11Assoc
group."
MODULE MANDATORY-GROUPS {
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11AssocGlobalGroup,
ciscoDot11ClientConfigGroup,
ciscoDot11ClientStatGroup
@ -1495,7 +1644,8 @@ ciscoDot11AssocMIBComplianceRev1 MODULE-COMPLIANCE
"The compliance statement for the ciscoDot11Assoc
group. This is deprecated in favor of the
ciscoDot11AssocMIBComplianceRev2."
MODULE MANDATORY-GROUPS {
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11AssocGlobalGroup,
ciscoDot11ClientConfigGroup,
ciscoDot11ClientStatGroup,
@ -1508,7 +1658,7 @@ ciscoDot11AssocMIBComplianceRev2 MODULE-COMPLIANCE
DESCRIPTION
"The compliance statement for the ciscoDot11Assoc
group."
MODULE
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11ClientConfigGroup,
ciscoDot11ClientStatGroup,
@ -1516,19 +1666,19 @@ ciscoDot11AssocMIBComplianceRev2 MODULE-COMPLIANCE
ciscoDot11IfAssocStatGroup,
ciscoDot11IfCipherStatGroup
}
GROUP ciscoDot11ApAssocGlobalGroup
DESCRIPTION
"This group is required only if the platform
is a IEEE 802.11 AP/repeater or bridge."
::= { ciscoDot11AssocMIBCompliances 3 }
ciscoDot11AssocMIBComplianceRev3 MODULE-COMPLIANCE
STATUS deprecated -- by ciscoDot11AssocMIBComplianceRev4
STATUS deprecated
DESCRIPTION
"The compliance statement for this
ciscoDot11AssociationMIB module."
MODULE
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11ClientConfigGroup,
ciscoDot11ClientAuthenGroup,
@ -1537,11 +1687,11 @@ ciscoDot11AssocMIBComplianceRev3 MODULE-COMPLIANCE
ciscoDot11IfAssocStatGroup,
ciscoDot11IfCipherStatGroup
}
GROUP ciscoDot11ApAssocGlobalGroup
DESCRIPTION
"This group is required only if the platform
is a IEEE 802.11 AP/repeater or bridge."
::= { ciscoDot11AssocMIBCompliances 4 }
ciscoDot11AssocMIBComplianceRev4 MODULE-COMPLIANCE
@ -1549,7 +1699,7 @@ ciscoDot11AssocMIBComplianceRev4 MODULE-COMPLIANCE
DESCRIPTION
"The compliance statement for this
ciscoDot11AssociationMIB module."
MODULE
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11ClientConfigGroup,
ciscoDot11ClientAuthenGroup,
@ -1559,11 +1709,11 @@ ciscoDot11AssocMIBComplianceRev4 MODULE-COMPLIANCE
ciscoDot11IfCipherStatGroup,
ciscoDot11ClientConfigExtGroup
}
GROUP ciscoDot11ApAssocGlobalGroup
DESCRIPTION
"This group is required only if the platform
is a IEEE 802.11 AP/repeater or bridge."
::= { ciscoDot11AssocMIBCompliances 5 }
ciscoDot11AssocMIBComplianceRev5 MODULE-COMPLIANCE
@ -1571,7 +1721,7 @@ ciscoDot11AssocMIBComplianceRev5 MODULE-COMPLIANCE
DESCRIPTION
"The compliance statement for this
ciscoDot11AssociationMIB module."
MODULE
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11ClientConfigGroup,
ciscoDot11ClientAuthenGroup,
@ -1582,14 +1732,39 @@ ciscoDot11AssocMIBComplianceRev5 MODULE-COMPLIANCE
ciscoDot11ClientConfigExtGroup,
ciscoDot11ClientNewAuthenGroup
}
GROUP ciscoDot11ApAssocGlobalGroup
DESCRIPTION
"This group is required only if the platform
is a IEEE 802.11 AP/repeater or bridge."
::= { ciscoDot11AssocMIBCompliances 6 }
ciscoDot11AssocMIBComplianceRev6 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for this
ciscoDot11AssociationMIB module."
MODULE -- this module
MANDATORY-GROUPS {
ciscoDot11ClientConfigGroup,
ciscoDot11ClientAuthenGroup,
ciscoDot11ClientStatGroup,
ciscoDot11ClientInfoGroup,
ciscoDot11IfAssocStatGroup,
ciscoDot11IfCipherStatGroup,
ciscoDot11ClientConfigExtGroup,
ciscoDot11ClientNewAuthenGroup
}
GROUP ciscoDot11ApAssocGlobalGroup
DESCRIPTION
"This group is required only if the platform
is a IEEE 802.11 AP/repeater or bridge."
GROUP ciscoDot11ClientStatusTrapsGroup
DESCRIPTION
"This group is for optional wireless client
status trap in autonomous AP."
::= { ciscoDot11AssocMIBCompliances 7 }
-- ********************************************************************
-- * Units of conformance
@ -1671,9 +1846,7 @@ ciscoDot11ClientInfoGroup OBJECT-GROUP
::= { ciscoDot11AssocMIBGroups 4 }
ciscoDot11ApAssocGlobalGroup OBJECT-GROUP
OBJECTS {
cDot11ParentAddress
}
OBJECTS { cDot11ParentAddress }
STATUS current
DESCRIPTION
"This group includes per AP or bridge global
@ -1731,9 +1904,7 @@ ciscoDot11ClientAuthenGroup OBJECT-GROUP
::= { ciscoDot11AssocMIBGroups 8 }
ciscoDot11ClientConfigExtGroup OBJECT-GROUP
OBJECTS {
cDot11ClientDevObjectID
}
OBJECTS { cDot11ClientDevObjectID }
STATUS current
DESCRIPTION
"This group provides more configuration
@ -1742,18 +1913,43 @@ ciscoDot11ClientConfigExtGroup OBJECT-GROUP
::= { ciscoDot11AssocMIBGroups 9 }
ciscoDot11ClientNewAuthenGroup OBJECT-GROUP
OBJECTS {
cDot11ClientNewKeyManagement
}
OBJECTS { cDot11ClientNewKeyManagement }
STATUS current
DESCRIPTION
"This group includes per IEEE 802.11 radio
interface cipher related statistics collected."
::= { ciscoDot11AssocMIBGroups 10 }
--********************************************************************
--* End of units of conformance
--********************************************************************
ciscoDot11ClientStatusTrapsGroup OBJECT-GROUP
OBJECTS {
clientMacAddr,
clientDeviceType,
clientDeviceName,
clientIpv4Address,
clientIpv6Address,
apMacAddr,
apIpv4Address,
apIpv6Address,
clientStationState,
clientDisassocReasonStr
}
STATUS current
DESCRIPTION
"This group includes wireless client information
that association or disassociation trap includes."
::= { ciscoDot11AssocMIBGroups 11 }
END

View file

@ -3,7 +3,7 @@
--
-- November 1997, Cliff L. Sojourner
--
-- Copyright (c) 1998-2003-2006, 2013, 2015 by cisco Systems Inc.
-- Copyright (c) 1998-2017 by cisco Systems Inc.
-- All rights reserved.
-- *****************************************************************
@ -32,7 +32,7 @@ IMPORTS
ciscoEntitySensorMIB MODULE-IDENTITY
LAST-UPDATED "201501150000Z"
LAST-UPDATED "201701190000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: Cisco Systems, Inc.
@ -47,6 +47,9 @@ ciscoEntitySensorMIB MODULE-IDENTITY
"The CISCO-ENTITY-SENSOR-MIB is used to monitor
the values of sensors in the Entity-MIB (RFC 2037)
entPhysicalTable."
REVISION "201701190000Z"
DESCRIPTION
"Added enumerated value dB(15) to SensorDataType."
REVISION "201501150000Z"
DESCRIPTION
"Corrected the definition of entSensorPrecision."
@ -120,7 +123,8 @@ SensorDataType ::= TEXTUAL-CONVENTION
cmm(11),: cubic meters per minute (airflow)
truthvalue(12): value takes { true(1), false(2) }
specialEnum(13): value takes user defined enumerated values
dBm(14): dB relative to 1mW of power"
dBm(14): dB relative to 1mW of power
dB(15): decibel"
SYNTAX INTEGER {
other(1),
unknown(2),
@ -135,7 +139,8 @@ SensorDataType ::= TEXTUAL-CONVENTION
cmm(11),
truthvalue(12),
specialEnum(13),
dBm(14)
dBm(14),
dB(15)
}
SensorDataScale ::= TEXTUAL-CONVENTION
@ -207,7 +212,6 @@ SensorValue ::= TEXTUAL-CONVENTION
to indicate how many fractional digits the SensorValue
has.
For sensors that measure percentRH, this item
is a number ranging from 0 to 100.
@ -940,4 +944,27 @@ entitySensorNotificationGroup NOTIFICATION-GROUP
END
-- %DNP% MLC -Compiled MLC
-- %DNP% MRS -with reviewer MRS
-- %DNP% MRC - ciscoEntitySensorMIB~1~ - 2017011904:47 PST - linche -18.0 -ACK
-- %DNP% - < ^^ Copyright (c) 1998-2017 by cisco Systems Inc.
-- %DNP%^^-
-- %DNP%> ^^ Copyright (c) 1998-2003-2006, 2013, 2015, 2017 by cisco Systems
-- %DNP%Inc.
-- %DNP%35c35
-- %DNP%< LAST-UPDATED "201701190000Z"
-- %DNP%^^-
-- %DNP%> LAST-UPDATED "201612210000Z"
-- %DNP%50c50
-- %DNP%< REVISION "201701190000Z"
-- %DNP%^^-
-- %DNP%> REVISION "201612210000Z"
-- %DNP%52c52
-- %DNP%< "Added enumerated value dB(15) to SensorDataType."
-- %DNP%^^-
-- %DNP%> "[1] Add dB(15) in SensorDataType."
-- %DNP%
-- %DNP% -0 MRC

View file

@ -24,7 +24,7 @@ IMPORTS
FROM CISCO-SMI;
ciscoEntityVendortypeOIDMIB MODULE-IDENTITY
LAST-UPDATED "201806050000Z"
LAST-UPDATED "202410070000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
@ -2118,6 +2118,7 @@ cevChassisNCS1010SA OBJECT IDENTIFIER ::= { cevChassis 2478 }
cevChassisNCS57C148Q6Sys OBJECT IDENTIFIER ::= { cevChassis 2484 } -- NCS5700 Twins
cevChassisUCSFI6536 OBJECT IDENTIFIER ::= { cevChassis 2485 } -- Cisco UCS Unified Computing System 6536 36-40G/100G Port Fabric Interconnect
cevChassisNCS540L6Z14GSysD OBJECT IDENTIFIER ::= { cevChassis 2491 } -- NCS540L Router - N540-6Z14G-SYS-D
cevChassisC9200CX12P2XGH OBJECT IDENTIFIER ::= { cevChassis 2492 } -- Catalyst 9200CX 12x GE downlinks, 2x 1G copper + 2x 10G SFP+ uplinks, PoE+ for 240W, 310W Internal FEP with SAF-D-Grid Power Connector for HVDC
cevChassisFpr3105td OBJECT IDENTIFIER ::= { cevChassis 2493 } -- Chassis for Cisco Firepower 3105 Security Appliance
cevChassisIE31004T2S OBJECT IDENTIFIER ::= { cevChassis 2494 } -- Catalyst IE3100 with 4 GE Copper and 2 GE SFP Ports, Fixed system, Network Essentials
cevChassisIE31008T2C OBJECT IDENTIFIER ::= { cevChassis 2495 } -- Catalyst IE3100 with 8 GE Copper and 2 Combo Ports, Fixed system, Network Essentials
@ -2201,7 +2202,15 @@ cevChassisC1131X8PLTEPWF OBJECT IDENTIFIER ::= { cevChassis 2621
cevChassisC1131X8PLTEPWD OBJECT IDENTIFIER ::= { cevChassis 2622 } -- Cisco C1131X-8PLTEPWD 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -D Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC1131X8PLTEPWR OBJECT IDENTIFIER ::= { cevChassis 2623 } -- Cisco C1131X-8PLTEPWR 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -R Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisN9KC92348GCFX3 OBJECT IDENTIFIER ::= { cevChassis 2652 } -- Cisco Nexus 9200 Series fixed switch with 48x100M/1G BASE-T + 4x10/25 Gbps SFP28 + 2x40/100-Gbps QSFP28 ports
cevChassisN9KC93320TCFX3P OBJECT IDENTIFIER ::= { cevChassis 2659 } -- 2RU TOR fixed chassis with 12 x 100M/1G/2.5G/5G/10G BASE-T+2x40/100G QSFP28 ports
cevChassisC11318PWS OBJECT IDENTIFIER ::= { cevChassis 2661 } -- Cisco C1131-8PWS 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -S Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC1131X8PWS OBJECT IDENTIFIER ::= { cevChassis 2662 } -- Cisco C1131X-8PWS 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -S Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC11318PLTEPWS OBJECT IDENTIFIER ::= { cevChassis 2663 } -- Cisco C1131-8PLTEPWS 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -S Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC1131X8PLTEPWS OBJECT IDENTIFIER ::= { cevChassis 2664 } -- Cisco C1131X-8PLTEPWS 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -S Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC11318PWI OBJECT IDENTIFIER ::= { cevChassis 2665 } -- Cisco C1131-8PWI 8 Ports GE LAN Router Chassis with 4GB memory, 802.11ax WLAN -I Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC1131X8PWI OBJECT IDENTIFIER ::= { cevChassis 2666 } -- Cisco C1131X-8PWI 8 Ports GE LAN Router Chassis with 8GB memory, 802.11ax WLAN -I Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC11318PLTEPWI OBJECT IDENTIFIER ::= { cevChassis 2667 } -- Cisco C1131-8PLTEPWI 8 Ports GE LAN Router Chassis with 4GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -I Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevChassisC1131X8PLTEPWI OBJECT IDENTIFIER ::= { cevChassis 2668 } -- Cisco C1131X-8PLTEPWI 8 Ports GE LAN Router Chassis with 8GB memory, Pluggable LTE (Advanced Pro), 802.11ax WLAN -I Domain, 2 RJ45/SFP combo GE WAN, USB 2.0 and RJ45 console
cevBackplane OBJECT IDENTIFIER ::= { cevMIBObjects 4 }
cevBackplaneAtm OBJECT IDENTIFIER ::= { cevBackplane 4 } -- LS1010 Chassis
@ -3366,6 +3375,8 @@ cevPowerSupplyC9400PWR3200ACT OBJECT IDENTIFIER ::= { cevPowerSupply 8
cevPowerSupplyDSCAC1400WI OBJECT IDENTIFIER ::= { cevPowerSupply 834 } -- DS-CAC-1400W-I, Port side intake, 1400W AC Power Supply Unit for DS-C9396V-K9
cevPowerSupplyDSCAC1400WE OBJECT IDENTIFIER ::= { cevPowerSupply 835 } -- DS-CAC-1400W-E, Port side exhaust, 1400W AC Power Supply Unit for DS-C9396V-K9
cevPowerSupplyDSCHV2000WI OBJECT IDENTIFIER ::= { cevPowerSupply 836 } -- DS-CHV-2000W-I, Port side Intake, 2000W CHV Power Supply Unit for DS-C9396V-K9
cevPowerSupplyNXAPAC1400WPI OBJECT IDENTIFIER ::= { cevPowerSupply 841 } -- N9K NXA-PAC-1400W-PI port-intake power supply unit
cevPowerSupplyNXAPAC1400WPE OBJECT IDENTIFIER ::= { cevPowerSupply 842 } -- N9K NXA-PAC-1400W-PE port-exhaust power supply unit
cevPowerSupplyPWRC11900WHVT OBJECT IDENTIFIER ::= { cevPowerSupply 843 } -- 1900W hVAC/hVDC 80+ titanium Config 1 Power Supply
cevPowerSupplyPWRCH1AC250W OBJECT IDENTIFIER ::= { cevPowerSupply 844 } -- Cisco 250 watt AC Power Supply
cevPowerSupplyPWRC11900WHVT2 OBJECT IDENTIFIER ::= { cevPowerSupply 845 } -- 1900W hVAC/hVDC 80+ titanium Config 1 Secondary Power Supply
@ -3768,6 +3779,8 @@ cevFanA907FANH OBJECT IDENTIFIER ::= { cevFan 462 } -- ASR907-H
cevFanNCS1K14FAN OBJECT IDENTIFIER ::= { cevFan 463 } -- Network Convergence System 1014 FAN Module
cevFanC9610FAN OBJECT IDENTIFIER ::= { cevFan 464 } -- Cisco Catalyst 9600 Series 10 slot Chassis Fan Tray
cevFanNXASFAN39CFMPI OBJECT IDENTIFIER ::= { cevFan 467 } -- Nexus 9200 Fan (Port Side Intake)
cevFanNXASFAN160CFM2PI OBJECT IDENTIFIER ::= { cevFan 470 } -- Smart fan for N9K TOR - port intake
cevFanNXASFAN160CFM2PE OBJECT IDENTIFIER ::= { cevFan 471 } -- Smart fan for N9K TOR - port exhaust
cevFanCW9800MFanTray OBJECT IDENTIFIER ::= { cevFan 475 } -- Cisco Catalyst CW9800M Fan Tray
cevFanCW9800H1FanTray OBJECT IDENTIFIER ::= { cevFan 476 } -- Cisco Catalyst CW9800H1 Fan Tray
cevFanCW9800H2FanTray OBJECT IDENTIFIER ::= { cevFan 477 } -- Cisco Catalyst CW9800H2 Fan Tray
@ -3776,7 +3789,6 @@ cevFanC8530L8S8X4YFanTray OBJECT IDENTIFIER ::= { cevFan 479 } -- Cisco C8
cevFanC8530L8S2X2YFanTray OBJECT IDENTIFIER ::= { cevFan 480 } -- Cisco C8530L-8S2X2Y Fan Tray
cevFanNCS1010 OBJECT IDENTIFIER ::= { cevFan 481 } -- NCS1010 Fan Module
cevSensor OBJECT IDENTIFIER ::= { cevMIBObjects 8 }
cevSensorMGX8800Temp OBJECT IDENTIFIER ::= { cevSensor 11 } -- Cabinet Temperature sensor device in MGX8800 Universal Chassis
cevSensorMGX8800PSVoltage OBJECT IDENTIFIER ::= { cevSensor 12 } -- Power Supply Voltage Monitoring device in MGX8800 Universal Chassis
@ -4620,6 +4632,7 @@ cevModuleNCS1KMD32ECE OBJECT IDENTIFIER ::= { cevModuleCommonC
cevModuleNCS1KMD32OCE OBJECT IDENTIFIER ::= { cevModuleCommonCards 835 } -- NCS 1000 32chs Odd Mux/Demux-150GHz-C-band Enhanced - PID: NCS1K-MD-32O-CE
cevModuleC9610SSD480GB OBJECT IDENTIFIER ::= { cevModuleCommonCards 836 } -- This is 480GB SSD used in Catalyst 9610 switch. This is fruable ssd accessed through SATA
cevModuleN9KC92348GCFX3 OBJECT IDENTIFIER ::= { cevModuleCommonCards 837 } -- Cisco Nexus 9200 Series fixed switch with 48x100M/1G BASE-T + 4x10/25 Gbps SFP28 + 2x40/100-Gbps QSFP28 ports
cevModuleN9KC93320TCFX3P OBJECT IDENTIFIER ::= { cevModuleCommonCards 838 } -- 2RU TOR fixed module with 12 x 100M/1G/2.5G/5G/10G BASE-T + 2 x 40/100G QSFP28 ports
--cevModuleC36xxType cards are slot-cards specific to the c36xx platforms
cevModuleC36xxType OBJECT IDENTIFIER ::= { cevModule 3 }
@ -7462,6 +7475,7 @@ cevGLCFE100FX OBJECT IDENTIFIER ::= { cevModuleSFPType
cevGLCFE100BXD OBJECT IDENTIFIER ::= { cevModuleSFPType 310 } -- FE 100BASE-BX10 SFP 1550 nm TX/1310 nm RX 10 km over single-strand SMF
cevGLCFE100BXU OBJECT IDENTIFIER ::= { cevModuleSFPType 311 } -- FE 100BASE-BX10 SFP 1310 nm TX/1550 nm RX 10 km over single-strand SMF
cevSFP50GERI OBJECT IDENTIFIER ::= { cevModuleSFPType 315 } -- Cisco SFP28 50G ER Pluggable Optics Module
cevONSSCPTP1510 OBJECT IDENTIFIER ::= { cevModuleSFPType 316 } -- Cisco SFP GE 1510 OSC Pluggable Optics Module
cevModuleONS15200Type OBJECT IDENTIFIER ::= { cevModule 52 } -- Represents the base class for all the modules used in ONS15200.
cevONS15252Clip OBJECT IDENTIFIER ::= { cevModuleONS15200Type 1 } -- ONS15252 Client Line Interface Port
@ -8784,6 +8798,7 @@ cevUCSE180DM3K9 OBJECT IDENTIFIER ::= { cevModuleUCSType 183 }
cevUCSE1120DM3K9 OBJECT IDENTIFIER ::= { cevModuleUCSType 184 } -- Cisco Integrated Management Controller (CIMC) UCS-E1120D-M3/K9
cevUCSFI64108 OBJECT IDENTIFIER ::= { cevModuleUCSType 185 } -- Fixed Module within Cisco UCS 64108 Fabric InterConnect with 96x10G/25G UP Ports + 12x40G/100G Ports
cevUCSFI6536FixedModule OBJECT IDENTIFIER ::= { cevModuleUCSType 186 } -- Fixed Module within Cisco UCS 6536 Fabric InterConnect
cevUCSXS9108100G OBJECT IDENTIFIER ::= { cevModuleUCSType 188 } -- Fixed module within Cisco UCSX-Direct FI/IFM
cevModuleNexus1010Type OBJECT IDENTIFIER ::= { cevModule 81 } -- This is the module type to represent a Virtual Supervisor Card for the Nexus1010 product
cevNexus1010VSM OBJECT IDENTIFIER ::= { cevModuleNexus1010Type 1 } -- Virtual Supervisor Module for Nexus1010
@ -9385,6 +9400,7 @@ cevModuleISRAP1101AXK OBJECT IDENTIFIER ::= { cevModuleISRType 332 } -- Ci
cevModuleISRAP1101AXF OBJECT IDENTIFIER ::= { cevModuleISRType 333 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in F domain
cevModuleISRAP1101AXD OBJECT IDENTIFIER ::= { cevModuleISRType 334 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in D domain
cevModuleISRAP1101AXR OBJECT IDENTIFIER ::= { cevModuleISRType 335 } -- Cisco ISR Series WLAN Access Point Module that supports 802.11ax in R domain
cevModuleIRM11004S8I OBJECT IDENTIFIER ::= { cevModuleISRType 341 } -- Goldcrest is an Expansion module of IR1101 with 4xGE SFP Ports and 8 Digital IO alarm ports
cevModuleN77Type OBJECT IDENTIFIER ::= { cevModule 97 } -- Group for the Nexus7700 type of cards
cevN77c7718Fab2 OBJECT IDENTIFIER ::= { cevModuleN77Type 1 } -- Fabric for Nexus7700 18-slot chassis
@ -9721,6 +9737,7 @@ cevN9KC92304QCFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KTyp
cevN9KC9232CFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 7 } -- Nexus N9K-C9232C Series fixed module with 32x40G/100G QSFP28 Ethernet
cevN9KC92348GCXFixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 8 } -- TOR 48x100M/1G Base-T + 4x10/25G SPF28 + 2x40/100G QSFP28
cevN9KC9232EB1FixedModule OBJECT IDENTIFIER ::= { cevModuleN92KType 9 } -- 32 port 800G module
cevN9KC92348GCFX3 OBJECT IDENTIFIER ::= { cevModuleN92KType 11 } -- Cisco Nexus 9200 Series fixed switch with 48x100M/1G BASE-T + 4x10/25 Gbps SFP28 + 2x40/100-Gbps QSFP28 ports
cevModuleN9KType OBJECT IDENTIFIER ::= { cevModule 115 } -- Group for the Nexus9000 Module
cevN9KFabricExtenderConnectionCable OBJECT IDENTIFIER ::= { cevModuleN9KType 1 } -- N9K FEX Fabric Extender cabling
@ -10119,7 +10136,9 @@ cevQDD4ZQ100CU3M OBJECT IDENTIFIER ::= { cevModuleQSFPDD 77 } -- 4Z
cevDP04QSDDER1 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 78 } -- Cisco QSFPDD 400G ER1 Pluggable Optics Module
cevQDDONSOLS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 79 } -- Cisco QSFP-DD Pluggable Optical Line System
cevQDD400GSR4DOT2BD OBJECT IDENTIFIER ::= { cevModuleQSFPDD 81 } -- 400G BiDi QDD Module, 70/100/150m over OM3/OM4/OM5
cevQDD400GDR4PLUS OBJECT IDENTIFIER ::= { cevModuleQSFPDD 82 } -- QSFP-DD-400G-DR4-PLUS cable
cevONSQSFPOTDR OBJECT IDENTIFIER ::= { cevModuleQSFPDD 83 } -- QSFP DD ONS OTDR Module from Coherent
cevQSFPDDZT5 OBJECT IDENTIFIER ::= { cevModuleQSFPDD 84 } -- Cisco QSFP DD ZT5 Pluggable Optics Module
cevModuleNCS540LType OBJECT IDENTIFIER ::= { cevModule 140 } -- NCS540L series
cevModuleNCS540L28Z4SysA OBJECT IDENTIFIER ::= { cevModuleNCS540LType 1 } -- NCS540L series - NCS540-28Z4-SYS-A Module
@ -10636,6 +10655,7 @@ cevC9200BFixedSwitchStack OBJECT IDENTIFIER ::= { cevStack 33 } -- A stack of
cevCat100010GbpsStack OBJECT IDENTIFIER ::= { cevStack 34 } -- A 10 Gbps ethernet stack of cat1000 switch modules
cevCat10001GbpsStack OBJECT IDENTIFIER ::= { cevStack 35 } -- A 1 Gbps ethernet stack of cat1000 switch modules
cevIE9300Stack OBJECT IDENTIFIER ::= { cevStack 39 } -- Cisco Catalyst IE9300 stackable Ethernet switches with unified identity, control and management
cevStackC9610RVirtualStack OBJECT IDENTIFIER ::= { cevStack 41 } -- Cisco Catalyst 9600 Series 10 slot Virtual Stack
cevMidplane OBJECT IDENTIFIER ::= { cevMIBObjects 12 } -- Midplane of the chassis
cevMidplaneUmg9820 OBJECT IDENTIFIER ::= { cevMidplane 1 } -- Midplane of umg9820

View file

@ -33,7 +33,7 @@ IMPORTS
ciscoErrDisableMIB MODULE-IDENTITY
LAST-UPDATED "201606020000Z"
LAST-UPDATED "201911280000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
@ -103,6 +103,11 @@ ciscoErrDisableMIB MODULE-IDENTITY
3) If error recovery is possible, then the time
interval to wait before the system starts the recovery
attempt."
REVISION "201911280000Z"
DESCRIPTION
"Added the following new enumerations in
CErrDisableFeatureID:
loopDetect(62)."
REVISION "201606020000Z"
DESCRIPTION
"Added the following new enumerations in
@ -317,7 +322,8 @@ CErrDisableFeatureID ::= TEXTUAL-CONVENTION
oneHundredPdusWithoutAck: DCX Recieved 100 PDUs without ACK
ipQosCompatCheckFailure: IP Qos DCBXP compat check failed"
ipQosCompatCheckFailure: IP Qos DCBXP compat check failed
loopDetect: Loopdetection in the network"
SYNTAX INTEGER {
udld(1),
bpduGuard(2),
@ -379,7 +385,8 @@ CErrDisableFeatureID ::= TEXTUAL-CONVENTION
ipConflict(58),
multipleMSapIdsRcvd(59),
oneHundredPdusWithoutAck(60),
ipQosCompatCheckFailure(61)
ipQosCompatCheckFailure(61),
loopDetect(62)
}
-- Global configuration objects
@ -931,6 +938,3 @@ ciscoErrDisableFeatureFlapGroup OBJECT-GROUP
END

View file

@ -7,7 +7,7 @@
-- %DNP% Aug 2003, Jayakumar Kadirvelu
-- %DNP% Aug 2004, Arul Mozhi
--
-- Copyright (c) 2002-2016, 2020 by cisco Systems Inc.
-- Copyright (c) 2002-2016-2021 by cisco Systems Inc.
--
-- All rights reserved.
-- *************************************************************
@ -51,7 +51,7 @@ IMPORTS
ciscoIfExtensionMIB MODULE-IDENTITY
LAST-UPDATED "202011030000Z"
LAST-UPDATED "202102120000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
@ -91,6 +91,10 @@ ciscoIfExtensionMIB MODULE-IDENTITY
Drop Virtual Link - According to 802.3 standard,
Traffic drop may occur on this virtual Link."
REVISION "202102120000Z"
DESCRIPTION
"Added enumerated value eightSixteenThirtyTwoSixtyFourG to
cieIfSpeedGroupConfig."
REVISION "202011030000Z"
DESCRIPTION
"Added cieIfDuplexCfgStatus and cieIfDuplexDetectStatus."
@ -1016,7 +1020,8 @@ cieIfSpeedGroupConfig OBJECT-TYPE
tenG(2),
oneTwoFourEightG(3),
twoFourEightSixteenG(4),
fourEightSixteenThirtyTwoG(5)
fourEightSixteenThirtyTwoG(5),
eightSixteenThirtyTwoSixtyFourG(6)
}
MAX-ACCESS read-write
STATUS current
@ -1034,7 +1039,9 @@ cieIfSpeedGroupConfig OBJECT-TYPE
'2G-4G-8G-16G' - the interface speed group configuration
on this interface as 2G-4G-8G-16G.
'4G-8G-16G-32G' - the interface speed group configuration
on this interface as 4G-8G-16G-32G."
on this interface as 4G-8G-16G-32G.
'8G-16G-32G-64G' - the interface speed group configuration
on this interface as 8G-16G-32G-64G."
::= { cieIfInterfaceEntry 15 }
cieIfTransceiverFrequencyConfig OBJECT-TYPE

View file

@ -4,7 +4,7 @@
-- June 2006, Devesh Pujari, Srinath Candadai
-- March 2011 Suja Thangaveluchamy
--
-- Copyright (c) 2006, 2010-2012, 2016-2018 by Cisco Systems Inc.
-- Copyright (c) 2006, 2010-2012, 2016-2018, 2020-2021, 2024 by Cisco Systems, Inc.
-- All rights reserved.
-- *******************************************************************
@ -71,7 +71,7 @@ IMPORTS
-- ********************************************************************
ciscoLwappDot11ClientMIB MODULE-IDENTITY
LAST-UPDATED "201804230000Z"
LAST-UPDATED "202405130000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems,
@ -235,6 +235,23 @@ ciscoLwappDot11ClientMIB MODULE-IDENTITY
[2] Draft-obara-capwap-lwapp-00.txt, IETF Light
Weight Access Point Protocol"
REVISION "202011230000Z"
DESCRIPTION
"Added the following objects:
cldcMaxClientsTrapEnabled,
cldcMaxClientsTrapThreshold,
cldcMaxClientsTrapPeriod,
cldcMaxClientsCount,
cldcMaxThresholdReachedClear,
ciscoLwappDot11ClientMaxClientsReached,
and groups:
ciscoLwappDot11ClientMIBConfigGroupRev2,
ciscoLwappDot11ClientMIBNotifsGroupRev3,
ciscoLwappDot11ClientMIBNotifControlGroupRev2,
ciscoLwappDot11ClientMIBStatusGroupRev3"
REVISION "202005130000Z"
DESCRIPTION
"Added cldcClientMobileStPolicyType"
REVISION "201804230000Z"
DESCRIPTION
"Added cldcClientiPSKTag."
@ -371,7 +388,8 @@ CldcClientEntry ::= SEQUENCE {
cldcClientHtCapable TruthValue,
cldcClientVhtCapable TruthValue,
cldcClientCurrentTxRate Unsigned32,
cldcClientiPSKTag OCTET STRING
cldcClientiPSKTag OCTET STRING,
cldcClientMobileStPolicyType INTEGER
}
cldcClientMacAddress OBJECT-TYPE
@ -443,7 +461,10 @@ cldcClientProtocol OBJECT-TYPE
dot11n5(7),
ethernet(8),
dot3(9),
dot11ac5(10)
dot11ac5(10),
dot11ax5(11),
dot11ax24(12),
dot11ax6(13)
}
MAX-ACCESS read-only
STATUS current
@ -1155,11 +1176,29 @@ cldcClientiPSKTag OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the iPSK peer group that this client is part of.
The clients with same ipsk tag can be allowed to have peer to peer traffic by
"This object indicates the PSK peer group that this client is part of.
The clients with same psk tag can be allowed to have peer to peer traffic by
configuring the wlan p2p blocking."
::= { cldcClientEntry 51 }
cldcClientMobileStPolicyType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
dot1x(1),
wpa1(2),
wpa2(3),
wpa2vff(4),
notavailable(5),
wpa2or3(6),
wpaOsen(7),
wpaOsenWithinRsn(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Security policy of the AP to which the Mobile Station is associated."
::= { cldcClientEntry 52 }
cldcClientByIpTable OBJECT-TYPE
@ -1804,6 +1843,53 @@ ciscoLwappDot11ClientStaticIpFailTrapEnabled OBJECT-TYPE
DEFVAL { true }
::= { cldcConfigObjects 5 }
cldcMaxClientsTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the
ciscoLwappDot11ClientMaxClientsReached notification would
be generated.
A value of 'true' indicates that the agent generates
ciscoLwappDot11ClientMaxClientsReached notifications.
A value of 'false' indicates that the agent doesn't
generate ciscoLwappDot11ClientMaxClientsReached
notification."
DEFVAL { true }
::= { cldcConfigObjects 6 }
cldcMaxClientsTrapThreshold OBJECT-TYPE
SYNTAX Unsigned32 (50..100)
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the threshold for number
of clients on the controller to trigger a trap.
The trap ciscoLwappDot11ClientMaxClientsReached
will be triggered once the count of clients
on the controller reaches this limit and the
ciscoLwappDot11ClientMaxClientsTrapEnabled
is enabled. The admissible range goes from 50%
to 100%."
::= { cldcConfigObjects 7 }
cldcMaxClientsTrapPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1..60)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the period of time for the
controller to trigger a trap.
The trap ciscoLwappDot11ClientMaxClientsReached
will be triggered only once per period if
ciscoLwappDot11ClientMaxClientsTrapEnabled
is enabled. The admissible range goes from 1 minute
to 60 minutes."
::= { cldcConfigObjects 8 }
-- ********************************************************************
-- * NOTIFICATIONS Objects
-- ********************************************************************
@ -2476,6 +2562,29 @@ cldcClientPmipDownKey OBJECT-TYPE
"This object indicates the downstream key of the PMIP client."
::= { cldcNotifObjects 44 }
cldcMaxClientsCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents the number of clients joined
to the controller when ciscoLwappDot11ClientMaxClientsReached
is sent."
::= { cldcNotifObjects 45 }
cldcMaxThresholdReachedClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object represents whether
ciscoLwappDot11ClientMaxClientsReached is
raise or clear.
A value of 'true' indicates that this event is
cleared
A value of 'false' indicates that this event is
raised."
::= { cldcNotifObjects 46 }
-- ********************************************************************
-- * NOTIFICATIONS
-- ********************************************************************
@ -2970,6 +3079,18 @@ ciscoLwappDot11ClientMobilityTrap NOTIFICATION-TYPE
"The notification shall be sent when the Station
gets roamed."
::= { ciscoLwappDot11ClientMIBNotifs 12 }
ciscoLwappDot11ClientMaxClientsReached NOTIFICATION-TYPE
OBJECTS {
cldcMaxClientsTrapThreshold,
cldcMaxClientsCount,
cldcMaxThresholdReachedClear
}
STATUS current
DESCRIPTION
"This notification is generated when the number of
clients on the controller exceeds the limit defined by
cldcMaxClientsTrapThreshold."
::= { ciscoLwappDot11ClientMIBNotifs 13 }
-- *******************************************************************
-- * Compliance statements
-- ********************************************************************
@ -3035,7 +3156,7 @@ ciscoLwappDot11ClientMIBComplianceRev3 MODULE-COMPLIANCE
::= { ciscoLwappDot11ClientMIBCompliances 3 }
ciscoLwappDot11ClientMIBComplianceRev4 MODULE-COMPLIANCE
STATUS current
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement this MIB."
@ -3053,6 +3174,29 @@ ciscoLwappDot11ClientMIBComplianceRev4 MODULE-COMPLIANCE
}
::= { ciscoLwappDot11ClientMIBCompliances 4 }
ciscoLwappDot11ClientMIBComplianceRev5 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement this MIB."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappDot11ClientMIBConfigGroup,
ciscoLwappDot11ClientMIBNotifsGroup,
ciscoLwappDot11ClientMIBStatusGroup,
ciscoLwappDot11ClientMIBStatusGroupRev2,
ciscoLwappDot11ClientMIBNotifsGroupRev2,
ciscoLwappDot11ClientMIBNotifControlGroup,
ciscoLwappDot11ClientMIBStatusGroupRev2Sup,
ciscoLwappDot11ClientMIBCcxGroup,
ciscoLwappDot11ClientMIBSup1Group,
ciscoLwappDot11ClientMIBConfigGroupRev2,
ciscoLwappDot11ClientMIBNotifsGroupRev3,
ciscoLwappDot11ClientMIBNotifControlGroupRev2,
ciscoLwappDot11ClientMIBStatusGroupRev3
}
::= { ciscoLwappDot11ClientMIBCompliances 5 }
-- ********************************************************************
-- * Units of conformance
-- ********************************************************************
@ -3165,7 +3309,8 @@ ciscoLwappDot11ClientMIBStatusGroupRev2 OBJECT-GROUP
cldcClientRxDataPackets,
cldcClientRxDataBytes,
ciscoLwappDot11ClientStaticIpFailTrapEnabled,
cldcClientCurrentTxRate
cldcClientCurrentTxRate,
cldcClientMobileStPolicyType
}
STATUS current
DESCRIPTION
@ -3289,6 +3434,49 @@ ciscoLwappDot11ClientMIBSup1Group OBJECT-GROUP
clients notifications information."
::= { ciscoLwappDot11ClientMIBGroups 9 }
ciscoLwappDot11ClientMIBConfigGroupRev2 OBJECT-GROUP
OBJECTS {
cldcMaxClientsTrapPeriod,
cldcMaxClientsTrapThreshold
}
STATUS current
DESCRIPTION
"This collection of objects specifies the required
configuration parameters for the 802.11 wireless
clients."
::= { ciscoLwappDot11ClientMIBGroups 10 }
ciscoLwappDot11ClientMIBNotifsGroupRev3 NOTIFICATION-GROUP
NOTIFICATIONS {
ciscoLwappDot11ClientMaxClientsReached
}
STATUS current
DESCRIPTION
"This collection of objects represents the
notifications for the 802.11 wireless clients."
::= { ciscoLwappDot11ClientMIBGroups 11 }
ciscoLwappDot11ClientMIBNotifControlGroupRev2 OBJECT-GROUP
OBJECTS {
cldcMaxClientsTrapEnabled
}
STATUS current
DESCRIPTION
"This collection of objects represents the objects that
control the notifications for the 802.11 wireless
clients."
::= { ciscoLwappDot11ClientMIBGroups 12 }
ciscoLwappDot11ClientMIBStatusGroupRev3 OBJECT-GROUP
OBJECTS {
cldcMaxThresholdReachedClear,
cldcMaxClientsCount
}
STATUS current
DESCRIPTION
"This collection of objects specifies the required
status parameters for the 802.11 wireless clients."
::= { ciscoLwappDot11ClientMIBGroups 13 }
END

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
-- CISCO-LWAPP-MOBILITY-EXT-MIB.my
-- January 2011, Srinath Candadai
--
-- Copyright (c) 2011-2017 by Cisco Systems Inc.
-- Copyright (c) 2011-2020 by Cisco Systems, Inc.
-- All rights reserved.
-- *******************************************************************
@ -34,10 +34,13 @@ IMPORTS
FROM SNMP-FRAMEWORK-MIB
VlanIndex
FROM Q-BRIDGE-MIB
cLWlanIndex
cLWlanIndex,
cLWlanProfileName
FROM CISCO-LWAPP-WLAN-MIB
Dscp
FROM CISCO-QOS-PIB-MIB
cLWlanWlanPolicyName
FROM CISCO-LWAPP-WLAN-POLICY-MIB
ciscoMgmt
FROM CISCO-SMI;
@ -47,7 +50,7 @@ IMPORTS
-- ********************************************************************
ciscoLwappMobilityExtMIB MODULE-IDENTITY
LAST-UPDATED "201705020000Z"
LAST-UPDATED "202008130000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems,
@ -319,6 +322,13 @@ ciscoLwappMobilityExtMIB MODULE-IDENTITY
[2] Draft-obara-capwap-lwapp-00.txt, IETF Light
Weight Access Point Protocol."
REVISION "202008130000Z"
DESCRIPTION
" Added cLGuestWlanAllAnchorsDown
cLGuestWlanOneAnchorOnGuestLanUp notification"
REVISION "201906200000Z"
DESCRIPTION
" Added C9800-specific attributes."
REVISION "201705020000Z"
DESCRIPTION
"Initial version of this MIB module."
@ -580,6 +590,38 @@ cLMobilityExtMCNumberOfReportedAPsInSubDomain OBJECT-TYPE
by this MC and its MAs."
::= { ciscoLwappMobilityExtMCGlobalObjects 18 }
cLMobilityExtMCOwnGroupMulticastAddressv6Type OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the multicast IP address type of its own
mobility group."
::= { ciscoLwappMobilityExtMCGlobalObjects 19 }
cLMobilityExtMCOwnGroupMulticastAddressv6 OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents the multicast IPv6 address of its own
mobility group."
::= { ciscoLwappMobilityExtMCGlobalObjects 20 }
cLMobilityExtMCMulticastModev6 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to enable or disable
IPv6 multicast mode.
A value of 'true' indicates IPv6 multicast mode
is enabled.
A value of 'false' indicates IPv6 multicast mode
is disabled."
DEFVAL { false }
::= { ciscoLwappMobilityExtMCGlobalObjects 21 }
-- *******************************************************************
-- Mobility Manager global parameters (applicable to both MC and MA)
-- *******************************************************************
@ -712,6 +754,24 @@ cLMobilityExtEncryptionStatus OBJECT-TYPE
A value of 'true' indicates encryption is enabled.
A value of 'false' indicates encryption is disabled."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 12 }
cLMobilityExtSecureCipherv2 OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
aes128sha2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies to configure secure ciphers, AES128+SHA
or AES128+SHA2 for mobility tunnel.
disable(1) - Implies that controllers will continue
to use default cipher AES128_SHA for mobility
tunnel.
aes128sha2(2) - Implies that controllers will use
AES128_SHA256 cipher for mobility tunnel."
::= { ciscoLwappMobilityExtMCMAGlobalObjects 13 }
-- *******************************************************************
-- Switch Peer Group Table (applicable to MC only)
-- *******************************************************************
@ -2060,7 +2120,11 @@ CLMobilityExtGroupEntry ::= SEQUENCE {
cLMobilityExtGroupName SnmpAdminString,
cLMobilityExtGroupMulticastAddressType InetAddressType,
cLMobilityExtGroupMulticastAddress InetAddress,
cLMobilityExtGroupRowStatus RowStatus
cLMobilityExtGroupRowStatus RowStatus,
cLMobilityExtGroupMulticastMode TruthValue,
cLMobilityExtGroupMulticastModev6 TruthValue,
cLMobilityExtGroupMulticastAddressv6Type InetAddressType,
cLMobilityExtGroupMulticastAddressv6 InetAddress
}
cLMobilityExtGroupName OBJECT-TYPE
@ -2100,6 +2164,41 @@ cLMobilityExtGroupRowStatus OBJECT-TYPE
in this table."
::= { cLMobilityExtGroupEntry 4 }
cLMobilityExtGroupMulticastMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the IPv4 multicast mode for the
mobility group."
::= { cLMobilityExtGroupEntry 5 }
cLMobilityExtGroupMulticastModev6 OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the IPv6 multicast mode for the
mobility group."
::= { cLMobilityExtGroupEntry 6 }
cLMobilityExtGroupMulticastAddressv6Type OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the multicast IPv6 address type
for the mobility group."
::= { cLMobilityExtGroupEntry 7 }
cLMobilityExtGroupMulticastAddressv6 OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object represents the multicast IPv6 address for the
mobility group."
::= { cLMobilityExtGroupEntry 8 }
-- *******************************************************************
-- Mobility Agent (MA) peer member table
@ -2402,6 +2501,85 @@ cLMobilityExtMCAPCount OBJECT-TYPE
this device: this MC, or its peer MC or its MA."
::= { cLMobilityExtMCAPCountEntry 3 }
cLMobilityAnchorPolicyEntryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLMobilityAnchorPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides information about
one 802.11 LWAPP Mobility Anchor configured with a policy name
on this controller"
::= { ciscoLwappMobilityExtTableObjects 15 }
cLMobilityAnchorWlanPolicyEntry OBJECT-TYPE
SYNTAX CLMobilityAnchorPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table provides information about
one 802.11 LWAPP Mobility Anchor configured with a policy name
on this controller.
Each row represent an Ip anchor associated with a policy.
A row is added when a new anchor is added"
INDEX {
cLWlanWlanPolicyName,
cLMobilityAnchorPolicyMCAddressType,
cLMobilityAnchorPolicyMCAddress
}
::= { cLMobilityAnchorPolicyEntryTable 1 }
CLMobilityAnchorPolicyEntry ::= SEQUENCE {
cLMobilityAnchorPolicyMCAddressType InetAddressType,
cLMobilityAnchorPolicyMCAddress InetAddress,
cLMobilityAnchorPolicyRowStatus RowStatus,
cLMobilityAnchorPolicyMCPriority INTEGER
}
cLMobilityAnchorPolicyMCAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the anchor's IP address type."
::= { cLMobilityAnchorWlanPolicyEntry 1 }
cLMobilityAnchorPolicyMCAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object represents the anchor's IP address"
::= { cLMobilityAnchorWlanPolicyEntry 2 }
cLMobilityAnchorPolicyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMobilityAnchorWlanPolicyEntry 3 }
cLMobilityAnchorPolicyMCPriority OBJECT-TYPE
SYNTAX INTEGER {
local (1),
primary(2),
secondary(3),
tertiary(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies priority of the mobility anchor (for the foreign
controller)
A value of '1' indicates local anchor priority (this is not permitted
to be configured)
A value of '2' indicates primary anchor priority.
A value of '3' indicated secondary anchor priority.
A value of '4' indicated tertiary anchor priority."
::= { cLMobilityAnchorWlanPolicyEntry 4 }
-- *******************************************************************
@ -2756,6 +2934,15 @@ cLMobilityExtNotifyObjectDestinationType OBJECT-TYPE
Oracle."
::= { ciscoLwappMobilityExtNotifObjects 4 }
cLMobilityExtWlanPolicyName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object specifies one instance of a WLAN policy on the
controller"
::= { ciscoLwappMobilityExtNotifObjects 5 }
-- *******************************************************************
-- Mobility Agent (MA) statistics
-- *******************************************************************
@ -2987,6 +3174,33 @@ ciscoLwappMobilityDataPathUp NOTIFICATION-TYPE
"This notification is sent by the agent when
a mobility data path goes up."
::= { ciscoLwappMobilityExtMIBNotifs 4 }
cLGuestWlanAllAnchorsDown NOTIFICATION-TYPE
OBJECTS {
cLWlanProfileName,
cLMobilityExtWlanPolicyName
}
STATUS current
DESCRIPTION
"This notification will be emitted by the SNMP agent
when successive CAPWAP/Mobility ping attempts to all the anchors on
Guest Wlan, denoted by cLWlanProfileName, fail and
all the anchors are conclusively down."
::= { ciscoLwappMobilityExtMIBNotifs 5 }
cLGuestWlanOneAnchorOnGuestLanUp NOTIFICATION-TYPE
OBJECTS {
cLWlanProfileName,
cLMobilityExtWlanPolicyName
}
STATUS current
DESCRIPTION
"This notification will be emitted by the SNMP agent
when successive CAPWAP/Mobility and UDP ping to at least one anchor
on the Guest Wlan, denoted by cLWlanProfileName, is
restored and anchor is conclusively up."
::= { ciscoLwappMobilityExtMIBNotifs 6 }
-- *******************************************************************
-- * Compliance statements
-- *******************************************************************
@ -3039,7 +3253,7 @@ ciscoLwappMobilityExtMIBComplianceRev2 MODULE-COMPLIANCE
::= { ciscoLwappMobilityExtMIBCompliances 3 }
ciscoLwappMobilityExtMIBComplianceRev3 MODULE-COMPLIANCE
STATUS current
STATUS deprecated
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappMobilityExtMIB module."
@ -3054,6 +3268,22 @@ ciscoLwappMobilityExtMIBComplianceRev3 MODULE-COMPLIANCE
}
::= { ciscoLwappMobilityExtMIBCompliances 4 }
ciscoLwappMobilityExtMIBComplianceRev4 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappMobilityExtMIB module."
MODULE -- this module
MANDATORY-GROUPS {
cLMobilityExtConfigGroupRev1,
cLMobilityExtMAStatsConfigGroup,
ciscoLwappMobilityExtNotifyObjectsGroup,
ciscoLwappMobilityExtNotifsGroupRev1,
ciscoLwappMobilityExtMCMAStatsGroup,
cLMobilityExtAnchorConfigGroup
}
::= { ciscoLwappMobilityExtMIBCompliances 5 }
-- *******************************************************************
-- * Units of conformance
-- *******************************************************************
@ -3065,6 +3295,7 @@ cLMobilityExtConfigGroup OBJECT-GROUP
cLMobilityExtMCEnableStatus,
cLMobilityExtMCAdminEnableStatus,
cLMobilityExtMCMulticastMode,
cLMobilityExtMCMulticastModev6,
cLMobilityExtMCKeepAliveCount,
cLMobilityExtMCKeepAliveInterval,
cLMobilityExtMCDscpValue,
@ -3073,6 +3304,8 @@ cLMobilityExtConfigGroup OBJECT-GROUP
cLMobilityExtMCApCountLicensesInUse,
cLMobilityExtMCOwnGroupMulticastAddressType,
cLMobilityExtMCOwnGroupMulticastAddress,
cLMobilityExtMCOwnGroupMulticastAddressv6Type,
cLMobilityExtMCOwnGroupMulticastAddressv6,
cLMobilityExtMCMobilityGroupName,
cLMobilityExtMCMONumberOfClients,
cLMobilityExtMCNumberOfMCs,
@ -3152,6 +3385,10 @@ cLMobilityExtConfigGroup OBJECT-GROUP
cLMobilityExtForeignWlcMapRowStatus,
cLMobilityExtGroupMulticastAddressType,
cLMobilityExtGroupMulticastAddress,
cLMobilityExtGroupMulticastMode,
cLMobilityExtGroupMulticastModev6,
cLMobilityExtGroupMulticastAddressv6Type,
cLMobilityExtGroupMulticastAddressv6,
cLMobilityExtGroupRowStatus,
cLMobilityExtMAPeerPublicAddressType,
cLMobilityExtMAPeerPublicAddress,
@ -3219,7 +3456,7 @@ ciscoLwappMobilityExtNotifsGroup NOTIFICATION-GROUP
ciscoLwappMobilityDataPathDown,
ciscoLwappMobilityDataPathUp
}
STATUS current
STATUS deprecated
DESCRIPTION
"This collection of objects provides the information
about the notifications sent by the agent related
@ -3233,6 +3470,7 @@ cLMobilityExtConfigGroupRev1 OBJECT-GROUP
cLMobilityExtMCEnableStatus,
cLMobilityExtMCAdminEnableStatus,
cLMobilityExtMCMulticastMode,
cLMobilityExtMCMulticastModev6,
cLMobilityExtMCKeepAliveCount,
cLMobilityExtMCKeepAliveInterval,
cLMobilityExtMCDscpValue,
@ -3241,6 +3479,8 @@ cLMobilityExtConfigGroupRev1 OBJECT-GROUP
cLMobilityExtMCApCountLicensesInUse,
cLMobilityExtMCOwnGroupMulticastAddressType,
cLMobilityExtMCOwnGroupMulticastAddress,
cLMobilityExtMCOwnGroupMulticastAddressv6Type,
cLMobilityExtMCOwnGroupMulticastAddressv6,
cLMobilityExtMCMobilityGroupName,
cLMobilityExtMCMONumberOfClients,
cLMobilityExtMCNumberOfMCs,
@ -3254,6 +3494,7 @@ cLMobilityExtConfigGroupRev1 OBJECT-GROUP
cLMobilityExtMgrVlanId,
cLMobilityExtMgrName,
cLMobilityExtMgrInterfaceType,
cLMobilityExtSecureCipherv2,
cLMobilityExtNewArchitectureEnableStatus,
cLMobilityExtNewArchitectureAdminEnableStatus,
cLMobilityExtMCClientAnchorMCPrivateAddressType,
@ -3318,6 +3559,10 @@ cLMobilityExtConfigGroupRev1 OBJECT-GROUP
cLMobilityExtForeignWlcMapRowStatus,
cLMobilityExtGroupMulticastAddressType,
cLMobilityExtGroupMulticastAddress,
cLMobilityExtGroupMulticastMode,
cLMobilityExtGroupMulticastModev6,
cLMobilityExtGroupMulticastAddressv6Type,
cLMobilityExtGroupMulticastAddressv6,
cLMobilityExtGroupRowStatus,
cLMobilityExtMAPeerPublicAddressType,
cLMobilityExtMAPeerPublicAddress,
@ -3400,15 +3645,32 @@ ciscoLwappMobilityExtMCMAStatsGroup OBJECT-GROUP
::= { ciscoLwappMobilityExtMIBGroups 6 }
cLMobilityExtAnchorConfigGroup OBJECT-GROUP
OBJECTS { cLMobilityExtAnchorPriority }
OBJECTS {
cLMobilityExtAnchorPriority,
cLMobilityExtAnchorStatus,
cLMobilityExtAnchorRowStatus
}
STATUS current
DESCRIPTION
"This object specifies the priority configured for
an Anchor WLC mapped on a WLAN."
::= { ciscoLwappMobilityExtMIBGroups 7 }
ciscoLwappMobilityExtNotifsGroupRev1 NOTIFICATION-GROUP
NOTIFICATIONS {
ciscoLwappMobilityControlPathDown,
ciscoLwappMobilityControlPathUp,
ciscoLwappMobilityDataPathDown,
ciscoLwappMobilityDataPathUp,
cLGuestWlanAllAnchorsDown,
cLGuestWlanOneAnchorOnGuestLanUp
}
STATUS current
DESCRIPTION
"This collection of objects provides the information
about the notifications sent by the agent related
to mobility and guest anchor."
::= { ciscoLwappMobilityExtMIBGroups 8 }
END

View file

@ -3,7 +3,7 @@
-- This MIB helps to manage the RF parameters on the controller
-- June 2011, Srinath Candadai
--
-- Copyright (c) 2011, 2016-2018 by Cisco Systems, Inc.
-- Copyright (c) 2011, 2016-2021, 2023 by Cisco Systems, Inc.
-- All rights reserved.
-- *******************************************************************
@ -172,6 +172,46 @@ ciscoLwappRFMIB MODULE-IDENTITY
[3] IEEE 802.11 - The original 1 Mbit/s and 2 Mbit/s,
2.4 GHz RF and IR standard."
REVISION "202308040000Z"
DESCRIPTION
"Added below objects to the cLMultiBSSIDProfileTable
- cLMultiBSSIDProfile11beOfdmaDownLink
- cLMultiBSSIDProfile11beOfdmaUpLink
- cLMultiBSSIDProfile11beMuMIMODownLink
- cLMultiBSSIDProfile11beMuMIMOUpLink
- cLMultiBSSIDProfile11beOfdmaMultiRU"
REVISION "202104160000Z"
DESCRIPTION
"Added below objects to the cLRFProfileTable
- cLRFProfilePSCBias
- cLRFProfile11axSrgObssPdEnable
- cLRFProfile11axSrgObssPdMin
- cLRFProfile11axSrgObssPdMax"
REVISION "202101120000Z"
DESCRIPTION
"Added below objects to the cLRFProfileTable
- cLRFProfile11axBcastProbeResp
- cLRFProfile11axBcastProbeRespInterval
- cLRFProfile11axFilsDiscovery
- cLRFProfileMultiBssidProfile
Added new table cLMultiBSSIDProfileTable
Added conformance group ciscoLwappRFConfigGroup10
Added compliance group ciscoLwappRFMIBComplianceRev7."
REVISION "202009020000Z"
DESCRIPTION
"Added below object to the cLRFProfileTable
- cLRFProfileNdpMode
Added conformance group ciscoLwappRFConfigGroup8.
Added compliance group ciscoLwappRFMIBComplianceRev6."
REVISION "202008070000Z"
DESCRIPTION
"Added conformance group ciscoLwappRFConfigGroup8.
Added compliance group ciscoLwappRFMIBComplianceRev5."
REVISION "202006030000Z"
DESCRIPTION
"Added below objects to the cLRFProfileTable
- cLRFProfile11axObssPdEnable
- cLRFProfile11axNonSrgObssPdMax"
REVISION "201811150000Z"
DESCRIPTION
"Added below object to the cLRFProfileTable
@ -394,7 +434,18 @@ CLRFProfileEntry ::= SEQUENCE {
cLRFProfileAirTimeFairnessOptimization INTEGER,
cLRFProfileBridgeClientAccess TruthValue,
cLRFProfileAirTimeAllocation Unsigned32,
cLRFProfileRxSopThresholdCustom Integer32
cLRFProfileRxSopThresholdCustom Integer32,
cLRFProfile11axObssPdEnable TruthValue,
cLRFProfile11axNonSrgObssPdMax Integer32,
cLRFProfileNdpMode INTEGER,
cLRFProfile11ax6GHzFeature INTEGER,
cLRFProfile11axBcastProbeRespInterval Unsigned32,
cLRFProfileMultiBssidProfile SnmpAdminString,
cLRFProfilePSCBias TruthValue,
cLRFProfile11axSrgObssPdEnable TruthValue,
cLRFProfile11axSrgObssPdMin Integer32,
cLRFProfile11axSrgObssPdMax Integer32,
cLRFProfilePreamblePuncture TruthValue
}
cLRFProfileName OBJECT-TYPE
@ -877,7 +928,8 @@ cLRFProfileDCAChannelWidth OBJECT-TYPE
forty - 40MHz channel width supported by this radio.
eighty - 80MHz channel width supported by this radio.
onesixty - 160MHz channel width supported by this radio.
best - Dynamic channel width(160MHz, 80MHz, 40MHz or 20MHz) supported by this radio."
best - Dynamic channel width(160MHz, 80MHz, 40MHz
or 20MHz) supported by this radio."
::= { cLRFProfileEntry 42 }
cLRFProfileDCAChannelList OBJECT-TYPE
@ -929,7 +981,8 @@ cLRFProfileHSRNeighborTimeoutFactor OBJECT-TYPE
DESCRIPTION
"This object specifies the timeout interval
of neighbors that will be configured for RF profile.
Neighbor timeout factor will be five times the neighbor interval"
Neighbor timeout factor will be five times the
neighbor interval"
::= { cLRFProfileEntry 46 }
cLRFProfileBandSelectClientMidRSSI OBJECT-TYPE
@ -941,8 +994,8 @@ cLRFProfileBandSelectClientMidRSSI OBJECT-TYPE
"This object specifies medium mobile station RSSI threshold.
Mobile station between this value and cldBandSelectClientRssi
will be recorded in suppressed table but will not be denied.
The mobile station having RSSI stronger than this value will be recorded
and denied."
The mobile station having RSSI stronger than this value will
be recorded and denied."
DEFVAL { -80 }
::= { cLRFProfileEntry 47 }
@ -956,9 +1009,12 @@ cLRFProfileClientNetworkPreference OBJECT-TYPE
STATUS current
DESCRIPTION
"This object represents the client network preference.
default(0) - RRM Algorithm has no preference on the clients.
connectivity(1) - RRM Algorithm has a preference on connectiviry of the clients.
throughput(2) - RRM Algorithm has a preference on high thoughput of the clients."
default(0) - RRM Algorithm has no preference on
the clients.
connectivity(1) - RRM Algorithm has a preference on
connectiviry of the clients.
throughput(2) - RRM Algorithm has a preference on
high thoughput of the clients."
DEFVAL { default }
::= { cLRFProfileEntry 48 }
@ -1045,6 +1101,125 @@ cLRFProfileRxSopThresholdCustom OBJECT-TYPE
DEFVAL { -85 }
::= {cLRFProfileEntry 55 }
cLRFProfile11axObssPdEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether 802.11ax OBSS PD spatial reuse is
enabled for the RF profile."
DEFVAL { false }
::= {cLRFProfileEntry 56 }
cLRFProfile11axNonSrgObssPdMax OBJECT-TYPE
SYNTAX Integer32(-82..-62)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the non-SRG OBSS PD max threshold in dBm
for the RF profile."
DEFVAL { -62 }
::= {cLRFProfileEntry 57 }
cLRFProfileNdpMode OBJECT-TYPE
SYNTAX INTEGER {
auto(0),
offChannel(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the neighbor discovery mode of AP for this RF profile
auto - neighbor discovery mode is auto.
offChannel - neighbor discovery mode is off-channel."
DEFVAL { 0 }
::= { cLRFProfileEntry 58 }
cLRFProfile11ax6GHzFeature OBJECT-TYPE
SYNTAX INTEGER {
none(0),
bcast_probe_response(1),
fils_discovery(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether 802.11ax UBPR or FILS discovery
enabled for the RF profile."
DEFVAL { 0 }
::= { cLRFProfileEntry 59 }
cLRFProfile11axBcastProbeRespInterval OBJECT-TYPE
SYNTAX Unsigned32(5..25)
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the 802.11ax Broadcast Probe response
interval in msec."
DEFVAL { 20 }
::= {cLRFProfileEntry 60 }
cLRFProfileMultiBssidProfile OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the Multi-BSSID profile name that is mapped
to the RF profile."
DEFVAL { default-multi-bssid-profile }
::= { cLRFProfileEntry 62 }
cLRFProfilePSCBias OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether preferred scanning channel bias for 6 GHz DCA
is enabled or disabled for the RF profile."
DEFVAL { false }
::= {cLRFProfileEntry 63 }
cLRFProfile11axSrgObssPdEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether 802.11ax SRG OBSS PD spatial reuse is
enabled for the RF profile."
DEFVAL { false }
::= {cLRFProfileEntry 64 }
cLRFProfile11axSrgObssPdMin OBJECT-TYPE
SYNTAX Integer32(-82..-62)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the SRG OBSS PD min threshold in dBm
for the RF profile."
DEFVAL { -82 }
::= {cLRFProfileEntry 65 }
cLRFProfile11axSrgObssPdMax OBJECT-TYPE
SYNTAX Integer32(-82..-62)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the SRG OBSS PD max threshold in dBm
for the RF profile."
DEFVAL { -62 }
::= {cLRFProfileEntry 66 }
cLRFProfilePreamblePuncture OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether Preamble puncturing is
enabled for the RF profile."
DEFVAL { false }
::= {cLRFProfileEntry 67 }
-- *******************************************************************
-- * Out of Box AP config
-- *******************************************************************
@ -1146,8 +1321,8 @@ cLRFProfileChannelListTable OBJECT-TYPE
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object specifies the list of channels that is available for DCA
of a RF profile."
"This object specifies the list of channels that is available
for DCA of a RF profile."
::= { ciscoLwappRFConfig 4 }
cLRFProfileChannelListEntry OBJECT-TYPE
@ -1366,6 +1541,217 @@ cLRFProfileAddChannelRowStatus OBJECT-TYPE
at any time."
::= { cLRFProfileAddChannelEntry 4 }
-- ********************************************************************
-- * Multi BSSID Profile Table
-- ********************************************************************
cLMultiBSSIDProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLRFProfileMultiBSSIDProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the configuration related to
each Multi BSSID profile."
::= { ciscoLwappRFConfig 7 }
cLMultiBSSIDProfileEntry OBJECT-TYPE
SYNTAX CLRFProfileMultiBSSIDProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table stores the
configurations related to a Multi BSSID Profile.
Entries can be added/deleted by explicit management
action from NMS/EMS or through user console."
INDEX { cLMultiBSSIDProfileName }
::= { cLMultiBSSIDProfileTable 1 }
CLRFProfileMultiBSSIDProfileEntry ::= SEQUENCE {
cLMultiBSSIDProfileName SnmpAdminString,
cLMultiBSSIDProfileDescr SnmpAdminString,
cLMultiBSSIDProfile11axOfdmaDownLink TruthValue,
cLMultiBSSIDProfile11axOfdmaUpLink TruthValue,
cLMultiBSSIDProfile11axMuMIMODownLink TruthValue,
cLMultiBSSIDProfile11axMuMIMOUpLink TruthValue,
cLMultiBSSIDProfile11axTwt TruthValue,
cLMultiBSSIDProfile11axTwtBroadcast TruthValue,
cLMultiBSSIDProfileRowStatus RowStatus,
cLMultiBSSIDProfile11beOfdmaDownLink TruthValue,
cLMultiBSSIDProfile11beOfdmaUpLink TruthValue,
cLMultiBSSIDProfile11beMuMIMODownLink TruthValue,
cLMultiBSSIDProfile11beMuMIMOUpLink TruthValue,
cLMultiBSSIDProfile11beOfdmaMultiRU TruthValue
}
cLMultiBSSIDProfileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object uniquely identifies a Multi BSSID Profile."
::= { cLMultiBSSIDProfileEntry 1 }
cLMultiBSSIDProfileDescr OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies a human-readable description of the
Multi BSSID profile."
::= { cLMultiBSSIDProfileEntry 2 }
cLMultiBSSIDProfile11axOfdmaDownLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11ax OFDMA Downlink is
enabled.
A value of 'true' indicates 802.11ax OFDMA Downlink
enabled.
A value of 'false' indicates 802.11ax OFDMA Downlink
disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 3 }
cLMultiBSSIDProfile11axOfdmaUpLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11ax OFDMA Uplink is
enabled.
A value of 'true' indicates 802.11ax OFDMA Uplink
enabled.
A value of 'false' indicates 802.11ax OFDMA Uplink
disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 4 }
cLMultiBSSIDProfile11axMuMIMODownLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11ax MU-MIMO Downlink is
enabled.
A value of 'true' indicates 802.11ax MU-MIMO Downlink
enabled.
A value of 'false' indicates 802.11ax MU-MIMO Downlink
disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 5 }
cLMultiBSSIDProfile11axMuMIMOUpLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11ax MU-MIMO Uplink is
enabled.
A value of 'true' indicates 802.11ax MU-MIMO Uplink
enabled.
A value of 'false' indicates 802.11ax MU-MIMO Uplink
disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 6 }
cLMultiBSSIDProfile11axTwt OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11ax Target Wakeup Time(TWT) is
enabled.
A value of 'true' indicates that 802.11ax TWT is enabled.
enabled.
A value of 'false' indicates that 802.11ax TWT is disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 7 }
cLMultiBSSIDProfile11axTwtBroadcast OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11ax Target Wakeup Time(TWT) Broadcast is
enabled.
A value of 'true' indicates 802.11ax TWT Broadcast
enabled.
A value of 'false' indicates 802.11ax TWT Broadcast
disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 8 }
cLMultiBSSIDProfileRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the status column for this row and used
to create and delete specific instances of rows
in this table."
::= { cLMultiBSSIDProfileEntry 9 }
cLMultiBSSIDProfile11beOfdmaDownLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11be OFDMA Downlink is enabled.
A value of 'true' indicates 802.11be OFDMA Downlink enabled.
A value of 'false' indicates 802.11be OFDMA Downlink disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 10 }
cLMultiBSSIDProfile11beOfdmaUpLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11be OFDMA Uplink is enabled.
A value of 'true' indicates 802.11be OFDMA Uplink enabled.
A value of 'false' indicates 802.11be OFDMA Uplink disabled."
DEFVAL { true }
::= { cLMultiBSSIDProfileEntry 11 }
cLMultiBSSIDProfile11beMuMIMODownLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11be MU-MIMO Downlink is enabled.
A value of 'true' indicates 802.11be MU-MIMO Downlink enabled.
A value of 'false' indicates 802.11be MU-MIMO Downlink disabled."
DEFVAL { false }
::= { cLMultiBSSIDProfileEntry 12 }
cLMultiBSSIDProfile11beMuMIMOUpLink OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11be MU-MIMO Uplink is enabled.
A value of 'true' indicates 802.11be MU-MIMO Uplink enabled.
A value of 'false' indicates 802.11be MU-MIMO Uplink disabled."
DEFVAL { false }
::= { cLMultiBSSIDProfileEntry 13 }
cLMultiBSSIDProfile11beOfdmaMultiRU OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies if 802.11be OFDMA Multiple
Resource Unit is enabled.
A value of 'true' indicates 802.11be OFDMA Multi-RU is enabled.
A value of 'false' indicates 802.11be OFDMA Multi-RU is disabled."
DEFVAL { false }
::= { cLMultiBSSIDProfileEntry 14 }
-- cLMultiBSSIDProfileRowStatus OBJECT-TYPE
-- ********************************************************************
-- * Compliance statements
-- ********************************************************************
@ -1505,6 +1891,108 @@ ciscoLwappRFMIBComplianceRev4 MODULE-COMPLIANCE
'active', 'createAndGo' and 'destroy'."
::= { ciscoLwappRFMIBCompliances 5 }
ciscoLwappRFMIBComplianceRev5 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappRFMIB module."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappRFConfigGroupVer1,
ciscoLwappRFConfigGroup1,
ciscoLwappRFConfigGroup3,
ciscoLwappRFConfigGroup4,
ciscoLwappRFGroupTrapThresholdConfig,
ciscoLwappRFGroupChannelConfig,
ciscoLwappRFGlobalConfigGroup,
ciscoLwappRFConfigGroupExtension1,
ciscoLwappRFConfigGroup5,
ciscoLwappRFConfigGroup6,
ciscoLwappRFConfigGroup7,
ciscoLwappRFConfigGroup8
}
OBJECT cLRFProfileRowStatus
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
DESCRIPTION
"An implementation is only required to support
three of the six enumerated values of the
RowStatus textual convention, specifically,
'active', 'createAndGo' and 'destroy'."
::= { ciscoLwappRFMIBCompliances 6 }
ciscoLwappRFMIBComplianceRev6 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappRFMIB module."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappRFConfigGroupVer1,
ciscoLwappRFConfigGroup1,
ciscoLwappRFConfigGroup3,
ciscoLwappRFConfigGroup4,
ciscoLwappRFGroupTrapThresholdConfig,
ciscoLwappRFGroupChannelConfig,
ciscoLwappRFGlobalConfigGroup,
ciscoLwappRFConfigGroupExtension1,
ciscoLwappRFConfigGroup5,
ciscoLwappRFConfigGroup6,
ciscoLwappRFConfigGroup7,
ciscoLwappRFConfigGroup8,
ciscoLwappRFConfigGroup9
}
OBJECT cLRFProfileRowStatus
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
DESCRIPTION
"An implementation is only required to support
three of the six enumerated values of the
RowStatus textual convention, specifically,
'active', 'createAndGo' and 'destroy'."
::= { ciscoLwappRFMIBCompliances 7 }
ciscoLwappRFMIBComplianceRev7 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the SNMP entities that
implement the ciscoLwappRFMIB module."
MODULE -- this module
MANDATORY-GROUPS {
ciscoLwappRFConfigGroupVer1,
ciscoLwappRFConfigGroup1,
ciscoLwappRFConfigGroup3,
ciscoLwappRFConfigGroup4,
ciscoLwappRFGroupTrapThresholdConfig,
ciscoLwappRFGroupChannelConfig,
ciscoLwappRFGlobalConfigGroup,
ciscoLwappRFConfigGroupExtension1,
ciscoLwappRFConfigGroup5,
ciscoLwappRFConfigGroup6,
ciscoLwappRFConfigGroup7,
ciscoLwappRFConfigGroup8,
ciscoLwappRFConfigGroup9,
ciscoLwappRFConfigGroup10
}
OBJECT cLRFProfileRowStatus
SYNTAX INTEGER {
active(1),
createAndGo(4),
destroy(6)
}
DESCRIPTION
"An implementation is only required to support
three of the six enumerated values of the
RowStatus textual convention, specifically,
'active', 'createAndGo' and 'destroy'."
::= { ciscoLwappRFMIBCompliances 8 }
-- ********************************************************************
-- * Units of conformance
-- ********************************************************************
@ -1658,7 +2146,8 @@ ciscoLwappRFGroupDCAChannelConfig OBJECT-GROUP
OBJECTS { cLRFProfileDCAChannelList }
STATUS deprecated
DESCRIPTION
"This object specifies the add and remove channels for RF Profiles."
"This object specifies the add and remove channels
for RF Profiles."
::= { ciscoLwappRFMIBGroups 8 }
ciscoLwappRFGroupChannelConfig OBJECT-GROUP
@ -1668,7 +2157,8 @@ ciscoLwappRFGroupChannelConfig OBJECT-GROUP
}
STATUS current
DESCRIPTION
"This object specifies the add and remove channels for RF Profiles."
"This object specifies the add and remove channels for
RF Profiles."
::= { ciscoLwappRFMIBGroups 9 }
ciscoLwappRFConfigGroupExtension1 OBJECT-GROUP
@ -1717,5 +2207,58 @@ ciscoLwappRFConfigGroup7 OBJECT-GROUP
and add channel list information from default DCA channel
list for a RF profile"
::= { ciscoLwappRFMIBGroups 13 }
ciscoLwappRFConfigGroup8 OBJECT-GROUP
OBJECTS {
cLRFProfile11axObssPdEnable,
cLRFProfile11axNonSrgObssPdMax,
cLRFProfile11axSrgObssPdEnable,
cLRFProfile11axSrgObssPdMin,
cLRFProfile11axSrgObssPdMax,
cLRFProfilePreamblePuncture
}
STATUS current
DESCRIPTION
"This collection of objects specifies the 802.11ax OBSS PD
spatial reuse configurations for RF Profiles."
::= { ciscoLwappRFMIBGroups 14 }
ciscoLwappRFConfigGroup9 OBJECT-GROUP
OBJECTS {
cLRFProfileNdpMode
}
STATUS current
DESCRIPTION
"This collection of objects specifies the neighbor discovery
mode for a RF profile "
::= { ciscoLwappRFMIBGroups 15 }
ciscoLwappRFConfigGroup10 OBJECT-GROUP
OBJECTS {
cLRFProfile11ax6GHzFeature,
cLRFProfile11axBcastProbeRespInterval,
cLRFProfileMultiBssidProfile,
cLRFProfilePSCBias,
cLMultiBSSIDProfileName,
cLMultiBSSIDProfileDescr,
cLMultiBSSIDProfile11axOfdmaDownLink,
cLMultiBSSIDProfile11axOfdmaUpLink,
cLMultiBSSIDProfile11axMuMIMODownLink,
cLMultiBSSIDProfile11axMuMIMOUpLink,
cLMultiBSSIDProfile11axTwt,
cLMultiBSSIDProfile11axTwtBroadcast,
cLMultiBSSIDProfileRowStatus,
cLMultiBSSIDProfile11beOfdmaDownLink,
cLMultiBSSIDProfile11beOfdmaUpLink,
cLMultiBSSIDProfile11beMuMIMODownLink,
cLMultiBSSIDProfile11beMuMIMOUpLink,
cLMultiBSSIDProfile11beOfdmaMultiRU
}
STATUS current
DESCRIPTION
"This collection of objects specifies the 802.11ax Broadcast
Probe response, FILS Discovery and PSC bias configurations for RF Profiles."
::= { ciscoLwappRFMIBGroups 16 }
END

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,16 @@
-- $Id$
-- $Source$
-- *****************************************************************
-- CISCO-PROCESS-MIB.my: MIB for CPU and process statistics
--
-- August 1998, Ramanathan R. Kavasseri
--
-- Copyright (c) 1998, 2001, 2003, 2006-2011 by cisco Systems Inc.
-- Copyright (c) 1998, 2001, 2003, 2006-2011, 2020 by cisco Systems Inc.
-- All rights reserved.
-- *****************************************************************
-- $Log$
-- *****************************************************************
-- $Endlog$
--
-- This mib was extracted from RFC xxx
@ -43,7 +48,7 @@ IMPORTS
ciscoProcessMIB MODULE-IDENTITY
LAST-UPDATED "201106230000Z"
LAST-UPDATED "202004210000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
@ -66,6 +71,11 @@ ciscoProcessMIB MODULE-IDENTITY
Thread is a sequence of instructions to be executed
within a program. Thread which adhere to POSIX standard
is referred as a POSIX thread."
REVISION "202004210000Z"
DESCRIPTION
"Added new attribute in cpmProcessTable.
Added new notification for a process in cpmProcessTable
upon PM state change."
REVISION "201106230000Z"
DESCRIPTION
"Added new table cpmCoreTable as well as a new optoinal
@ -712,6 +722,7 @@ cpmProcessEntry OBJECT-TYPE
CpmProcessEntry ::= SEQUENCE {
cpmProcessPID Unsigned32,
cpmProcessName DisplayString,
cpmProcessState INTEGER,
cpmProcessuSecs Unsigned32,
cpmProcessTimeCreated TimeStamp,
cpmProcessAverageUSecs Unsigned32
@ -739,6 +750,37 @@ cpmProcessName OBJECT-TYPE
character to imply this is a truncated process name."
::= { cpmProcessEntry 2 }
cpmProcessState OBJECT-TYPE
SYNTAX INTEGER {
down(0),
running(1),
started(2),
waiting(3),
disabled(4),
userdisabled(5),
locked(6),
other(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the current state of a process.
Running state means that the process is actively
consuming CPU. All the other states are just waiting
states. The valid states are:
other - Any other state apart from the
ones listed.
down - The process is not operational.
running - Actively running on a core.
started - The process is just forked.
waiting - The ProcessMgr config for this process specifies a delay before the
process moves to running.
disabled - The process is not enabled in the ProcessMgr configuration.
userdisabled - The process is put to disabled state by admin.
locked - Implies that if the process exits, it will not be restarted until
the lock is released."
::= { cpmProcessEntry 3 }
cpmProcessuSecs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "microseconds"
@ -2073,6 +2115,23 @@ cpmCPUFallingThreshold NOTIFICATION-TYPE
interval (cpmCPUFallingThresholdPeriod)
and such a notification is requested."
::= { ciscoProcessMIBNotifs 2 }
cpmProcessStateTrap NOTIFICATION-TYPE
OBJECTS {
cpmProcessPID,
cpmProcessName,
cpmProcessState
}
STATUS current
DESCRIPTION
"A cpmProcessStateTrap is sent when a critical
process of interest has seen a state change for whatever reason
and such a notification is requested.
This trap is not applicable to all processes running on the system,
but for the critical ones pre-determined by the system software.
A PID=0 in this trap implies that a PID wasn't available when
this notification was generated."
::= { ciscoProcessMIBNotifs 3 }
-- conformance information
ciscoProcessMIBConformance OBJECT IDENTIFIER
@ -2913,3 +2972,5 @@ cpmCoreGroup OBJECT-GROUP
::= { cpmGroups 25 }
END

View file

@ -20,7 +20,7 @@ IMPORTS
FROM CISCO-SMI;
ciscoProductsMIB MODULE-IDENTITY
LAST-UPDATED "201604290000Z"
LAST-UPDATED "202410070000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
@ -2720,7 +2720,6 @@ ciscoC9300X12Y OBJECT IDENTIFIER ::= { ciscoProducts 3037
ciscoC9300X24Y OBJECT IDENTIFIER ::= { ciscoProducts 3038 } -- Catalyst 9300X Pacman 24 ports Catalyst 9300X switch
ciscoC9300X48HX OBJECT IDENTIFIER ::= { ciscoProducts 3039 } -- Catalyst 9300X 48 ports mGig with 90W POE Catalyst 9300X switch
ciscoC9300X48TX OBJECT IDENTIFIER ::= { ciscoProducts 3040 } -- Catalyst 9300X 48 ports mGig 9300X switch
ciscoFpr4245SM79 OBJECT IDENTIFIER ::= { ciscoProducts 3041 } -- Cisco Secure Firewall 4245 Threat Defense Module 79
ciscoISR1100X4G OBJECT IDENTIFIER ::= { ciscoProducts 3045 } -- Cisco ISR1100X-4G ( 4xGE, Flexible Core, 8G FLASH, 8G DRAM)
ciscoISR1100X6G OBJECT IDENTIFIER ::= { ciscoProducts 3046 } -- Cisco ISR1100X-6G ( 4xGE, 2xSFP, Flexible Core, 8G FLASH, 8G DRAM)
ciscoESS930010XE OBJECT IDENTIFIER ::= { ciscoProducts 3047 } -- Catalyst ESS9300 Embedded Series switch - 10p 10G, NE

View file

@ -4,7 +4,7 @@
-- *
-- * May 2003, S Ramakrishnan
-- *
-- * Copyright (c) 2003, 2008 by cisco Systems, Inc.
-- * Copyright (c) 2003, 2008, 2020 by cisco Systems Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
@ -22,14 +22,14 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Unsigned32,
zeroDotZero
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
TimeStamp,
TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
TimeStamp,
TruthValue
FROM SNMPv2-TC
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
@ -38,12 +38,12 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
ciscoMgmt
FROM CISCO-SMI;
ciscoRemoteAccessMonitorMIB MODULE-IDENTITY
LAST-UPDATED "200402030000Z"
LAST-UPDATED "202010040000Z"
ORGANIZATION "Cisco Systems"
CONTACT-INFO
"
Cisco Systems
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
@ -52,10 +52,8 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Tel: +1 800 553-NETS
E-mail: cs-snmp@cisco.com"
DESCRIPTION
"
Acronyms and Definitions
"Acronyms and Definitions
The following acronyms and terms are used in this
document:
@ -76,7 +74,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Session: A Remote Access Session.
SVC: SSL VPN Client
Webvpn: VPN connection established using web browser.
Overview of the MIB
@ -123,8 +120,10 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
g) Notifications
This section defines notifications to signal
significant events pertaining to the Remote Access
Service.
"
Service."
REVISION "202010040000Z"
DESCRIPTION
"Added crasNumPeakSessions object"
REVISION "200808280000Z"
DESCRIPTION
"Added crasEmailNumSessions
@ -144,16 +143,17 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasSVCPeakConcurrentSessions
crasWebvpnNumSessions
crasWebvpnCumulateSessions
crasWebvpnPeakConcurrentSessions objects
"
crasWebvpnPeakConcurrentSessions objects"
::= { ciscoMgmt 392 }
-- Tentative anchor under ciscoMgmt
-- Tentative anchor under ciscoMgmt
--
-- +++++++++++++++++++++++++++++++++++++++++++++++++++
-- Local Textual Conventions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++
RasProtocol ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
@ -162,8 +162,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
The value 'other' has been listed to allow for the
MIB to be supported on proprietary protocols not
listed here.
"
listed here."
SYNTAX INTEGER {
other(1),
ipsec(2),
@ -181,8 +180,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
The value 'other' has been listed to allow for the
MIB to support proprietary authentication methods
not listed here.
"
not listed here."
SYNTAX INTEGER {
none(1),
other(2),
@ -201,8 +199,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The mechanism used to authorize the user.
The value 'other' has been listed to allow for the
MIB to support proprietary authorization mechanisms
not listed here.
"
not listed here."
SYNTAX INTEGER {
none(1),
other(2),
@ -217,8 +214,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The encryption algorithm used to secure the remote
access session.
"
access session."
SYNTAX INTEGER {
none(1),
des(2),
@ -239,8 +235,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
The value 'other' has been listed to allow for the
MIB to support packet validation algorithms not
listed here.
"
listed here."
SYNTAX INTEGER {
none(1),
other(2),
@ -255,8 +250,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
session.
The value 'other' has been listed to allow for the
MIB to support compression not listed here.
"
MIB to support compression not listed here."
SYNTAX INTEGER {
none(1),
other(2),
@ -287,8 +281,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Management entity may not write values initializing(1)
or established(2) onto objects of this type. Doing so
would cause the managed entity to return an error
condition.
"
condition."
SYNTAX INTEGER {
initializing(1),
established(2),
@ -307,7 +300,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The type used to index failure records in the
failure archive."
SYNTAX Unsigned32 (1..4294967295)
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Remote Access MIB Object Groups
--
@ -322,6 +314,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
-- 7a) Controls
-- 7b) Notification definitions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoRasMonitorMIBNotifs OBJECT IDENTIFIER
::= { ciscoRemoteAccessMonitorMIB 0 }
@ -333,22 +326,30 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasCapacity OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 1 }
crasResourceUsage OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 2 }
crasActivity OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 3 }
crasFailures OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 4 }
crasSecurity OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 5 }
crasThresholds OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 6 }
crasNotifCntl OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBObjects 7 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access capacity group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasMaxSessionsSupportable OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Sessions"
@ -415,6 +416,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access resource usage group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasGlobalBwUsage OBJECT-TYPE
SYNTAX Gauge32
UNITS "MBytes/second"
@ -428,6 +430,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access activity usage group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasNumSessions OBJECT-TYPE
SYNTAX Gauge32
UNITS "Sessions"
@ -441,9 +444,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
access connectivity to a user. A session is said to be
'active' if it is ready to carry application traffic
between the user and the managed entity. A session which
is not active is defined to be 'dormant'.
"
is not active is defined to be 'dormant'."
::= { crasActivity 1 }
crasNumPrevSessions OBJECT-TYPE
@ -464,8 +465,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of users who have active sessions.
"
"The number of users who have active sessions."
::= { crasActivity 3 }
crasNumGroups OBJECT-TYPE
@ -509,8 +509,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The total number of octets received by all currently
and previously active remote access sessions.
This value is accumulated BEFORE determining whether
or not the packet should be decompressed.
"
or not the packet should be decompressed."
::= { crasActivity 7 }
crasGlobalInDecompOctets OBJECT-TYPE
@ -523,8 +522,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
by all current and previous remote access sessions.
This value is accumulated AFTER the packet is
decompressed. If compression is not being used,
this value will match the value of crasGlobalInOctets.
"
this value will match the value of crasGlobalInOctets."
::= { crasActivity 8 }
crasGlobalOutOctets OBJECT-TYPE
@ -538,8 +536,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
sessions.
This value is accumulated AFTER determining
whether or not the packet should be compressed.
"
whether or not the packet should be compressed."
::= { crasActivity 9 }
crasGlobalOutUncompOctets OBJECT-TYPE
@ -552,8 +549,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
by all current and previous remote access sessions.
This value is accumulated BEFORE the packet is
compressed. If compression is not being used, this
value will match the value of crasGlobalOutOctets.
"
value will match the value of crasGlobalOutOctets."
::= { crasActivity 10 }
crasGlobalInDropPkts OBJECT-TYPE
@ -578,11 +574,10 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
currently and previously active remote access
sessions."
::= { crasActivity 12 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access session table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CrasSessionEntry
MAX-ACCESS not-accessible
@ -601,8 +596,10 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
DESCRIPTION
"Each entry contains the attributes, statistics and
status of an active session."
INDEX { crasUsername,
crasSessionIndex}
INDEX {
crasUsername,
crasSessionIndex
}
::= { crasSessionTable 1 }
CrasSessionEntry ::= SEQUENCE {
@ -626,7 +623,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasClientVersionString SnmpAdminString,
crasClientOSVendorString SnmpAdminString,
crasClientOSVersionString SnmpAdminString,
--
crasPrimWINSServerAddrType InetAddressType,
crasPrimWINSServer InetAddress,
crasSecWINSServerAddrType InetAddressType,
@ -637,7 +633,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasSecDNSServer InetAddress,
crasDHCPServerAddrType InetAddressType,
crasDHCPServer InetAddress,
--
crasSessionInPkts Counter64,
crasSessionOutPkts Counter64,
crasSessionInDropPkts Counter64,
@ -645,7 +640,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasSessionInOctets Counter64,
crasSessionOutOctets Counter64,
crasSessionState SessionStatus
--
}
crasUsername OBJECT-TYPE
@ -677,11 +671,9 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
The value of crasSessionIndex must increase monotonically
till it wraps. An implementation may choose to wrap this
index before the value of 2147483647.
"
index before the value of 2147483647."
::= { crasSessionEntry 3 }
crasAuthenMethod OBJECT-TYPE
SYNTAX UserAuthenMethod
MAX-ACCESS read-only
@ -714,8 +706,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in 'crasLocalAddress'.
"
"The type of the address returned in 'crasLocalAddress'."
::= { crasSessionEntry 7 }
crasLocalAddress OBJECT-TYPE
@ -732,8 +723,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the address returned in 'crasISPAddress'.
"
"The type of the address returned in 'crasISPAddress'."
::= { crasSessionEntry 9 }
crasISPAddress OBJECT-TYPE
@ -771,8 +761,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
If no MIB definitions specific to the underlying
protocol are available, the value should be set to the
OBJECT IDENTIFIER { 0 0 }.
"
OBJECT IDENTIFIER { 0 0 }."
DEFVAL { zeroDotZero }
::= { crasSessionEntry 12 }
@ -860,8 +849,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasPrimWINSServer'.
"
'crasPrimWINSServer'."
::= { crasSessionEntry 21 }
crasPrimWINSServer OBJECT-TYPE
@ -879,8 +867,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasSecWINSServer'.
"
'crasSecWINSServer'."
::= { crasSessionEntry 23 }
crasSecWINSServer OBJECT-TYPE
@ -898,8 +885,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasPrimDNSServer'.
"
'crasPrimDNSServer'."
::= { crasSessionEntry 25 }
crasPrimDNSServer OBJECT-TYPE
@ -917,8 +903,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasSecDNSServer'.
"
'crasSecDNSServer'."
::= { crasSessionEntry 27 }
crasSecDNSServer OBJECT-TYPE
@ -936,8 +921,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasDHCPServer'.
"
'crasDHCPServer'."
::= { crasSessionEntry 29 }
crasDHCPServer OBJECT-TYPE
@ -1000,8 +984,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Access Session.
This value is accumulated BEFORE determining whether
or not the packet should be decompressed.
"
or not the packet should be decompressed."
::= { crasSessionEntry 35 }
crasSessionOutOctets OBJECT-TYPE
@ -1014,8 +997,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Access Session.
This value is accumulated AFTER determining whether
or not the packet should be compressed.
"
or not the packet should be compressed."
::= { crasSessionEntry 36 }
crasSessionState OBJECT-TYPE
@ -1028,13 +1010,14 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
The management entity may use this object to terminate
an established session by setting value of the object
to 'terminating'.
"
to 'terminating'."
::= { crasSessionEntry 37 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access session table organized by user group
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasActGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF CrasActGroupEntry
MAX-ACCESS not-accessible
@ -1141,9 +1124,12 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The total number of octets transmitted by this session."
::= { crasActGroupEntry 8 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access session activity global statistics.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasEmailNumSessions OBJECT-TYPE
SYNTAX Gauge32
UNITS "Sessions"
@ -1153,7 +1139,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of currently active Email proxy sessions."
::= { crasActivity 23 }
crasEmailCumulateSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
@ -1181,7 +1166,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of currently active IPSec sessions."
::= { crasActivity 26 }
crasIPSecCumulateSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
@ -1209,7 +1193,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of currently active LAN to LAN sessions."
::= { crasActivity 29 }
crasL2LCumulateSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
@ -1237,7 +1220,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of currently active Load Balancing sessions."
::= { crasActivity 32 }
crasLBCumulateSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
@ -1265,7 +1247,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of currently active SVC sessions."
::= { crasActivity 35 }
crasSVCCumulateSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
@ -1293,7 +1274,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of currently active Webvpn sessions."
::= { crasActivity 38 }
crasWebvpnCumulateSessions OBJECT-TYPE
SYNTAX Counter32
UNITS "Sessions"
@ -1312,6 +1292,14 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of peak concurrent Webvpn sessions since system up."
::= { crasActivity 40 }
crasNumPeakSessions OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Sessions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of peak RA sessions since system up."
::= { crasActivity 41 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Remote Access Failures Group
--
@ -1320,7 +1308,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
-- 2) Remote Access session failures
-- 3) Remote Access Group failures
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The global failures group
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
@ -1328,6 +1316,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasFailuresGlobals OBJECT IDENTIFIER
::= { crasFailures 1 }
crasNumTotalFailures OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
@ -1347,8 +1336,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
the last time the notification
'ciscoRasTooManyFailedAuths' was issued, which were
declined due to authentication or authorization
failure.
"
failure."
::= { crasFailuresGlobals 2 }
crasNumSetupFailInsufResources OBJECT-TYPE
@ -1370,14 +1358,14 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The number of sessions which were successfully
setup but were since terminated abnormally."
::= { crasFailuresGlobals 4 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Failure Global Control Objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasFailGlobalCntl OBJECT IDENTIFIER
::= { crasFailures 2 }
crasFailTableSize OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
@ -1395,12 +1383,11 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
policy and available resources. If an SNMP SET request
specifies a value outside this window for this element,
a BAD VALUE may be returned."
::= { crasFailGlobalCntl 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Remote Access Service failure history
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasSessFailures OBJECT IDENTIFIER
::= { crasFailures 3 }
@ -1410,15 +1397,13 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table records the last 'N' session failures,
"This table records the last 'N' session failures,
where 'N' is the value of the MIB element
'crasFailTableSize' defined earlier.
A failure could be a failure to establish a session
('setup' failure) or a failure of a session after it
was established ('operational' failure).
"
was established ('operational' failure)."
::= { crasSessFailures 1 }
crasSessFailEntry OBJECT-TYPE
@ -1486,8 +1471,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"The type of the failure:
1 = failure occurred during session setup
2 = failed occurred after the session was setup
successfully.
"
successfully."
::= { crasSessFailEntry 4 }
crasSessFailReason OBJECT-TYPE
@ -1547,8 +1531,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasSessFailISPAddr'.
"
'crasSessFailISPAddr'."
::= { crasSessFailEntry 8 }
crasSessFailISPAddr OBJECT-TYPE
@ -1565,8 +1548,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"The type of the address returned in
'crasSessFailLocalAddr'.
"
'crasSessFailLocalAddr'."
::= { crasSessFailEntry 10 }
crasSessFailLocalAddr OBJECT-TYPE
@ -1582,6 +1564,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
::= { crasSessFailEntry 11 }
crasFailLastFailIndex OBJECT-TYPE
SYNTAX FailureRecordIndex
MAX-ACCESS read-only
@ -1593,10 +1576,8 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
The value of this object is undefined and should
not be processed by the management entity if the
value of the object 'crasFailTableSize' is 0.
"
value of the object 'crasFailTableSize' is 0."
::= { crasSessFailures 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Remote Access session failure history, catalogued by
-- user group
@ -1605,6 +1586,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasGroupFailures OBJECT IDENTIFIER
::= { crasFailures 4 }
crasGrpFailTable OBJECT-TYPE
SYNTAX SEQUENCE OF CrasGrpFailEntry
MAX-ACCESS not-accessible
@ -1617,8 +1599,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
When 'N' entries have been created, the failure
information about a new user group must be created by
deleting the oldest entry in this table.
"
deleting the oldest entry in this table."
::= { crasGroupFailures 1 }
crasGrpFailEntry OBJECT-TYPE
@ -1711,6 +1692,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasSecurityGlobals OBJECT IDENTIFIER
::= { crasSecurity 1 }
crasNumDisabledAccounts OBJECT-TYPE
SYNTAX Counter64
UNITS "Users"
@ -1726,6 +1708,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
--
-- This group consists of threshold values for RAS parameters
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasThrMaxSessions OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Sessions"
@ -1785,6 +1768,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
-- This group of objects controls the sending of
-- Remote Access MIB TRAPs.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
crasCntlTooManySessions OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
@ -1821,6 +1805,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Cisco Remote Access Notifications - TRAPs
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoRasTooManySessions NOTIFICATION-TYPE
OBJECTS {
crasNumSessions,
@ -1873,25 +1858,26 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
notiifcations are suppressed till the value returns
below the specified threshold."
::= { ciscoRasMonitorMIBNotifs 3 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance Information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoRasMonitorMIBCompliances OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBConform 1 }
ciscoRasMonitorMIBGroups OBJECT IDENTIFIER
::= { ciscoRasMonitorMIBConform 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Compliance Statements
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoRasMonitorMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for SNMP entities
the Cisco Remote Access Monitoring MIB."
MODULE -- this module
MANDATORY-GROUPS {
ciscoRasCapacityGroup,
@ -1935,7 +1921,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
DESCRIPTION
"Write access is not required."
OBJECT crasCntlTooManySessions
MIN-ACCESS read-only
DESCRIPTION
@ -1950,7 +1935,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { ciscoRasMonitorMIBCompliances 1 }
ciscoRasMonitorMIBComplianceRev1 MODULE-COMPLIANCE
@ -1958,7 +1942,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
DESCRIPTION
"The compliance statement for SNMP entities
the Cisco Remote Access Monitoring MIB."
MODULE -- this module
MANDATORY-GROUPS {
ciscoRasCapacityGroup,
@ -2003,7 +1986,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
DESCRIPTION
"Write access is not required."
OBJECT crasCntlTooManySessions
MIN-ACCESS read-only
DESCRIPTION
@ -2018,15 +2000,14 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { ciscoRasMonitorMIBCompliances 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Units of Conformance
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoRasCapacityGroup OBJECT-GROUP
OBJECTS {
-- The RAS capacity group
crasMaxSessionsSupportable,
crasMaxUsersSupportable,
crasMaxGroupsSupportable,
@ -2040,9 +2021,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
::= { ciscoRasMonitorMIBGroups 1 }
ciscoRasResourceUsageGroup OBJECT-GROUP
OBJECTS {
crasGlobalBwUsage
}
OBJECTS { crasGlobalBwUsage }
STATUS current
DESCRIPTION
"This group consists of the MIB objects pertaining
@ -2081,7 +2060,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasClientVersionString,
crasClientOSVendorString,
crasClientOSVersionString,
--
crasPrimWINSServerAddrType,
crasPrimWINSServer,
crasSecWINSServerAddrType,
@ -2092,7 +2070,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasSecDNSServer,
crasDHCPServerAddrType,
crasDHCPServer,
--
crasSessionInPkts,
crasSessionOutPkts,
crasSessionInDropPkts,
@ -2100,7 +2077,6 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
crasSessionInOctets,
crasSessionOutOctets,
crasSessionState
--
}
STATUS current
DESCRIPTION
@ -2130,8 +2106,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
Session
A connection terminating on the managed device
which has been established to provide remote access
connectivity to a user.
"
connectivity to a user."
::= { ciscoRasMonitorMIBGroups 3 }
ciscoRasGrpActivityGroup OBJECT-GROUP
@ -2148,11 +2123,9 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
STATUS current
DESCRIPTION
"This group consists of the MIB objects pertaining
to activity of user groups.
"
to activity of user groups."
::= { ciscoRasMonitorMIBGroups 4 }
ciscoRasMandatoryFailureGroup OBJECT-GROUP
OBJECTS {
crasNumTotalFailures,
@ -2165,8 +2138,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
"This group categorizes objects pertaining to
failures in the Remote Access Service which are
essential for successful monitoring of the
service.
"
service."
::= { ciscoRasMonitorMIBGroups 5 }
ciscoRasOptionalFailureGroup OBJECT-GROUP
@ -2196,9 +2168,7 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
::= { ciscoRasMonitorMIBGroups 6 }
ciscoRasSecurityGroup OBJECT-GROUP
OBJECTS {
crasNumDisabledAccounts
}
OBJECTS { crasNumDisabledAccounts }
STATUS current
DESCRIPTION
"This group categorizes objects pertaining to the
@ -2271,3 +2241,5 @@ CISCO-REMOTE-ACCESS-MONITOR-MIB DEFINITIONS ::= BEGIN
::= { ciscoRasMonitorMIBGroups 11 }
END

View file

@ -6,7 +6,7 @@
-- August 2000, Timothy Kurnik and Bo Berry
-- December 2001, Liwei Wang
--
-- Copyright (c) 2000-2006 by Cisco Systems Inc.
-- Copyright (c) 2000-2006, 2023 by Cisco Systems Inc.
-- All rights reserved.
-- ****************************************************************
@ -39,7 +39,7 @@ IMPORTS
ciscoRFMIB MODULE-IDENTITY
LAST-UPDATED "200509010000Z"
LAST-UPDATED "202307130000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems Customer Service
@ -49,6 +49,9 @@ ciscoRFMIB MODULE-IDENTITY
Tel: +1 800 553-NETS
E-mail: cs-rf-mib@cisco.com"
DESCRIPTION
"Added descriptions for enums 8 and 9 in RFSwactReasonType"
REVISION "202307130000Z"
DESCRIPTION
"This MIB provides configuration control and status for the
Redundancy Framework (RF) subsystem. RF provides a mechanism
@ -314,6 +317,8 @@ RFState ::= TEXTUAL-CONVENTION
activeHandback
- unit is active, processing calls and is in the process
of handing some resources to the other unit in the system
standbyWarm
- unit is ready when using RPR+ mode
* Sub-state of 'standbyCold'"
SYNTAX INTEGER {
@ -332,7 +337,8 @@ RFState ::= TEXTUAL-CONVENTION
activePostconfig(13),
active(14),
activeExtraload(15),
activeHandback(16)
activeHandback(16),
standbyWarm(17)
}
RFMode ::= TEXTUAL-CONVENTION
@ -425,7 +431,11 @@ RFSwactReasonType ::= TEXTUAL-CONVENTION
activeUnitFailed
- active unit failure caused an auto SWACT
activeUnitRemoved
- active unit removal caused an auto SWACT"
- active unit removal caused an auto SWACT
activeGWdown
- SWACT due to active losing gateway connectivity
activeRMIportdown
- SWACT due to RMI port going down on active"
SYNTAX INTEGER {
unsupported(1),
none(2),
@ -433,7 +443,9 @@ RFSwactReasonType ::= TEXTUAL-CONVENTION
userInitiated(4),
userForced(5),
activeUnitFailed(6),
activeUnitRemoved(7)
activeUnitRemoved(7),
activeGWdown(8),
activeRMIportdown(9)
}
RFUnitIdentifier ::= TEXTUAL-CONVENTION

0
priv/mibs/cisco/CISCO-RTTMON-ICMP-MIB Executable file → Normal file
View file

View file

@ -9,7 +9,7 @@
-- August 2003, Edward Pham
-- %DNP% March 2005, Jayakumar Kadirvelu
--
-- Copyright (c) 2000-2020 by cisco Systems Inc.
-- Copyright (c) 2000-2024 by cisco Systems Inc.
-- by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
@ -60,7 +60,7 @@ IMPORTS
ciscoSwitchEngineMIB MODULE-IDENTITY
LAST-UPDATED "202005260000Z"
LAST-UPDATED "202401090000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems
@ -97,6 +97,12 @@ ciscoSwitchEngineMIB MODULE-IDENTITY
Layer 2 forwarding. However, they can also learn 'flows' through
other physically-separate (external) Cisco routers that are
connected to the switch-engine through the network."
REVISION "202401090000Z"
DESCRIPTION
"Add enumerated value 310 - 313 to cseTcamResourceType."
REVISION "202108010000Z"
DESCRIPTION
"Add enumerated value 309 to cseTcamResourceType."
REVISION "202005260000Z"
DESCRIPTION
"Add enumerated value 304 - 308 to cseTcamResourceType."
@ -4698,7 +4704,17 @@ cseTcamResourceType OBJECT-TYPE
ingressNatInside(305),
ingressL2L3QosAll(306),
natRewriteTable(307),
tcpAwareNat(308)
tcpAwareNat(308),
ingressNetflowSvi(309),
ingressIpv6Span(310),
ingressFlowPathTracerIpv4(311),
ingressFlowPathTracerIpv6(312),
analyticsFilterTcam(313),
egressNetflow(314),
egressNetflowL2(315),
egressNetflowSvi(316),
labelLblAHv1(317),
labelLblAIv1(318)
}
MAX-ACCESS not-accessible
STATUS current
@ -5622,7 +5638,31 @@ cseTcamResourceType OBJECT-TYPE
Rewrite Table.
tcpAwareNat(308) indicates that TCAM space is allocated for TCP
Aware NAT."
Aware NAT.
ingressNetflowSvi(309) indicates that TCAM space is allocated for
Ingress Netflow SVI.
ingressIpv6Span(310) indicates that TCAM space is allocated for
Ingress IPV6 SPAN.
ingressFlowPathTracerIpv4(311) indicates that TCAM space is allocated for
Ingress Flow Path Tracer IPV4.
ingressFlowPathTracerIpv6(312) indicates that TCAM space is allocated for
Ingress Flow Path Tracer IPV6.
analyticsFilterTcam(313) indicates that TCAM space is allocated for
Analytics Filter TCAM.
egressNetflow(314) indicates that TCAM space is allocated for
Egress Netflow.
egressNetflowL2(315) indicates that TCAM space is allocated for
Egress Netflow L2.
egressNetflowSvi(316) indicates that TCAM space is allocated for
Egress Netflow SVI."
::= { cseTcamUsageEntry 1 }
@ -7034,4 +7074,3 @@ cseStatisticsFlowGroup1 OBJECT-GROUP
END

File diff suppressed because it is too large Load diff

View file

@ -4,9 +4,9 @@
-- MIB representation of the Cisco Unified Computing System
-- MEMORY management information model package
--
-- Created October 2017 by Charles Bullis
-- Created July 2018 by Charles Bullis
--
-- Copyright (c) 2005-2017 Cisco Systems, Inc. All rights reserved.
-- Copyright (c) 2005-2018 Cisco Systems, Inc. All rights reserved.
--
-- *********************************************************************
@ -74,7 +74,7 @@ IMPORTS
FROM CISCO-UNIFIED-COMPUTING-TC-MIB;
cucsMemoryObjects MODULE-IDENTITY
LAST-UPDATED "201710060000Z"
LAST-UPDATED "201807260000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems
@ -341,10 +341,10 @@ CucsMemoryArrayEnvStatsEntry ::= SEQUENCE {
cucsMemoryArrayEnvStatsInstanceId CucsManagedObjectId,
cucsMemoryArrayEnvStatsDn CucsManagedObjectDn,
cucsMemoryArrayEnvStatsRn SnmpAdminString,
cucsMemoryArrayEnvStatsInputCurrent SnmpAdminString,
cucsMemoryArrayEnvStatsInputCurrentAvg SnmpAdminString,
cucsMemoryArrayEnvStatsInputCurrentMax SnmpAdminString,
cucsMemoryArrayEnvStatsInputCurrentMin SnmpAdminString,
cucsMemoryArrayEnvStatsInputCurrent INTEGER,
cucsMemoryArrayEnvStatsInputCurrentAvg INTEGER,
cucsMemoryArrayEnvStatsInputCurrentMax INTEGER,
cucsMemoryArrayEnvStatsInputCurrentMin INTEGER,
cucsMemoryArrayEnvStatsIntervals Gauge32,
cucsMemoryArrayEnvStatsSuspect TruthValue,
cucsMemoryArrayEnvStatsThresholded CucsMemoryArrayEnvStatsThresholded,
@ -377,7 +377,7 @@ cucsMemoryArrayEnvStatsRn OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsEntry 3 }
cucsMemoryArrayEnvStatsInputCurrent OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -386,7 +386,7 @@ cucsMemoryArrayEnvStatsInputCurrent OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsEntry 4 }
cucsMemoryArrayEnvStatsInputCurrentAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -395,7 +395,7 @@ cucsMemoryArrayEnvStatsInputCurrentAvg OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsEntry 5 }
cucsMemoryArrayEnvStatsInputCurrentMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -404,7 +404,7 @@ cucsMemoryArrayEnvStatsInputCurrentMax OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsEntry 6 }
cucsMemoryArrayEnvStatsInputCurrentMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -476,10 +476,10 @@ CucsMemoryArrayEnvStatsHistEntry ::= SEQUENCE {
cucsMemoryArrayEnvStatsHistDn CucsManagedObjectDn,
cucsMemoryArrayEnvStatsHistRn SnmpAdminString,
cucsMemoryArrayEnvStatsHistId Unsigned64,
cucsMemoryArrayEnvStatsHistInputCurrent SnmpAdminString,
cucsMemoryArrayEnvStatsHistInputCurrentAvg SnmpAdminString,
cucsMemoryArrayEnvStatsHistInputCurrentMax SnmpAdminString,
cucsMemoryArrayEnvStatsHistInputCurrentMin SnmpAdminString,
cucsMemoryArrayEnvStatsHistInputCurrent INTEGER,
cucsMemoryArrayEnvStatsHistInputCurrentAvg INTEGER,
cucsMemoryArrayEnvStatsHistInputCurrentMax INTEGER,
cucsMemoryArrayEnvStatsHistInputCurrentMin INTEGER,
cucsMemoryArrayEnvStatsHistMostRecent TruthValue,
cucsMemoryArrayEnvStatsHistSuspect TruthValue,
cucsMemoryArrayEnvStatsHistThresholded CucsMemoryArrayEnvStatsHistThresholded,
@ -519,7 +519,7 @@ cucsMemoryArrayEnvStatsHistId OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsHistEntry 4 }
cucsMemoryArrayEnvStatsHistInputCurrent OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -528,7 +528,7 @@ cucsMemoryArrayEnvStatsHistInputCurrent OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsHistEntry 5 }
cucsMemoryArrayEnvStatsHistInputCurrentAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -537,7 +537,7 @@ cucsMemoryArrayEnvStatsHistInputCurrentAvg OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsHistEntry 6 }
cucsMemoryArrayEnvStatsHistInputCurrentMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -546,7 +546,7 @@ cucsMemoryArrayEnvStatsHistInputCurrentMax OBJECT-TYPE
::= { cucsMemoryArrayEnvStatsHistEntry 7 }
cucsMemoryArrayEnvStatsHistInputCurrentMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -787,10 +787,10 @@ CucsMemoryBufferUnitEnvStatsEntry ::= SEQUENCE {
cucsMemoryBufferUnitEnvStatsRn SnmpAdminString,
cucsMemoryBufferUnitEnvStatsIntervals Gauge32,
cucsMemoryBufferUnitEnvStatsSuspect TruthValue,
cucsMemoryBufferUnitEnvStatsTemperature SnmpAdminString,
cucsMemoryBufferUnitEnvStatsTemperatureAvg SnmpAdminString,
cucsMemoryBufferUnitEnvStatsTemperatureMax SnmpAdminString,
cucsMemoryBufferUnitEnvStatsTemperatureMin SnmpAdminString,
cucsMemoryBufferUnitEnvStatsTemperature INTEGER,
cucsMemoryBufferUnitEnvStatsTemperatureAvg INTEGER,
cucsMemoryBufferUnitEnvStatsTemperatureMax INTEGER,
cucsMemoryBufferUnitEnvStatsTemperatureMin INTEGER,
cucsMemoryBufferUnitEnvStatsThresholded CucsMemoryBufferUnitEnvStatsThresholded,
cucsMemoryBufferUnitEnvStatsTimeCollected DateAndTime,
cucsMemoryBufferUnitEnvStatsUpdate Gauge32
@ -839,7 +839,7 @@ cucsMemoryBufferUnitEnvStatsSuspect OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsEntry 5 }
cucsMemoryBufferUnitEnvStatsTemperature OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -848,7 +848,7 @@ cucsMemoryBufferUnitEnvStatsTemperature OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsEntry 6 }
cucsMemoryBufferUnitEnvStatsTemperatureAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -857,7 +857,7 @@ cucsMemoryBufferUnitEnvStatsTemperatureAvg OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsEntry 7 }
cucsMemoryBufferUnitEnvStatsTemperatureMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -866,7 +866,7 @@ cucsMemoryBufferUnitEnvStatsTemperatureMax OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsEntry 8 }
cucsMemoryBufferUnitEnvStatsTemperatureMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -925,10 +925,10 @@ CucsMemoryBufferUnitEnvStatsHistEntry ::= SEQUENCE {
cucsMemoryBufferUnitEnvStatsHistId Unsigned64,
cucsMemoryBufferUnitEnvStatsHistMostRecent TruthValue,
cucsMemoryBufferUnitEnvStatsHistSuspect TruthValue,
cucsMemoryBufferUnitEnvStatsHistTemperature SnmpAdminString,
cucsMemoryBufferUnitEnvStatsHistTemperatureAvg SnmpAdminString,
cucsMemoryBufferUnitEnvStatsHistTemperatureMax SnmpAdminString,
cucsMemoryBufferUnitEnvStatsHistTemperatureMin SnmpAdminString,
cucsMemoryBufferUnitEnvStatsHistTemperature INTEGER,
cucsMemoryBufferUnitEnvStatsHistTemperatureAvg INTEGER,
cucsMemoryBufferUnitEnvStatsHistTemperatureMax INTEGER,
cucsMemoryBufferUnitEnvStatsHistTemperatureMin INTEGER,
cucsMemoryBufferUnitEnvStatsHistThresholded CucsMemoryBufferUnitEnvStatsHistThresholded,
cucsMemoryBufferUnitEnvStatsHistTimeCollected DateAndTime
}
@ -987,7 +987,7 @@ cucsMemoryBufferUnitEnvStatsHistSuspect OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsHistEntry 6 }
cucsMemoryBufferUnitEnvStatsHistTemperature OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -996,7 +996,7 @@ cucsMemoryBufferUnitEnvStatsHistTemperature OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsHistEntry 7 }
cucsMemoryBufferUnitEnvStatsHistTemperatureAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1005,7 +1005,7 @@ cucsMemoryBufferUnitEnvStatsHistTemperatureAvg OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsHistEntry 8 }
cucsMemoryBufferUnitEnvStatsHistTemperatureMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1014,7 +1014,7 @@ cucsMemoryBufferUnitEnvStatsHistTemperatureMax OBJECT-TYPE
::= { cucsMemoryBufferUnitEnvStatsHistEntry 9 }
cucsMemoryBufferUnitEnvStatsHistTemperatureMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1595,7 +1595,7 @@ CucsMemoryQualEntry ::= SEQUENCE {
cucsMemoryQualDn CucsManagedObjectDn,
cucsMemoryQualRn SnmpAdminString,
cucsMemoryQualClock Gauge32,
cucsMemoryQualLatency SnmpAdminString,
cucsMemoryQualLatency INTEGER,
cucsMemoryQualMaxCap Gauge32,
cucsMemoryQualMinCap Gauge32,
cucsMemoryQualSpeed Gauge32,
@ -1636,7 +1636,7 @@ cucsMemoryQualClock OBJECT-TYPE
::= { cucsMemoryQualEntry 4 }
cucsMemoryQualLatency OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2123,7 +2123,7 @@ CucsMemoryUnitEntry ::= SEQUENCE {
cucsMemoryUnitClock Gauge32,
cucsMemoryUnitFormFactor CucsMemoryFormFactor,
cucsMemoryUnitId CucsMemoryUnitId,
cucsMemoryUnitLatency SnmpAdminString,
cucsMemoryUnitLatency INTEGER,
cucsMemoryUnitLocation SnmpAdminString,
cucsMemoryUnitModel SnmpAdminString,
cucsMemoryUnitOperState CucsEquipmentOperability,
@ -2220,7 +2220,7 @@ cucsMemoryUnitId OBJECT-TYPE
::= { cucsMemoryUnitEntry 9 }
cucsMemoryUnitLatency OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2419,10 +2419,10 @@ CucsMemoryUnitEnvStatsEntry ::= SEQUENCE {
cucsMemoryUnitEnvStatsRn SnmpAdminString,
cucsMemoryUnitEnvStatsIntervals Gauge32,
cucsMemoryUnitEnvStatsSuspect TruthValue,
cucsMemoryUnitEnvStatsTemperature SnmpAdminString,
cucsMemoryUnitEnvStatsTemperatureAvg SnmpAdminString,
cucsMemoryUnitEnvStatsTemperatureMax SnmpAdminString,
cucsMemoryUnitEnvStatsTemperatureMin SnmpAdminString,
cucsMemoryUnitEnvStatsTemperature INTEGER,
cucsMemoryUnitEnvStatsTemperatureAvg INTEGER,
cucsMemoryUnitEnvStatsTemperatureMax INTEGER,
cucsMemoryUnitEnvStatsTemperatureMin INTEGER,
cucsMemoryUnitEnvStatsThresholded CucsMemoryUnitEnvStatsThresholded,
cucsMemoryUnitEnvStatsTimeCollected DateAndTime,
cucsMemoryUnitEnvStatsUpdate Gauge32
@ -2469,7 +2469,7 @@ cucsMemoryUnitEnvStatsSuspect OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsEntry 5 }
cucsMemoryUnitEnvStatsTemperature OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2478,7 +2478,7 @@ cucsMemoryUnitEnvStatsTemperature OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsEntry 6 }
cucsMemoryUnitEnvStatsTemperatureAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2487,7 +2487,7 @@ cucsMemoryUnitEnvStatsTemperatureAvg OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsEntry 7 }
cucsMemoryUnitEnvStatsTemperatureMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2496,7 +2496,7 @@ cucsMemoryUnitEnvStatsTemperatureMax OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsEntry 8 }
cucsMemoryUnitEnvStatsTemperatureMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2554,10 +2554,10 @@ CucsMemoryUnitEnvStatsHistEntry ::= SEQUENCE {
cucsMemoryUnitEnvStatsHistId Unsigned64,
cucsMemoryUnitEnvStatsHistMostRecent TruthValue,
cucsMemoryUnitEnvStatsHistSuspect TruthValue,
cucsMemoryUnitEnvStatsHistTemperature SnmpAdminString,
cucsMemoryUnitEnvStatsHistTemperatureAvg SnmpAdminString,
cucsMemoryUnitEnvStatsHistTemperatureMax SnmpAdminString,
cucsMemoryUnitEnvStatsHistTemperatureMin SnmpAdminString,
cucsMemoryUnitEnvStatsHistTemperature INTEGER,
cucsMemoryUnitEnvStatsHistTemperatureAvg INTEGER,
cucsMemoryUnitEnvStatsHistTemperatureMax INTEGER,
cucsMemoryUnitEnvStatsHistTemperatureMin INTEGER,
cucsMemoryUnitEnvStatsHistThresholded CucsMemoryUnitEnvStatsHistThresholded,
cucsMemoryUnitEnvStatsHistTimeCollected DateAndTime
}
@ -2613,7 +2613,7 @@ cucsMemoryUnitEnvStatsHistSuspect OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsHistEntry 6 }
cucsMemoryUnitEnvStatsHistTemperature OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2622,7 +2622,7 @@ cucsMemoryUnitEnvStatsHistTemperature OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsHistEntry 7 }
cucsMemoryUnitEnvStatsHistTemperatureAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2631,7 +2631,7 @@ cucsMemoryUnitEnvStatsHistTemperatureAvg OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsHistEntry 8 }
cucsMemoryUnitEnvStatsHistTemperatureMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -2640,7 +2640,7 @@ cucsMemoryUnitEnvStatsHistTemperatureMax OBJECT-TYPE
::= { cucsMemoryUnitEnvStatsHistEntry 9 }
cucsMemoryUnitEnvStatsHistTemperatureMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION

View file

@ -4,9 +4,9 @@
-- MIB representation of the Cisco Unified Computing System
-- PROCESSOR management information model package
--
-- Created October 2017 by Charles Bullis
-- Created July 2018 by Charles Bullis
--
-- Copyright (c) 2005-2017 Cisco Systems, Inc. All rights reserved.
-- Copyright (c) 2005-2018 Cisco Systems, Inc. All rights reserved.
--
-- *********************************************************************
@ -62,7 +62,7 @@ IMPORTS
FROM CISCO-UNIFIED-COMPUTING-TC-MIB;
cucsProcessorObjects MODULE-IDENTITY
LAST-UPDATED "201710060000Z"
LAST-UPDATED "201807260000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems
@ -157,16 +157,16 @@ CucsProcessorEnvStatsEntry ::= SEQUENCE {
cucsProcessorEnvStatsInstanceId CucsManagedObjectId,
cucsProcessorEnvStatsDn CucsManagedObjectDn,
cucsProcessorEnvStatsRn SnmpAdminString,
cucsProcessorEnvStatsInputCurrent SnmpAdminString,
cucsProcessorEnvStatsInputCurrentAvg SnmpAdminString,
cucsProcessorEnvStatsInputCurrentMax SnmpAdminString,
cucsProcessorEnvStatsInputCurrentMin SnmpAdminString,
cucsProcessorEnvStatsInputCurrent INTEGER,
cucsProcessorEnvStatsInputCurrentAvg INTEGER,
cucsProcessorEnvStatsInputCurrentMax INTEGER,
cucsProcessorEnvStatsInputCurrentMin INTEGER,
cucsProcessorEnvStatsIntervals Gauge32,
cucsProcessorEnvStatsSuspect TruthValue,
cucsProcessorEnvStatsTemperature SnmpAdminString,
cucsProcessorEnvStatsTemperatureAvg SnmpAdminString,
cucsProcessorEnvStatsTemperatureMax SnmpAdminString,
cucsProcessorEnvStatsTemperatureMin SnmpAdminString,
cucsProcessorEnvStatsTemperature INTEGER,
cucsProcessorEnvStatsTemperatureAvg INTEGER,
cucsProcessorEnvStatsTemperatureMax INTEGER,
cucsProcessorEnvStatsTemperatureMin INTEGER,
cucsProcessorEnvStatsThresholded CucsProcessorEnvStatsThresholded,
cucsProcessorEnvStatsTimeCollected DateAndTime,
cucsProcessorEnvStatsUpdate Gauge32
@ -197,7 +197,7 @@ cucsProcessorEnvStatsRn OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 3 }
cucsProcessorEnvStatsInputCurrent OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -206,7 +206,7 @@ cucsProcessorEnvStatsInputCurrent OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 4 }
cucsProcessorEnvStatsInputCurrentAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -215,7 +215,7 @@ cucsProcessorEnvStatsInputCurrentAvg OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 5 }
cucsProcessorEnvStatsInputCurrentMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -224,7 +224,7 @@ cucsProcessorEnvStatsInputCurrentMax OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 6 }
cucsProcessorEnvStatsInputCurrentMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -249,7 +249,7 @@ cucsProcessorEnvStatsSuspect OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 9 }
cucsProcessorEnvStatsTemperature OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -257,7 +257,7 @@ cucsProcessorEnvStatsTemperature OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 10 }
cucsProcessorEnvStatsTemperatureAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -266,7 +266,7 @@ cucsProcessorEnvStatsTemperatureAvg OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 11 }
cucsProcessorEnvStatsTemperatureMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -275,7 +275,7 @@ cucsProcessorEnvStatsTemperatureMax OBJECT-TYPE
::= { cucsProcessorEnvStatsEntry 12 }
cucsProcessorEnvStatsTemperatureMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -330,16 +330,16 @@ CucsProcessorEnvStatsHistEntry ::= SEQUENCE {
cucsProcessorEnvStatsHistDn CucsManagedObjectDn,
cucsProcessorEnvStatsHistRn SnmpAdminString,
cucsProcessorEnvStatsHistId Unsigned64,
cucsProcessorEnvStatsHistInputCurrent SnmpAdminString,
cucsProcessorEnvStatsHistInputCurrentAvg SnmpAdminString,
cucsProcessorEnvStatsHistInputCurrentMax SnmpAdminString,
cucsProcessorEnvStatsHistInputCurrentMin SnmpAdminString,
cucsProcessorEnvStatsHistInputCurrent INTEGER,
cucsProcessorEnvStatsHistInputCurrentAvg INTEGER,
cucsProcessorEnvStatsHistInputCurrentMax INTEGER,
cucsProcessorEnvStatsHistInputCurrentMin INTEGER,
cucsProcessorEnvStatsHistMostRecent TruthValue,
cucsProcessorEnvStatsHistSuspect TruthValue,
cucsProcessorEnvStatsHistTemperature SnmpAdminString,
cucsProcessorEnvStatsHistTemperatureAvg SnmpAdminString,
cucsProcessorEnvStatsHistTemperatureMax SnmpAdminString,
cucsProcessorEnvStatsHistTemperatureMin SnmpAdminString,
cucsProcessorEnvStatsHistTemperature INTEGER,
cucsProcessorEnvStatsHistTemperatureAvg INTEGER,
cucsProcessorEnvStatsHistTemperatureMax INTEGER,
cucsProcessorEnvStatsHistTemperatureMin INTEGER,
cucsProcessorEnvStatsHistThresholded CucsProcessorEnvStatsHistThresholded,
cucsProcessorEnvStatsHistTimeCollected DateAndTime
}
@ -377,7 +377,7 @@ cucsProcessorEnvStatsHistId OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 4 }
cucsProcessorEnvStatsHistInputCurrent OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -386,7 +386,7 @@ cucsProcessorEnvStatsHistInputCurrent OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 5 }
cucsProcessorEnvStatsHistInputCurrentAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -395,7 +395,7 @@ cucsProcessorEnvStatsHistInputCurrentAvg OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 6 }
cucsProcessorEnvStatsHistInputCurrentMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -404,7 +404,7 @@ cucsProcessorEnvStatsHistInputCurrentMax OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 7 }
cucsProcessorEnvStatsHistInputCurrentMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -430,7 +430,7 @@ cucsProcessorEnvStatsHistSuspect OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 10 }
cucsProcessorEnvStatsHistTemperature OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -439,7 +439,7 @@ cucsProcessorEnvStatsHistTemperature OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 11 }
cucsProcessorEnvStatsHistTemperatureAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -448,7 +448,7 @@ cucsProcessorEnvStatsHistTemperatureAvg OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 12 }
cucsProcessorEnvStatsHistTemperatureMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -457,7 +457,7 @@ cucsProcessorEnvStatsHistTemperatureMax OBJECT-TYPE
::= { cucsProcessorEnvStatsHistEntry 13 }
cucsProcessorEnvStatsHistTemperatureMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1156,7 +1156,7 @@ CucsProcessorQualEntry ::= SEQUENCE {
cucsProcessorQualMinProcs Gauge32,
cucsProcessorQualMinThreads Gauge32,
cucsProcessorQualModel SnmpAdminString,
cucsProcessorQualSpeed SnmpAdminString,
cucsProcessorQualSpeed INTEGER,
cucsProcessorQualStepping Gauge32
}
@ -1249,7 +1249,7 @@ cucsProcessorQualModel OBJECT-TYPE
::= { cucsProcessorQualEntry 11 }
cucsProcessorQualSpeed OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1286,10 +1286,10 @@ CucsProcessorRuntimeEntry ::= SEQUENCE {
cucsProcessorRuntimeDn CucsManagedObjectDn,
cucsProcessorRuntimeRn SnmpAdminString,
cucsProcessorRuntimeIntervals Gauge32,
cucsProcessorRuntimeLoad SnmpAdminString,
cucsProcessorRuntimeLoadAvg SnmpAdminString,
cucsProcessorRuntimeLoadMax SnmpAdminString,
cucsProcessorRuntimeLoadMin SnmpAdminString,
cucsProcessorRuntimeLoad INTEGER,
cucsProcessorRuntimeLoadAvg INTEGER,
cucsProcessorRuntimeLoadMax INTEGER,
cucsProcessorRuntimeLoadMin INTEGER,
cucsProcessorRuntimeSuspect TruthValue,
cucsProcessorRuntimeThresholded CucsProcessorRuntimeThresholded,
cucsProcessorRuntimeTimeCollected DateAndTime,
@ -1330,7 +1330,7 @@ cucsProcessorRuntimeIntervals OBJECT-TYPE
::= { cucsProcessorRuntimeEntry 4 }
cucsProcessorRuntimeLoad OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1338,7 +1338,7 @@ cucsProcessorRuntimeLoad OBJECT-TYPE
::= { cucsProcessorRuntimeEntry 5 }
cucsProcessorRuntimeLoadAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1346,7 +1346,7 @@ cucsProcessorRuntimeLoadAvg OBJECT-TYPE
::= { cucsProcessorRuntimeEntry 6 }
cucsProcessorRuntimeLoadMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1354,7 +1354,7 @@ cucsProcessorRuntimeLoadMax OBJECT-TYPE
::= { cucsProcessorRuntimeEntry 7 }
cucsProcessorRuntimeLoadMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1424,10 +1424,10 @@ CucsProcessorRuntimeHistEntry ::= SEQUENCE {
cucsProcessorRuntimeHistDn CucsManagedObjectDn,
cucsProcessorRuntimeHistRn SnmpAdminString,
cucsProcessorRuntimeHistId Unsigned64,
cucsProcessorRuntimeHistLoad SnmpAdminString,
cucsProcessorRuntimeHistLoadAvg SnmpAdminString,
cucsProcessorRuntimeHistLoadMax SnmpAdminString,
cucsProcessorRuntimeHistLoadMin SnmpAdminString,
cucsProcessorRuntimeHistLoad INTEGER,
cucsProcessorRuntimeHistLoadAvg INTEGER,
cucsProcessorRuntimeHistLoadMax INTEGER,
cucsProcessorRuntimeHistLoadMin INTEGER,
cucsProcessorRuntimeHistMostRecent TruthValue,
cucsProcessorRuntimeHistSuspect TruthValue,
cucsProcessorRuntimeHistThresholded CucsProcessorRuntimeHistThresholded,
@ -1467,7 +1467,7 @@ cucsProcessorRuntimeHistId OBJECT-TYPE
::= { cucsProcessorRuntimeHistEntry 4 }
cucsProcessorRuntimeHistLoad OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1475,7 +1475,7 @@ cucsProcessorRuntimeHistLoad OBJECT-TYPE
::= { cucsProcessorRuntimeHistEntry 5 }
cucsProcessorRuntimeHistLoadAvg OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1483,7 +1483,7 @@ cucsProcessorRuntimeHistLoadAvg OBJECT-TYPE
::= { cucsProcessorRuntimeHistEntry 6 }
cucsProcessorRuntimeHistLoadMax OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1491,7 +1491,7 @@ cucsProcessorRuntimeHistLoadMax OBJECT-TYPE
::= { cucsProcessorRuntimeHistEntry 7 }
cucsProcessorRuntimeHistLoadMin OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1623,7 +1623,7 @@ CucsProcessorUnitEntry ::= SEQUENCE {
cucsProcessorUnitRevision SnmpAdminString,
cucsProcessorUnitSerial SnmpAdminString,
cucsProcessorUnitSocketDesignation SnmpAdminString,
cucsProcessorUnitSpeed SnmpAdminString,
cucsProcessorUnitSpeed INTEGER,
cucsProcessorUnitStepping Gauge32,
cucsProcessorUnitThermal CucsEquipmentSensorThresholdStatus,
cucsProcessorUnitThreads Gauge32,
@ -1764,7 +1764,7 @@ cucsProcessorUnitSocketDesignation OBJECT-TYPE
::= { cucsProcessorUnitEntry 16 }
cucsProcessorUnitSpeed OBJECT-TYPE
SYNTAX SnmpAdminString
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION

View file

@ -10,3 +10,5 @@ discovery:
-
sysObjectID:
- .1.3.6.1.4.1.32050
sysObjectID_except:
- .1.3.6.1.4.1.32050.1.4

View file

@ -0,0 +1,13 @@
os: sitemonitor3
text: 'Packetflux SiteMonitor Base 3'
type: appliance
icon: packetflux
over:
- { graph: device_voltage, text: 'Voltage' }
- { graph: device_temperature, text: 'Temperature' }
snmp_bulk: false
mib_dir: packetflux
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.32050.1.4

View file

@ -1,7 +1,11 @@
modules:
os:
hardware: ADVANTECH-COMMON-MIB::sysModuleID.0
version: ADVANTECH-COMMON-MIB::sysImageVersion.0
version:
- ADVANTECH-COMMON-MIB::sysImageVersion.0
- ADVANTECH-EKI-PRONEER-MIB::buildVersion.0
version_template: '{{ ADVANTECH-COMMON-MIB::sysImageVersion.0 }} Build {{ ADVANTECH-EKI-PRONEER-MIB::buildVersion.0 }}'
#serial: ADVANTECH-EKI-PRONEER-MIB::serialNumber !! DO NOT USE !! - per AFE "the firmware of EKI series switches does not allow reading hardware serial numbers via SNMP."
sensors:
additional_oids:
data:
@ -125,3 +129,57 @@ modules:
descr: 'Total POE Power Consumption'
index: 'poeActualPowerConsumption.{{ $index }}'
high_limit: ADVANTECH-EKI-PRONEER-MIB::poeMaxPowerAvailable
state:
data:
-
oid: ADVANTECH-EKI-PRONEER-MIB::xRingProInfoTable
value: ADVANTECH-EKI-PRONEER-MIB::xRingProInfoPort1FwdState
num_oid: '.1.3.6.1.4.1.10297.202.7000.3.14.4.1.5.{{ $index }}'
descr: 'X-Ring Pro RingID-{{ ADVANTECH-EKI-PRONEER-MIB::xRingProInfoRingID }} Port-{{ ADVANTECH-EKI-PRONEER-MIB::xRingProInfoPort1 }} - {{ ADVANTECH-EKI-PRONEER-MIB::xRingProInfoOperState }}'
index: 'xRingProInfoPort1FwdState.{{ $index }}'
state_name: xRingProInfoPort1FwdState
states:
- { descr: 'FWD', graph: 1, value: 0, generic: 0 }
- { descr: 'BLK', graph: 1, value: 1, generic: 0 }
- { descr: 'DWN', graph: 1, value: 2, generic: 2 }
-
oid: ADVANTECH-EKI-PRONEER-MIB::xRingProInfoTable
value: ADVANTECH-EKI-PRONEER-MIB::xRingProInfoPort2FwdState
num_oid: '.1.3.6.1.4.1.10297.202.7000.3.14.4.1.5.{{ $index }}'
descr: 'X-Ring Pro RingID-{{ ADVANTECH-EKI-PRONEER-MIB::xRingProInfoRingID }} Port-{{ ADVANTECH-EKI-PRONEER-MIB::xRingProInfoPort2 }} - {{ ADVANTECH-EKI-PRONEER-MIB::xRingProInfoOperState }}'
index: 'xRingProInfoPort2FwdState.{{ $index }}'
state_name: xRingProInfoPort2FwdState
states:
- { descr: 'FWD', graph: 1, value: 0, generic: 0 }
- { descr: 'BLK', graph: 1, value: 1, generic: 0 }
- { descr: 'DWN', graph: 1, value: 2, generic: 2 }
-
oid: ADVANTECH-EKI-PRONEER-MIB::xRingProStatus
value: ADVANTECH-EKI-PRONEER-MIB::xRingProStatus
num_oid: '.1.3.6.1.4.1.10297.202.7000.3.14.1.{{ $index }}'
descr: 'X-Ring Pro Status'
index: 'xRingProStatus.{{ $index }}'
state_name: xRingProStatus
states:
- { descr: 'enabled', graph: 1, value: 1, generic: 0 }
- { descr: 'disabled', graph: 1, value: 2, generic: 3 }
-
oid: ADVANTECH-EKI-PRONEER-MIB::xRingEliteState
value: ADVANTECH-EKI-PRONEER-MIB::xRingEliteState
num_oid: '.1.3.6.1.4.1.10297.202.7000.3.12.1.{{ $index }}'
descr: 'X-Ring Elite Status'
index: 'xRingEliteState.{{ $index }}'
state_name: xRingEliteState
states:
- { descr: 'enabled', graph: 1, value: 1, generic: 0 }
- { descr: 'disabled', graph: 1, value: 2, generic: 3 }
-
oid: ADVANTECH-EKI-PRONEER-MIB::erpsState
value: ADVANTECH-EKI-PRONEER-MIB::erpsState
num_oid: '.1.3.6.1.4.1.10297.202.7000.3.16.1.{{ $index }}'
descr: 'ERPS Status'
index: 'erpsState.{{ $index }}'
state_name: erpsState
states:
- { descr: 'enabled', graph: 1, value: 1, generic: 0 }
- { descr: 'disabled', graph: 1, value: 2, generic: 3 }

View file

@ -1,8 +1,6 @@
mib: UBNT-AirMAX-MIB
modules:
os:
hardware: IEEE802dot11-MIB::dot11manufacturerProductName.5
version: IEEE802dot11-MIB::dot11manufacturerProductVersion.5
lat: UBNT-AirMAX-MIB::ubntGpsLat.0
long: UBNT-AirMAX-MIB::ubntGpsLon.0
processors:

View file

@ -908,7 +908,7 @@ modules:
high_limit: 1000
-
oid: fbSipCarrierTable
value: fbSipPhoneTotalLegs
value: fbSipCarrierTotalLegs
num_oid: '.1.3.6.1.4.1.24693.100.5060.3.1.2.{{ $index }}'
index: 'carrierTotal{{ $index }}'
descr: 'Total Legs: {{ $fbSipCarrierName }}'

View file

@ -51,7 +51,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.4.{{ $index }}'
descr: '{{ IF-MIB::ifName }} temperature'
index: 'ifSfpParameterTable.temperature.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 256
@ -72,7 +72,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.5.{{ $index }}'
descr: '{{ IF-MIB::ifName }} voltage'
index: 'ifSfpParameterTable.vlotage.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 10000
@ -89,7 +89,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.6.{{ $index }}'
descr: '{{ IF-MIB::ifName }} current1'
index: 'ifSfpParameterTable.curr1.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 500000
@ -104,7 +104,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.10.{{ $index }}'
descr: '{{ IF-MIB::ifName }} current2'
index: 'ifSfpParameterTable.curr2.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 500000
@ -119,7 +119,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.13.{{ $index }}'
descr: '{{ IF-MIB::ifName }} current3'
index: 'ifSfpParameterTable.curr3.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 500000
@ -134,7 +134,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.16.{{ $index }}'
descr: '{{ IF-MIB::ifName }} current4'
index: 'ifSfpParameterTable.curr4.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 500000
@ -151,7 +151,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.3.{{ $index }}'
descr: '{{ IF-MIB::ifName }} rxPower1'
index: 'ifSfpParameterTable.rxPower1.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -166,7 +166,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.9.{{ $index }}'
descr: '{{ IF-MIB::ifName }} rxPower2'
index: 'ifSfpParameterTable.rxPower2.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -181,7 +181,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.12.{{ $index }}'
descr: '{{ IF-MIB::ifName }} rxPower3'
index: 'ifSfpParameterTable.rxPower3.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -196,7 +196,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.15.{{ $index }}'
descr: '{{ IF-MIB::ifName }} rxPower4'
index: 'ifSfpParameterTable.rxPower4.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -211,7 +211,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.2.{{ $index }}'
descr: '{{ IF-MIB::ifName }} txPower1'
index: 'ifSfpParameterTable.txPower1.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -226,7 +226,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.8.{{ $index }}'
descr: '{{ IF-MIB::ifName }} txPower2'
index: 'ifSfpParameterTable.txPower2.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -241,7 +241,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.11.{{ $index }}'
descr: '{{ IF-MIB::ifName }} txPower3'
index: 'ifSfpParameterTable.txPower3.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -256,7 +256,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.14.{{ $index }}'
descr: '{{ IF-MIB::ifName }} txPower4'
index: 'ifSfpParameterTable.txPower4.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
divisor: 100
@ -295,7 +295,7 @@ modules:
num_oid: '.1.3.6.1.4.1.52642.9.63.1.7.1.21.{{ $index }}'
descr: '{{ IF-MIB::ifName }} LOS'
index: 'ifSfpParameterTable.sfpLostStatus.{{ $index }}'
group: 'Transceiver: {{ IF-MIB::ifName }} (Vendor: {{ $vendname }} PN: {{ $vendorPN }} S/N: {{ $sfpSeqNum }} {{ $waveLen }}nm)'
group: transceiver
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: ports
states:

View file

@ -17,7 +17,7 @@ modules:
type: ironware-system
-
total: FOUNDRY-SN-AGENT-MIB::snAgentBrdMemoryTotal
percent_used: FOUNDRY-SN-AGENT-MIB::snAgentBrdMemoryUtil100thPercent
free: FOUNDRY-SN-AGENT-MIB::snAgentBrdMemoryAvailable
type: ironware-dyn
descr: '{{ FOUNDRY-SN-AGENT-MIB::snAgentBrdMainBrdDescription }}'
os:

View file

@ -18,11 +18,21 @@ modules:
value: MIKROTIK-MIB::mtxrOpticalTemperature
num_oid: '.1.3.6.1.4.1.14988.1.1.19.1.1.6.{{ $index }}'
descr: MIKROTIK-MIB::mtxrOpticalName
unit: '°C'
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: 'ports'
group: transceiver
index: 'mtxrOpticalTemperature.{{ $index }}'
-
oid: MIKROTIK-MIB::mtxrGaugeTable
value: MIKROTIK-MIB::mtxrGaugeValue
num_oid: '.1.3.6.1.4.1.14988.1.1.3.100.1.3.{{ $index }}'
descr: MIKROTIK-MIB::mtxrGaugeName
group: System
index: 'mtxrGaugeTemperature.{{ $index }}'
skip_values:
- oid: MIKROTIK-MIB::mtxrGaugeUnit
op: '!='
value: 1
voltage:
data:
-
@ -30,7 +40,6 @@ modules:
value: MIKROTIK-MIB::mtxrOpticalSupplyVoltage
num_oid: '.1.3.6.1.4.1.14988.1.1.19.1.1.7.{{ $index }}'
divisor: 1000
unit: 'V'
descr: MIKROTIK-MIB::mtxrOpticalName
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: 'ports'
@ -41,15 +50,25 @@ modules:
value: MIKROTIK-MIB::mtxrPOEVoltage
num_oid: '.1.3.6.1.4.1.14988.1.1.15.1.1.4.{{ $index }}'
divisor: 10
unit: 'V'
descr: '{{ MIKROTIK-MIB::mtxrPOEName }} POE'
group: Ports
index: 'mtxrPOEVoltage.{{ $index }}'
-
oid: MIKROTIK-MIB::mtxrGaugeTable
value: MIKROTIK-MIB::mtxrGaugeValue
num_oid: '.1.3.6.1.4.1.14988.1.1.3.100.1.3.{{ $index }}'
descr: MIKROTIK-MIB::mtxrGaugeName
group: System
divisor: 10
index: 'mtxrGaugeVoltage.{{ $index }}'
skip_values:
- oid: MIKROTIK-MIB::mtxrGaugeUnit
op: '!='
value: 3
-
oid: MIKROTIK-MIB::mtxrHlVoltage
num_oid: '.1.3.6.1.4.1.14988.1.1.3.8.{{ $index }}'
divisor: 10
unit: 'V'
descr: 'Voltage {{ $index }}'
current:
data:
@ -58,7 +77,6 @@ modules:
value: MIKROTIK-MIB::mtxrOpticalTxBiasCurrent
num_oid: '.1.3.6.1.4.1.14988.1.1.19.1.1.8.{{ $index }}'
descr: '{{ MIKROTIK-MIB::mtxrOpticalName }} Tx Bias'
unit: 'mA'
entPhysicalIndex: '{{ $index }}'
entPhysicalIndex_measured: 'ports'
group: transceiver
@ -69,10 +87,21 @@ modules:
value: MIKROTIK-MIB::mtxrPOECurrent
num_oid: '.1.3.6.1.4.1.14988.1.1.15.1.1.5.{{ $index }}'
descr: '{{ MIKROTIK-MIB::mtxrPOEName }} POE'
unit: 'A'
group: Ports
divisor: 1000
index: 'mtxrPOECurrent.{{ $index }}'
-
oid: MIKROTIK-MIB::mtxrGaugeTable
value: MIKROTIK-MIB::mtxrGaugeValue
num_oid: '.1.3.6.1.4.1.14988.1.1.3.100.1.3.{{ $index }}'
descr: MIKROTIK-MIB::mtxrGaugeName
group: System
divisor: 10
index: 'mtxrGaugeCurrent.{{ $index }}'
skip_values:
- oid: MIKROTIK-MIB::mtxrGaugeUnit
op: '!='
value: 4
dbm:
data:
@ -135,6 +164,20 @@ modules:
- { descr: 'waitingForLoad', graph: 1, value: 2, generic: 3 }
- { descr: 'poweredOn', graph: 1, value: 3, generic: 0 }
- { descr: 'overload', graph: 1, value: 4, generic: 2 }
-
oid: MIKROTIK-MIB::mtxrGaugeTable
value: MIKROTIK-MIB::mtxrGaugeValue
num_oid: '.1.3.6.1.4.1.14988.1.1.3.100.1.3.{{ $index }}'
descr: MIKROTIK-MIB::mtxrGaugeName
group: System
state_name: mtxrGaugeStatus
skip_values:
- oid: MIKROTIK-MIB::mtxrGaugeUnit
op: '!='
value: 6
states:
- { value: 0, generic: 0, graph: 1, descr: 'ok' }
- { value: 1, generic: 2, graph: 1, descr: 'fail' }
-
oid: MIKROTIK-MIB::mtxrWl60GConnected
num_oid: '.1.3.6.1.4.1.14988.1.1.1.8.1.4.{{ $index }}'
@ -164,12 +207,41 @@ modules:
value: MIKROTIK-MIB::mtxrPOEPower
num_oid: '.1.3.6.1.4.1.14988.1.1.15.1.1.6.{{ $index }}'
descr: '{{ MIKROTIK-MIB::mtxrPOEName }} POE'
unit: 'W'
group: Ports
divisor: 10
index: 'mtxrPOEPower.{{ $index }}'
-
oid: MIKROTIK-MIB::mtxrGaugeTable
value: MIKROTIK-MIB::mtxrGaugeValue
num_oid: '.1.3.6.1.4.1.14988.1.1.3.100.1.3.{{ $index }}'
descr: MIKROTIK-MIB::mtxrGaugeName
group: System
divisor: 10
index: 'mtxrGaugePower.{{ $index }}'
skip_values:
- oid: MIKROTIK-MIB::mtxrGaugeUnit
op: '!='
value: 5
fanspeed:
data:
-
oid: MIKROTIK-MIB::mtxrGaugeTable
value: MIKROTIK-MIB::mtxrGaugeValue
num_oid: '.1.3.6.1.4.1.14988.1.1.3.100.1.3.{{ $index }}'
descr: MIKROTIK-MIB::mtxrGaugeName
group: System
index: 'mtxrGuageFanspeed.{{ $index }}'
skip_values:
- oid: MIKROTIK-MIB::mtxrGaugeUnit
op: '!='
value: 2
count:
data:
-
oid: MIKROTIK-MIB::mtxrDHCPLeaseCount
num_oid: '.1.3.6.1.4.1.14988.1.1.6.1.{{ $index }}'
descr: DHCP Lease Count
index: mtxrDHCPLeaseCount.{{ $index }}
-
oid: MIKROTIK-MIB::mtxrCtTotalEntries
num_oid: .1.3.6.1.4.1.14988.1.1.22.1.1.{{ $index }}

View file

@ -0,0 +1,20 @@
modules:
sensors:
voltage:
data:
-
oid: PACKETFLUX-SENSORS-MIB::voltageSensorTable
value: PACKETFLUX-SENSORS-MIB::voltageSensorValue
descr: PACKETFLUX-SENSORS-MIB::voltageSensorFunction
index: 'voltageSensorFunction.{{ $index }}'
num_oid: '.1.3.6.1.4.1.32050.3.2.1.1.4.{{ $index }}'
divisor: 1000000
temperature:
data:
-
oid: PACKETFLUX-SENSORS-MIB::temperatureSensorTable
value: PACKETFLUX-SENSORS-MIB::temperatureSensorValue
descr: PACKETFLUX-SENSORS-MIB::temperatureSensorFunction
index: 'temperatureSensorFunction.{{ $index }}'
num_oid: '.1.3.6.1.4.1.32050.3.2.3.1.4.{{ $index }}'
divisor: 100

View file

@ -150,6 +150,6 @@ modules:
group: transceiver
skip_values:
-
oid: opticalSupportDDM
oid: NMS-OPTICAL-MIB::opticalSupportDDM
op: '!='
value: '1'

View file

@ -2558,3 +2558,710 @@ modules:
oid: SUPERCAPBATTERY-MIB::BMS15-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS01-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS01-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.13{{ $noindex }}'
descr: 'BMS 01 Charge Discharge Current Alarm Status'
index: 'BMS01-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 01'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS01-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS02-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS02-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.26{{ $noindex }}'
descr: 'BMS 02 Charge Discharge Current Alarm Status'
index: 'BMS02-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 02'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS02-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS03-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS03-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.39{{ $noindex }}'
descr: 'BMS 03 Charge Discharge Current Alarm Status'
index: 'BMS03-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 03'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS03-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS04-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS04-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.52{{ $noindex }}'
descr: 'BMS 04 Charge Discharge Current Alarm Status'
index: 'BMS04-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 04'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS04-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS05-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS05-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.65{{ $noindex }}'
descr: 'BMS 05 Charge Discharge Current Alarm Status'
index: 'BMS05-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 05'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS05-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS06-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS06-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.78{{ $noindex }}'
descr: 'BMS 06 Charge Discharge Current Alarm Status'
index: 'BMS06-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 06'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS06-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS07-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS07-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.91{{ $noindex }}'
descr: 'BMS 07 Charge Discharge Current Alarm Status'
index: 'BMS07-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 07'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS07-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS08-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS08-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.104{{ $noindex }}'
descr: 'BMS 08 Charge Discharge Current Alarm Status'
index: 'BMS08-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 08'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS08-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS09-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS09-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.117{{ $noindex }}'
descr: 'BMS 09 Charge Discharge Current Alarm Status'
index: 'BMS09-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 09'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS09-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS10-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS10-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.130{{ $noindex }}'
descr: 'BMS 10 Charge Discharge Current Alarm Status'
index: 'BMS10-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 10'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS10-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS11-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS11-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.143{{ $noindex }}'
descr: 'BMS 11 Charge Discharge Current Alarm Status'
index: 'BMS11-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 11'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS11-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS12-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS12-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.156{{ $noindex }}'
descr: 'BMS 12 Charge Discharge Current Alarm Status'
index: 'BMS12-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 12'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS12-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS13-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS13-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.169{{ $noindex }}'
descr: 'BMS 13 Charge Discharge Current Alarm Status'
index: 'BMS13-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 13'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS13-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS14-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS14-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.182{{ $noindex }}'
descr: 'BMS 14 Charge Discharge Current Alarm Status'
index: 'BMS14-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 14'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS14-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS15-ChargeDischargeCurrentAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS15-ChargeDischargeCurrentAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.195{{ $noindex }}'
descr: 'BMS 15 Charge Discharge Current Alarm Status'
index: 'BMS15-ChargeDischargeCurrentAlarmStatus'
group: 'BMS 15'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS15-Current
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS01-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS01-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.14{{ $noindex }}'
descr: 'BMS 01 Battery Voltage Alarm Status'
index: 'BMS01-BatteryVoltageAlarmStatus'
group: 'BMS 01'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS01-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS02-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS02-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.27{{ $noindex }}'
descr: 'BMS 02 Battery Voltage Alarm Status'
index: 'BMS02-BatteryVoltageAlarmStatus'
group: 'BMS 02'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS02-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS03-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS03-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.40{{ $noindex }}'
descr: 'BMS 03 Battery Voltage Alarm Status'
index: 'BMS03-BatteryVoltageAlarmStatus'
group: 'BMS 03'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS03-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS04-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS04-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.53{{ $noindex }}'
descr: 'BMS 04 Battery Voltage Alarm Status'
index: 'BMS04-BatteryVoltageAlarmStatus'
group: 'BMS 04'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS04-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS05-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS05-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.66{{ $noindex }}'
descr: 'BMS 05 Battery Voltage Alarm Status'
index: 'BMS05-BatteryVoltageAlarmStatus'
group: 'BMS 05'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS05-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS06-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS06-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.79{{ $noindex }}'
descr: 'BMS 06 Battery Voltage Alarm Status'
index: 'BMS06-BatteryVoltageAlarmStatus'
group: 'BMS 06'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS06-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS07-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS07-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.92{{ $noindex }}'
descr: 'BMS 07 Battery Voltage Alarm Status'
index: 'BMS07-BatteryVoltageAlarmStatus'
group: 'BMS 07'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS07-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS08-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS08-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.105{{ $noindex }}'
descr: 'BMS 08 Battery Voltage Alarm Status'
index: 'BMS08-BatteryVoltageAlarmStatus'
group: 'BMS 08'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS08-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS09-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS09-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.118{{ $noindex }}'
descr: 'BMS 09 Battery Voltage Alarm Status'
index: 'BMS09-BatteryVoltageAlarmStatus'
group: 'BMS 09'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS09-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS10-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS10-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.131{{ $noindex }}'
descr: 'BMS 10 Battery Voltage Alarm Status'
index: 'BMS10-BatteryVoltageAlarmStatus'
group: 'BMS 10'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS10-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS11-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS11-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.144{{ $noindex }}'
descr: 'BMS 11 Battery Voltage Alarm Status'
index: 'BMS11-BatteryVoltageAlarmStatus'
group: 'BMS 11'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS11-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS12-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS12-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.157{{ $noindex }}'
descr: 'BMS 12 Battery Voltage Alarm Status'
index: 'BMS12-BatteryVoltageAlarmStatus'
group: 'BMS 12'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS12-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS13-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS13-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.170{{ $noindex }}'
descr: 'BMS 13 Battery Voltage Alarm Status'
index: 'BMS13-BatteryVoltageAlarmStatus'
group: 'BMS 13'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS13-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS14-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS14-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.183{{ $noindex }}'
descr: 'BMS 14 Battery Voltage Alarm Status'
index: 'BMS14-BatteryVoltageAlarmStatus'
group: 'BMS 14'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS14-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS15-BatteryVoltageAlarmStatus
value: SUPERCAPBATTERY-MIB::BMS15-BatteryVoltageAlarmStatus
num_oid: '.1.3.6.1.2.1.555.1.1.1.196{{ $noindex }}'
descr: 'BMS 15 Battery Voltage Alarm Status'
index: 'BMS15-BatteryVoltageAlarmStatus'
group: 'BMS 15'
state_name: supercapStatus
states:
- { value: 0, descr: "OK", graph: 1, generic: 0 }
- { value: 1, descr: "Warning", graph: 1, generic: 1 }
- { value: 2, descr: "Alarm", graph: 1, generic: 2 }
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS15-Voltage
op: '='
value: 0
voltage:
data:
-
oid: SUPERCAPBATTERY-MIB::BMS01-Voltage
value: SUPERCAPBATTERY-MIB::BMS01-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.5{{ $noindex }}'
descr: 'Total Voltage BMS 01'
index: 'BMS01-Voltage'
group: 'BMS 01'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS01-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS02-Voltage
value: SUPERCAPBATTERY-MIB::BMS02-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.18{{ $noindex }}'
descr: 'Total Voltage BMS 02'
index: 'BMS02-Voltage'
group: 'BMS 02'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS02-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS03-Voltage
value: SUPERCAPBATTERY-MIB::BMS03-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.31{{ $noindex }}'
descr: 'Total Voltage BMS 03'
index: 'BMS03-Voltage'
group: 'BMS 03'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS03-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS04-Voltage
value: SUPERCAPBATTERY-MIB::BMS04-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.44{{ $noindex }}'
descr: 'Total Voltage BMS 04'
index: 'BMS04-Voltage'
group: 'BMS 04'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS04-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS05-Voltage
value: SUPERCAPBATTERY-MIB::BMS05-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.57{{ $noindex }}'
descr: 'Total Voltage BMS 05'
index: 'BMS05-Voltage'
group: 'BMS 05'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS05-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS06-Voltage
value: SUPERCAPBATTERY-MIB::BMS06-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.70{{ $noindex }}'
descr: 'Total Voltage BMS 06'
index: 'BMS06-Voltage'
group: 'BMS 06'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS06-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS07-Voltage
value: SUPERCAPBATTERY-MIB::BMS07-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.83{{ $noindex }}'
descr: 'Total Voltage BMS 07'
index: 'BMS07-Voltage'
group: 'BMS 07'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS07-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS08-Voltage
value: SUPERCAPBATTERY-MIB::BMS08-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.96{{ $noindex }}'
descr: 'Total Voltage BMS 08'
index: 'BMS08-Voltage'
group: 'BMS 08'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS08-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS09-Voltage
value: SUPERCAPBATTERY-MIB::BMS09-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.109{{ $noindex }}'
descr: 'Total Voltage BMS 09'
index: 'BMS09-Voltage'
group: 'BMS 09'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS09-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS10-Voltage
value: SUPERCAPBATTERY-MIB::BMS10-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.122{{ $noindex }}'
descr: 'Total Voltage BMS 10'
index: 'BMS10-Voltage'
group: 'BMS 10'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS10-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS11-Voltage
value: SUPERCAPBATTERY-MIB::BMS11-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.135{{ $noindex }}'
descr: 'Total Voltage BMS 11'
index: 'BMS11-Voltage'
group: 'BMS 11'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS11-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS12-Voltage
value: SUPERCAPBATTERY-MIB::BMS12-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.148{{ $noindex }}'
descr: 'Total Voltage BMS 12'
index: 'BMS12-Voltage'
group: 'BMS 12'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS12-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS13-Voltage
value: SUPERCAPBATTERY-MIB::BMS13-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.161{{ $noindex }}'
descr: 'Total Voltage BMS 13'
index: 'BMS13-Voltage'
group: 'BMS 13'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS13-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS14-Voltage
value: SUPERCAPBATTERY-MIB::BMS14-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.174{{ $noindex }}'
descr: 'Total Voltage BMS 14'
index: 'BMS14-Voltage'
group: 'BMS 14'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS14-Voltage
op: '='
value: 0
-
oid: SUPERCAPBATTERY-MIB::BMS15-Voltage
value: SUPERCAPBATTERY-MIB::BMS15-Voltage
num_oid: '.1.3.6.1.2.1.555.1.1.1.187{{ $noindex }}'
descr: 'Total Voltage BMS 15'
index: 'BMS15-Voltage'
group: 'BMS 15'
divisor: 100
skip_values:
-
oid: SUPERCAPBATTERY-MIB::BMS15-Voltage
op: '='
value: 0

View file

@ -301,7 +301,7 @@ modules:
oid: TIMETRA-NAT-MIB::tmnxNatIsaMemberTable
value: TIMETRA-NAT-MIB::tmnxNatIsaMemberMdaState
num_oid: '.1.3.6.1.4.1.6527.3.1.2.65.1.1.3.2.1.2.{{ $index }}'
descr: 'NAT ISA Member {{ $index }} State'
descr: 'NAT ISA {{ $index }} State'
index: 'tmnxNatIsaMemberMdaState.{{ $index }}'
state_name: tmnxNatIsaMemberMdaState
group: 'NAT ISA Status'
@ -320,7 +320,7 @@ modules:
oid: TIMETRA-NAT-MIB::tmnxNatIsaMemberTable
value: TIMETRA-NAT-MIB::tmnxNatIsaMemberSessionUsageHi
num_oid: '.1.3.6.1.4.1.6527.3.1.2.65.1.1.3.2.1.9.{{ $index }}'
descr: 'NAT ISA Member {{ $index }} Session High'
descr: 'NAT ISA {{ $index }} Session High'
index: 'tmnxNatIsaMemberSessionUsageHi.{{ $index }}'
state_name: tmnxNatIsaMemberSessionUsageHi
group: 'NAT ISA Status'
@ -656,11 +656,12 @@ modules:
oid: TIMETRA-NAT-MIB::tmnxNatIsaMemberTable
value: TIMETRA-NAT-MIB::tmnxNatIsaMemberSessionUsage
num_oid: '.1.3.6.1.4.1.6527.3.1.2.65.1.1.3.2.1.8.{{ $index }}'
descr: 'NAT ISA Member {{ $index }} Session Usage'
descr: 'NAT ISA {{ $index }} Session Usage'
index: 'tmnxNatIsaMemberSessionUsage.{{ $index }}'
group: 'NAT ISA Usage'
high_limit: 95
warn_limit: 80
# NAT Pool LSN Member Block Usage - moved to PHP for proper pool name parsing
count:
data:
-
@ -785,21 +786,21 @@ modules:
oid: TIMETRA-NAT-MIB::tmnxNatIsaMemberTable
value: TIMETRA-NAT-MIB::tmnxNatIsaMemberIpAddrReserved
num_oid: '.1.3.6.1.4.1.6527.3.1.2.65.1.1.3.2.1.6.{{ $index }}'
descr: 'NAT ISA Member {{ $index }} IP Addresses Reserved'
descr: 'NAT ISA {{ $index }} IP Addresses Reserved'
index: 'tmnxNatIsaMemberIpAddrReserved.{{ $index }}'
group: 'NAT ISA Resources'
-
oid: TIMETRA-NAT-MIB::tmnxNatIsaMemberTable
value: TIMETRA-NAT-MIB::tmnxNatIsaMemberBlocksReserved
num_oid: '.1.3.6.1.4.1.6527.3.1.2.65.1.1.3.2.1.7.{{ $index }}'
descr: 'NAT ISA Member {{ $index }} Port Blocks Reserved'
descr: 'NAT ISA {{ $index }} Port Blocks Reserved'
index: 'tmnxNatIsaMemberBlocksReserved.{{ $index }}'
group: 'NAT ISA Resources'
-
oid: TIMETRA-NAT-MIB::tmnxNatIsaMemberTable
value: TIMETRA-NAT-MIB::tmnxNatIsaMemberSessionsPrio
num_oid: '.1.3.6.1.4.1.6527.3.1.2.65.1.1.3.2.1.10.{{ $index }}'
descr: 'NAT ISA Member {{ $index }} Prioritized Sessions'
descr: 'NAT ISA {{ $index }} Prioritized Sessions'
index: 'tmnxNatIsaMemberSessionsPrio.{{ $index }}'
group: 'NAT ISA Resources'
frequency: