Add new Aruba MIBS (#13042)

This commit is contained in:
Kevin Zink 2021-07-14 15:47:08 +02:00 committed by GitHub
parent 1267f78de8
commit 484bebfd66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 1035 additions and 330 deletions

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
AI-AP-MIB DEFINITIONS ::= BEGIN
IMPORTS
@ -32,16 +32,17 @@
FROM ARUBA-MIB;
aiMIB MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB is for managing Aruba Instant WLAN"
REVISION "0804160206Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { aiEnterpriseMibModules 1 }
@ -93,7 +94,17 @@ ArubaHTMode ::= TEXTUAL-CONVENTION
SYNTAX INTEGER {
none(1),
ht20(2),
ht40(3)
ht40(3),
vht20(4),
vht40(5),
vht80(6),
vht160(7),
vht80plus80(8),
he20(9),
he40(10),
he80(11),
he160(12),
he80plus80(13)
}
ArubaHTExtChannel ::= TEXTUAL-CONVENTION
@ -1202,7 +1213,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
::= { aiAccessPointEntry 1 }
aiAPName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1291,7 +1302,9 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
rsdb5g(2),
rsdb2g(3),
dual5gon(4),
dual5goff(5)
dual5goff(5),
split5goff(6),
split5gon(7)
}
MAX-ACCESS read-only
@ -1694,7 +1707,9 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
aiClientRxDataBytes Counter32,
aiClientRxRetries Counter32,
aiClientRxRate Integer32,
aiClientUptime TimeTicks
aiClientUptime TimeTicks,
aiClientPhyType ArubaPhyType,
aiClientHtMode ArubaHTMode
}
aiClientMACAddress OBJECT-TYPE
@ -1827,6 +1842,21 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
0 and uptime gets reset to 0."
::= { aiClientEntry 16 }
aiClientPhyType OBJECT-TYPE
SYNTAX ArubaPhyType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The wireless PHY type to which the client is associated, or 'wired'"
::= { aiClientEntry 17 }
aiClientHtMode OBJECT-TYPE
SYNTAX ArubaHTMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HT mode of this Client"
::= { aiClientEntry 18 }
--- Begining of voice client location entry
@ -2193,7 +2223,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
::= {aiTrapObjectsGroup 16 }
wlsxTrapAPLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
@ -2982,7 +3012,7 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
::= {aiTrapObjectsGroup 93 }
wlsxTrapAPName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
@ -3236,6 +3266,36 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
"
::= {aiTrapObjectsGroup 144 }
wlsxTrapAPUSBStatus OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
This object represents plug in or plug out status of an USB device.
"
::= {aiTrapObjectsGroup 147 }
wlsxTrapUSBVendorProductID OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
This object represents vendor ID or product ID of an USB device.
"
::= {aiTrapObjectsGroup 148 }
wlsxTrapAuthFailureReason OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
This object represents the reason for the authentication failure.
"
::= {aiTrapObjectsGroup 155 }
-- Definition of traps
wlsxNodeRateAnomaly NOTIFICATION-TYPE
@ -5126,4 +5186,35 @@ ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION
"
::= {aiTrapDefinitionsGroup 1274 }
wlsxAPUSBPLUGALARM NOTIFICATION-TYPE
OBJECTS {wlsxTrapTime, wlsxTrapAPMacAddress,wlsxTrapAPName,wlsxTrapUSBVendorProductID,wlsxTrapUSBVendorProductID,wlsxTrapAPUSBStatus}
STATUS current
DESCRIPTION
"
This trap indicates that an USB device is plugged in or out to an AP.
"
::= {aiTrapDefinitionsGroup 1277 }
wlsxClientRejectedByMaxClientCount NOTIFICATION-TYPE
OBJECTS {wlsxTrapTime, wlsxTrapUserPhyAddress,wlsxTrapAPBSSID,
wlsxTrapAPMacAddress,wlsxTrapAPName,
wlsxTrapEssid}
STATUS current
DESCRIPTION
"
This trap indicates the client is rejected by the max client count.
"
::= {aiTrapDefinitionsGroup 1284 }
wlsxClientPskAuthenticationFailed NOTIFICATION-TYPE
OBJECTS {wlsxTrapTime, wlsxTrapUserPhyAddress,wlsxTrapAuthFailureReason,
wlsxTrapAPBSSID,wlsxTrapAPMacAddress,wlsxTrapAPName,
wlsxTrapEssid}
STATUS current
DESCRIPTION
"
This trap indicates the client PSK Authentication Failed.
"
::= {aiTrapDefinitionsGroup 1285 }
END

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- ***********************************************************
-- ARUBA-MGMT-MIB
--
@ -36,13 +36,14 @@ ARUBA-MGMT-MIB DEFINITIONS ::= BEGIN
--
arubaMgmtExtensions MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"A MIB module for supporting the Aruba Management
Protocol. This protocol is an extension to SNMP."

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
ARUBA-MIB DEFINITIONS ::= BEGIN
IMPORTS
@ -134,6 +134,8 @@ mm-hw-1K OBJECT IDENTIFIER ::= { switchProducts 53 }
mm-hw-5K OBJECT IDENTIFIER ::= { switchProducts 54 }
mm-hw-10K OBJECT IDENTIFIER ::= { switchProducts 55 }
a9004 OBJECT IDENTIFIER ::= { switchProducts 56 }
a9012 OBJECT IDENTIFIER ::= { switchProducts 57 }
a9004-lte OBJECT IDENTIFIER ::= { switchProducts 58 }
--Undefined switch.
@ -499,6 +501,12 @@ ap534 OBJECT IDENTIFIER ::= {apProducts 101}
--ap535, this object is the SYSOID
ap535 OBJECT IDENTIFIER ::= {apProducts 102}
--ap387, this object is the SYSOID
ap387 OBJECT IDENTIFIER ::= {apProducts 104}
--ap303P, this object is the SYSOID
ap303P OBJECT IDENTIFIER ::= {apProducts 105}
--ap514, this object is the SYSOID
ap514 OBJECT IDENTIFIER ::= {apProducts 106}
@ -511,6 +519,51 @@ ap544 OBJECT IDENTIFIER ::= {apProducts 108}
--ap545, this object is the SYSOID
ap545 OBJECT IDENTIFIER ::= {apProducts 109}
--ap504, this object is the SYSOID
ap504 OBJECT IDENTIFIER ::= {apProducts 110}
--ap505, this object is the SYSOID
ap505 OBJECT IDENTIFIER ::= {apProducts 111}
--ap505H, this object is the SYSOID
ap505H OBJECT IDENTIFIER ::= {apProducts 112}
--ap574, this object is the SYSOID
ap574 OBJECT IDENTIFIER ::= {apProducts 113}
--ap575, this object is the SYSOID
ap575 OBJECT IDENTIFIER ::= {apProducts 114}
--ap577, this object is the SYSOID
ap577 OBJECT IDENTIFIER ::= {apProducts 115}
--ap518, this object is the SYSOID
ap518 OBJECT IDENTIFIER ::= {apProducts 116}
--ap503H, this object is the SYSOID
ap503H OBJECT IDENTIFIER ::= {apProducts 117}
--ap565, this object is the SYSOID
ap565 OBJECT IDENTIFIER ::= {apProducts 118}
--ap567, this object is the SYSOID
ap567 OBJECT IDENTIFIER ::= {apProducts 119}
--ap575EX, this object is the SYSOID
ap575EX OBJECT IDENTIFIER ::= {apProducts 120}
--ap577EX, this object is the SYSOID
ap577EX OBJECT IDENTIFIER ::= {apProducts 121}
--ap565EX, this object is the SYSOID
ap565EX OBJECT IDENTIFIER ::= {apProducts 122}
--ap567EX, this object is the SYSOID
ap567EX OBJECT IDENTIFIER ::= {apProducts 123}
--ap375ATEX, this object is the SYSOID
ap375ATEX OBJECT IDENTIFIER ::= {apProducts 124}
--Undefined ap.
apUndefined OBJECT IDENTIFIER ::= { apProducts 9999}
@ -529,6 +582,12 @@ ecsENSM OBJECT IDENTIFIER ::= {partnerProducts 4}
--Amigopod
amigopodProducts OBJECT IDENTIFIER ::= { products 5 }
-- ClearPass
clearpassProducts OBJECT IDENTIFIER ::= { products 6 }
-- ClearPass Policy Manager
clearpass OBJECT IDENTIFIER ::= { clearpassProducts 1 }
-- List of all the Enterprise MIB Modules.
-- common node will contain all the objects which can be shared between

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
ARUBA-TC DEFINITIONS ::= BEGIN
@ -940,7 +940,8 @@ ArubaThresholdResourceType ::= TEXTUAL-CONVENTION
totalTunnelCapacity(3),
userCapacity(4),
noofAps(5) ,
noofLocals(6)
noofLocals(6),
noofVaps(7)
}
ArubaStackState ::= TEXTUAL-CONVENTION
@ -1145,4 +1146,17 @@ ArubaDual5GMode ::= TEXTUAL-CONVENTION
notApplicable(3)
}
ArubaSplit5GMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Split 5GHz Operating Mode
"
SYNTAX INTEGER {
disabled(0),
enabled(1),
unknown(2),
notApplicable(3)
}
END

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
WLSR-AP-MIB DEFINITIONS ::= BEGIN
IMPORTS
@ -31,18 +31,19 @@
FROM ARUBA-MIB;
wlsrMIB MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB is for managing the
Access Points and Air Monitors.
"
REVISION "0804160206Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsrEnterpriseMibModules 1 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-AUTH-MIB DEFINITIONS ::= BEGIN
@ -39,18 +39,19 @@ WLSX-AUTH-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-TC;
wlsxAuthMIB MODULE-IDENTITY
LAST-UPDATED "0611272030Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the authentication servers known to an
Aruba controller."
REVISION "0611272030Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 8 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-CTS-MIB DEFINITIONS ::= BEGIN
@ -33,18 +33,19 @@ WLSX-CTS-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxCtsMIB MODULE-IDENTITY
LAST-UPDATED "0708060518Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the Controller Transport Service (Cts) in the
Aruba controller."
REVISION "0708060518Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 11 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-ESI-MIB DEFINITIONS ::= BEGIN
@ -37,18 +37,19 @@ WLSX-ESI-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxESIMIB MODULE-IDENTITY
LAST-UPDATED "1001261806Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the External Services Interface (ESI) in the
Aruba controller."
REVISION "1001261806Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 10 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-HA-MIB DEFINITIONS ::= BEGIN
@ -38,17 +38,18 @@ WLSX-HA-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-TC;
wlsxHaMIB MODULE-IDENTITY
LAST-UPDATED "1606072030Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about High Availability on Aruba controller."
REVISION "1606072030Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 20 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-IFEXT-MIB DEFINITIONS ::= BEGIN
@ -48,18 +48,19 @@ WLSX-IFEXT-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxIfExtMIB MODULE-IDENTITY
LAST-UPDATED "201207120000Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
System level information about the Aruba controller."
REVISION "201207120000Z" -- 12th July, 2012
REVISION "202008141745Z"
DESCRIPTION
"Deprecated wlsxIfExtPortTable and added new table
wlsxIfExtNPortTable"

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-MESH-MIB DEFINITIONS ::= BEGIN
@ -40,18 +40,19 @@ WLSX-MESH-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxMeshMIB MODULE-IDENTITY
LAST-UPDATED "0708060518Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provides
information about Mesh portal and topology
in the Aruba controller."
REVISION "0708060518Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 13 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-MOBILITY-MIB DEFINITIONS ::= BEGIN
@ -43,18 +43,19 @@ WLSX-MOBILITY-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxMobilityMIB MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the mobility subsystem in the
Aruba controller."
REVISION "0804160206Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 9 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-MON-MIB DEFINITIONS ::= BEGIN
@ -46,19 +46,20 @@ WLSX-MON-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxMonMIB MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"
This MIB module defines MIB objects which provide
information about the Monitored Access Points.
"
REVISION "0804160206Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 6 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-RS-MIB DEFINITIONS ::= BEGIN
@ -65,17 +65,18 @@ WLSX-RS-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxRSMIB MODULE-IDENTITY
LAST-UPDATED "1106012012Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about remote user and node state."
REVISION "1106012012Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 16 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim: set ts=4 sw=4:
WLSX-SNR-MIB DEFINITIONS ::= BEGIN
@ -37,20 +37,21 @@ WLSX-SNR-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxSNRMIB MODULE-IDENTITY
LAST-UPDATED "0611272030Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"
This MIB module defines MIB objects which provide
information about the Wireless Management System (WMS) in the
Aruba controller.
"
REVISION "0611272030Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 7 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-STATS-MIB DEFINITIONS ::= BEGIN
@ -33,18 +33,19 @@ WLSX-STATS-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxStatsMIB MODULE-IDENTITY
LAST-UPDATED "0712100006Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the Statistics in the
Aruba controller."
REVISION "0712100006Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 15 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-SWITCH-MIB DEFINITIONS ::= BEGIN
@ -31,18 +31,19 @@
wlsxEnterpriseMibModules
FROM ARUBA-MIB;
wlsxSwitchMIB MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
wlsxSwitchMIB MODULE-IDENTITY
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
System level information about the Aruba switches."
REVISION "0804160206Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 1 }
@ -50,6 +51,7 @@
wlsxSystemXGroup OBJECT IDENTIFIER ::= { wlsxSwitchMIB 1 }
wlsxUserInfoGroup OBJECT IDENTIFIER ::= { wlsxSwitchMIB 2 }
wlsxAccessPointInfoGroup OBJECT IDENTIFIER ::= { wlsxSwitchMIB 3 }
wlsxInstantAccessPointInfoGroup OBJECT IDENTIFIER ::= { wlsxSwitchMIB 5 }
wlsxSwitchTraps OBJECT IDENTIFIER ::= { wlsxSwitchMIB 100 }
-- wlsxSystemXGroup contains objects to describe a switch.
@ -497,7 +499,7 @@
::= { wlsxSystemXGroup 12 }
wlsxSwitchIpv6 OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..45))
SYNTAX DisplayString(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -1598,6 +1600,147 @@
"
::= { wlsxSwitchAccessPointStatsEntry 17 }
-- New wlsxInstantAccessPointInfoGroup contains the information related to IAPs.
-- This table is valid only, when queried from the controller.
wlsxIapTotalNumBranches OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of branches in IAP"
::= { wlsxInstantAccessPointInfoGroup 1 }
wlsxIapTotalNumBranchesUp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of branches with status Up."
::= { wlsxInstantAccessPointInfoGroup 2 }
wlsxIapTotalNumBranchesDown OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of branches with status Down"
::= { wlsxInstantAccessPointInfoGroup 3 }
-- IAP Table
wlsxIapBranchTable OBJECT-TYPE
SYNTAX SEQUENCE OF IapBranchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table lists all the information related to IAP branches.
"
::= { wlsxInstantAccessPointInfoGroup 4 }
wlsxIapBranchEntry OBJECT-TYPE
SYNTAX IapBranchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IAP branch entry"
INDEX {iapBranchKey}
::= { wlsxIapBranchTable 1 }
IapBranchListEntry ::=
SEQUENCE {
iapBranchKey DisplayString,
iapBranchName DisplayString,
iapBranchVcMacAddress MacAddress,
iapBranchStatus INTEGER,
iapBranchInnerIpAddressType INTEGER,
iapBranchInnerIpAddress DisplayString,
iapBranchAssignedSubnet DisplayString,
iapBranchAssignedVlan OCTET STRING
}
iapBranchKey OBJECT-TYPE
SYNTAX DisplayString(SIZE(65))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Key of the IAP branch."
::= { wlsxIapBranchEntry 1 }
iapBranchName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..129))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Name of the IAP branch."
::= { wlsxIapBranchEntry 2 }
iapBranchVcMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MAC address of the Virtual Controller of the branch."
::= { wlsxIapBranchEntry 3 }
iapBranchStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the branch"
::= { wlsxIapBranchEntry 4 }
iapBranchInnerIpAddressType OBJECT-TYPE
SYNTAX INTEGER {
ipv4(1),
ipv6(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Inner IP Address type IPv4 or IPv6 of the branch."
::= { wlsxIapBranchEntry 5 }
iapBranchInnerIpAddress OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..45))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Inner IPv4/IPv6 Address of the branch."
::= { wlsxIapBranchEntry 6 }
iapBranchAssignedSubnet OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Assigned subnets of the branch."
::= { wlsxIapBranchEntry 7 }
iapBranchAssignedVlan OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Assigned vlans of the branch.
A string of octets containing one bit per VLAN for a
total of 4096 VLANs in the management domain.
The most significant bit of the octet string is the
lowest value VLAN of 4096 VLANs.
By setting the bit(1) we indicate that the vlan is part of the
assigned vlans.
The most significant bit of the bitmap is transmitted
first. Note that if the length of this string is less than
512 octets, any 'missing' octets are assumed to contain
the value zero.
"
::= { wlsxIapBranchEntry 8 }
-- wlsxSwitchTraps
-- This group defines all the traps related to the switch platform.
wlsxSwitchTrapObjectsGroup OBJECT IDENTIFIER ::= { wlsxSwitchTraps 100 }
@ -1907,7 +2050,7 @@ wlsxStationBlackListReasonStr OBJECT-TYPE
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
"
This object is used in the traps to indicate the
type of Blacklist reason.
"
@ -2338,6 +2481,34 @@ wlsxWebCCLicenseEnforcement NOTIFICATION-TYPE
"
::= { wlsxSwitchTraps 1045 }
wlsxLowOnFlash1Space NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"
A trap which indicates that the switch is running low on flash1 space.
"
::= { wlsxSwitchTraps 1046 }
wlsxSwitchIPv6Changed NOTIFICATION-TYPE
OBJECTS {wlsxSwitchIpv6}
STATUS current
DESCRIPTION
"A trap which indicates that the switch IPv6 address has changed."
::= { wlsxSwitchTraps 1047 }
wlsxDot1xThresholdLimitHit NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A Trap which indicates that the controller is running on high optimum limit."
::= { wlsxSwitchTraps 1048 }
wlsxDot1xTotalLimitHit NOTIFICATION-TYPE
STATUS current
DESCRIPTION
" A Trap which indicates that the controller is running on full optimum limit."
::= { wlsxSwitchTraps 1049 }
END

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
@ -38,17 +38,18 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxSystemExtMIB MODULE-IDENTITY
LAST-UPDATED "0812112108Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
System level information about the Aruba controller."
REVISION "0812112108Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 2 }
@ -703,7 +704,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
wlsxSysExtSwitchListTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
STATUS current
DESCRIPTION
"This Table will list all the controllers in the Aruba Domain.
It will be populated only on the master controller. Local controllers
@ -715,7 +716,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
wlsxSysExtSwitchListEntry OBJECT-TYPE
SYNTAX WlsxSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
STATUS current
DESCRIPTION
"Switch List Entry"
INDEX { sysExtSwitchIPAddress}
@ -735,7 +736,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
STATUS current
DESCRIPTION
"
IP Address of the controller.
@ -745,7 +746,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchRole OBJECT-TYPE
SYNTAX ArubaSwitchRole
MAX-ACCESS read-only
STATUS current
STATUS current
DESCRIPTION
"
Role of the controller.
@ -755,7 +756,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
STATUS current
DESCRIPTION
"
Location of the controller
@ -765,7 +766,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchSWVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
STATUS current
DESCRIPTION
"
Software version the controller is running.
@ -775,7 +776,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
STATUS current
DESCRIPTION
"
Status of the controller.
@ -785,7 +786,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
STATUS current
DESCRIPTION
"
Host name of the controller.
@ -795,7 +796,7 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
sysExtSwitchSerNo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
STATUS current
DESCRIPTION
"
Serial number of the controller.
@ -1192,6 +1193,122 @@ WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN
::= { wlsxSystemExtGroup 39 }
-- New Switch List Table contains all the controllers in the domain. This table is
-- valid only, when queried from the master controller.
wlsxNSysExtSwitchListTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxNSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This new Table will list all the controllers in the Aruba Domain.
It will be populated only on the master controller. Local controllers
return empty table. It is a common table for IPv4 and IPv6 Address of
the controller.
"
::= { wlsxSystemExtGroup 40 }
wlsxNSysExtSwitchListEntry OBJECT-TYPE
SYNTAX WlsxNSysExtSwitchListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"New Switch List Entry"
INDEX { sysExtNSwitchIPAddressType, sysExtNSwitchIPAddress}
::= { wlsxNSysExtSwitchListTable 1 }
WlsxNSysExtSwitchListEntry ::=
SEQUENCE {
sysExtNSwitchIPAddressType Integer32,
sysExtNSwitchIPAddress DisplayString(SIZE(0..45)),
sysExtNSwitchRole ArubaSwitchRole,
sysExtNSwitchLocation DisplayString,
sysExtNSwitchSWVersion DisplayString,
sysExtNSwitchStatus ArubaActiveState,
sysExtNSwitchName DisplayString,
sysExtNSwitchSerNo DisplayString
}
sysExtNSwitchIPAddressType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Type of IP Address of the controller, either IPv4 / IPv6.
"
::= { wlsxNSysExtSwitchListEntry 1 }
sysExtNSwitchIPAddress OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..45))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
IPv4 or IPv6 Address of the controller.
"
::= { wlsxNSysExtSwitchListEntry 2 }
sysExtNSwitchRole OBJECT-TYPE
SYNTAX ArubaSwitchRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Role of the controller.
"
::= { wlsxNSysExtSwitchListEntry 3 }
sysExtNSwitchLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Location of the controller
"
::= { wlsxNSysExtSwitchListEntry 4 }
sysExtNSwitchSWVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Software version the controller is running.
"
::= { wlsxNSysExtSwitchListEntry 5 }
sysExtNSwitchStatus OBJECT-TYPE
SYNTAX ArubaActiveState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Status of the controller.
"
::= { wlsxNSysExtSwitchListEntry 6 }
sysExtNSwitchName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Host name of the controller.
"
::= { wlsxNSysExtSwitchListEntry 7 }
sysExtNSwitchSerNo OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Serial number of the controller.
"
::= { wlsxNSysExtSwitchListEntry 8 }
END

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-TUNNELEDNODE-MIB DEFINITIONS ::= BEGIN
@ -32,19 +32,20 @@ WLSX-TUNNELEDNODE-MIB DEFINITIONS ::= BEGIN
wlsxEnterpriseMibModules
FROM ARUBA-MIB;
wlsxTunneledNodeMIB MODULE-IDENTITY
LAST-UPDATED "0708060519Z"
ORGANIZATION "Aruba Wireless Networks"
wlsxTunneledNodeMIB MODULE-IDENTITY
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1344 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the Controller Transport Service (Cts) in the
Aruba controller."
REVISION "0708060519Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 17 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-USER-MIB DEFINITIONS ::= BEGIN
@ -44,17 +44,18 @@
FROM WLSX-WLAN-MIB;
wlsxUserMIB MODULE-IDENTITY
LAST-UPDATED "1001261806Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the users in an Aruba controller."
REVISION "1001261806Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 4 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-USER6-MIB DEFINITIONS ::= BEGIN
@ -45,17 +45,18 @@
FROM WLSX-WLAN-MIB;
wlsxUser6MIB MODULE-IDENTITY
LAST-UPDATED "1001261806Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the IPv6 users in an Aruba controller."
REVISION "1001261806Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 14 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-VOICE-MIB DEFINITIONS ::= BEGIN
@ -47,18 +47,19 @@ WLSX-VOICE-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxVoiceMIB MODULE-IDENTITY
LAST-UPDATED "0804160206Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about Voice call status and call detail reporting
in the Aruba controller."
REVISION "0804160206Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 12 }

