summaryrefslogtreecommitdiff
path: root/MIBS/arubaos/ARUBA-MGMT-MIB
diff options
context:
space:
mode:
authorDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
committerDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
commit98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch)
tree9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/arubaos/ARUBA-MGMT-MIB
downloadmibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz
mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/arubaos/ARUBA-MGMT-MIB')
-rw-r--r--MIBS/arubaos/ARUBA-MGMT-MIB157
1 files changed, 157 insertions, 0 deletions
diff --git a/MIBS/arubaos/ARUBA-MGMT-MIB b/MIBS/arubaos/ARUBA-MGMT-MIB
new file mode 100644
index 0000000..3a7b6bc
--- /dev/null
+++ b/MIBS/arubaos/ARUBA-MGMT-MIB
@@ -0,0 +1,157 @@
+--- ArubaOS 8.8.0.1_80393
+-- ***********************************************************
+-- ARUBA-MGMT-MIB
+--
+-- ************************************************************
+--
+
+ARUBA-MGMT-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
+ ObjectName, Integer32, Counter32, snmpModules
+ FROM SNMPv2-SMI
+ TruthValue, DisplayString, TestAndIncr, TimeStamp,
+ PhysAddress
+ FROM SNMPv2-TC
+-- TEXTUAL-CONVENTION, RowStatus, TimeStamp
+-- FROM SNMPv2-TC
+
+ ArubaEnableValue
+ FROM ARUBA-TC
+ arubaMgmt
+ FROM ARUBA-MIB
+
+ MODULE-COMPLIANCE, OBJECT-GROUP
+ FROM SNMPv2-CONF;
+
+
+-- The arubaMgmtMIB is derived from the Aruba Enterprise MIB
+-- branch under aruba.arubaMgmt as
+-- defined under. The absolute path from root is :
+-- .iso
+-- .org.dod
+-- .internet.private.enterprises
+-- .aruba.arubaMgmt
+--
+
+ arubaMgmtExtensions MODULE-IDENTITY
+ 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."
+ ::= { arubaMgmt 3 }
+
+ arubaMgmtGroup OBJECT IDENTIFIER ::= {arubaMgmtExtensions 1}
+
+-- arubaMgmtGroup begin
+
+ arubaGetTable OBJECT-TYPE
+ SYNTAX OBJECT IDENTIFIER
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ The object is used in the Aruba Management Protocol.
+ In a GET Table request the instance of the object
+ will contain the Table/Entry OID to be retrieved.
+ The value of the object in a GET Table response is the
+ table OID or Entry OID.
+ A Get request on this object returns <0.0>.
+ "
+ ::= { arubaMgmtGroup 1 }
+
+ arubaNumberOfRows OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ The object is used in the Aruba Management Protocol.
+ This Object is used to specify the number of Objects
+ to be retrieved in a GET Table request. Instance
+ of the Object will contain the number of Rows.
+ In the Response to the GET Table this object will
+ contain the number of Objects returned in the response.
+ A Get request on this object returns 0.
+ "
+ ::= { arubaMgmtGroup 2 }
+
+
+ arubaRowInstance OBJECT-TYPE
+ SYNTAX OBJECT IDENTIFIER
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ The object is used in the Aruba Management Protocol.
+ This Object is used to specify the Row Instance
+ in the GET Table Request. The response will start from the
+ Next Row. Instance of the Object is the row instance of the
+ request.
+ In the Response to the GET Table this object will
+ contain the Instance of Last row included in the response.
+ A Get request on this object returns <0.0> .
+ "
+ ::= { arubaMgmtGroup 3 }
+
+ arubaGetTableStatus OBJECT-TYPE
+ SYNTAX INTEGER{
+ endTable(1),
+ moreTable(2),
+ retrieveError(3),
+ noAmpSupport(4),
+ invalidColumnID(5),
+ resourceAllocationFailure(6)
+ }
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ The object is used in the Aruba Management Protocol.
+ This Object is used to give the status of the GetTable
+ request.
+ endTable -- indicates that there are no more rows in
+ the table.
+ moreTable -- indicates that there are some more rows
+ in the table.
+ retrieveError -- indicates an error occurred while
+ processing the getTable request.
+ (Will be expanded ).
+ A Get request on this object returns 0 .
+ "
+ ::= { arubaMgmtGroup 4 }
+
+ arubaNumberOfColumns OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ The object is used in the Aruba Management Protocol.
+ This Object is used to specify the number of Columns
+ per row in the Get Table Response.
+ A Get request on this object returns 0.
+ "
+ ::= { arubaMgmtGroup 5 }
+
+ arubaSwitchAMPSupport OBJECT-TYPE
+ SYNTAX ArubaEnableValue
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "
+ The object is used in the Aruba Management Protocol.
+ This Object is used to specify the number of Columns
+ per row in the Get Table Response.
+ A Get request on this object returns 0.
+ "
+ ::= { arubaMgmtGroup 6 }
+END