View File

@ -1,4 +1,4 @@
--- ArubaOS 8.5.0.0_70258
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
@ -57,18 +57,19 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
FROM ARUBA-MIB;
wlsxWlanMIB MODULE-IDENTITY
LAST-UPDATED "1001261806Z"
ORGANIZATION "Aruba Wireless Networks"
LAST-UPDATED "202008141745Z"
ORGANIZATION "Aruba, a Hewlett Packard Enterprise company"
CONTACT-INFO
"Postal: 1322 Crossman Avenue
Sunnyvale, CA 94089
E-mail: dl-support@arubanetworks.com
Phone: +1 408 227 4500"
"Postal: 3333 Scott Blvd,
Santa Clara, CA 95054
E-mail: aruba-ext-eng-reg@hpe.com
Phone: 408 227 4500
Fax: 408 752 0626"
DESCRIPTION
"This MIB module defines MIB objects which provide
information about the Wireless Management System (WMS) in the
Aruba Controller."
REVISION "1001261806Z"
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 5 }
@ -233,7 +234,8 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
wlanAPdot11aAntennaGain10x Integer32,
wlanAPdot11gAntennaGain10x Integer32,
wlanAPDual5GMode ArubaEnableValue,
wlanAPActiveIpAddress DisplayString(SIZE(0..45))
wlanAPActiveIpAddress DisplayString(SIZE(0..45)),
wlanAPSplit5GMode ArubaSplit5GMode
}
wlanAPMacAddress OBJECT-TYPE
@ -735,6 +737,16 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
"
::= { wlsxWlanAPEntry 49 }
wlanAPSplit5GMode OBJECT-TYPE
SYNTAX ArubaSplit5GMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Split 5GHz Operating Mode
"
::= { wlsxWlanAPEntry 50 }
-- Radio table is indexed by the Mac Address of the AP and the type of the
-- radio.
@ -4085,9 +4097,9 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
WlanAPRadioStatsEntry ::=
SEQUENCE {
wlanAPRadioRxPkts Counter32,
wlanAPRadioRxBytes Counter32,
wlanAPRadioRxBytes Counter64,
wlanAPRadioTxPkts Counter32,
wlanAPRadioTxBytes Counter32,
wlanAPRadioTxBytes Counter64,
wlanAPRadioTxDroppedPkts Counter32,
wlanAPRadioTxErrorPkts Counter32,
wlanAPRadioRxRate Gauge32,
@ -4113,7 +4125,7 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
::= { wlsxWlanAPRadioStatsEntry 1 }
wlanAPRadioRxBytes OBJECT-TYPE
SYNTAX Counter32
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -4135,7 +4147,7 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
::= { wlsxWlanAPRadioStatsEntry 3 }
wlanAPRadioTxBytes OBJECT-TYPE
SYNTAX Counter32
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -4287,11 +4299,11 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
wlanAPWiredPortRxPkts Counter32,
wlanAPWiredPortRxDroppedPkts Counter32,
wlanAPWiredPortRxErrors Counter32,
wlanAPWiredPortRxBytes Counter32,
wlanAPWiredPortRxBytes Counter64,
wlanAPWiredPortTxPkts Counter32,
wlanAPWiredPortTxDroppedPkts Counter32,
wlanAPWiredPortTxErrors Counter32,
wlanAPWiredPortTxBytes Counter32,
wlanAPWiredPortTxBytes Counter64,
wlanAPWiredPortRxRate Gauge32,
wlanAPWiredPortTxRate Gauge32,
wlanAPWiredPortSpeed ArubaPortSpeed
@ -4351,7 +4363,7 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
::= { wlsxWlanAPWiredPortStatsEntry 5 }
wlanAPWiredPortRxBytes OBJECT-TYPE
SYNTAX Counter32
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
@ -4396,7 +4408,7 @@ WLSX-WLAN-MIB DEFINITIONS ::= BEGIN
wlanAPWiredPortTxBytes OBJECT-TYPE
SYNTAX Counter32
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION