summaryrefslogtreecommitdiff
path: root/MIBS/arubaos/WLSX-TUNNELEDNODE-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/WLSX-TUNNELEDNODE-MIB
downloadmibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz
mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/arubaos/WLSX-TUNNELEDNODE-MIB')
-rw-r--r--MIBS/arubaos/WLSX-TUNNELEDNODE-MIB125
1 files changed, 125 insertions, 0 deletions
diff --git a/MIBS/arubaos/WLSX-TUNNELEDNODE-MIB b/MIBS/arubaos/WLSX-TUNNELEDNODE-MIB
new file mode 100644
index 0000000..9b892b9
--- /dev/null
+++ b/MIBS/arubaos/WLSX-TUNNELEDNODE-MIB
@@ -0,0 +1,125 @@
+--- ArubaOS 8.8.0.1_80393
+-- vim:set ts=4 sw=4:
+WLSX-TUNNELEDNODE-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ TEXTUAL-CONVENTION FROM SNMPv2-TC
+
+ MODULE-IDENTITY,
+ OBJECT-TYPE,
+ snmpModules,
+ Integer32,
+ Unsigned32,
+ Counter32,
+ IpAddress,
+ NOTIFICATION-TYPE
+ FROM SNMPv2-SMI
+
+ TDomain,
+ DisplayString,
+ PhysAddress,
+ TAddress,
+ TimeInterval,
+ RowStatus,
+ StorageType,
+ TestAndIncr,
+ MacAddress,
+ TruthValue
+ FROM SNMPv2-TC
+
+ OBJECT-GROUP
+ FROM SNMPv2-CONF
+ wlsxEnterpriseMibModules
+ FROM ARUBA-MIB;
+
+ wlsxTunneledNodeMIB 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
+ "This MIB module defines MIB objects which provide
+ information about the Controller Transport Service (Cts) in the
+ Aruba controller."
+ REVISION "202008141745Z"
+ DESCRIPTION
+ "The initial revision."
+ ::= { wlsxEnterpriseMibModules 17 }
+
+ wlsxTunneledNodeOpGroup OBJECT IDENTIFIER ::= { wlsxTunneledNodeMIB 1 }
+
+ wlsxTunneledNodeRequestTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF WlsxTunneledNodeRequestEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ "
+ ::= { wlsxTunneledNodeOpGroup 1 }
+
+ wlsxTunneledNodeRequestEntry OBJECT-TYPE
+ SYNTAX WlsxTunneledNodeRequestEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ ""
+ INDEX { wlsxTunneledNodeMAC }
+ ::= { wlsxTunneledNodeRequestTable 1 }
+
+ WlsxTunneledNodeRequestEntry ::=
+ SEQUENCE {
+ wlsxTunneledNodeMAC MacAddress,
+ wlsxTunneledNodeIp IpAddress,
+ wlsxNumTunnels Integer32,
+ wlsxTunneledNodeType Integer32
+ }
+
+ wlsxTunneledNodeMAC OBJECT-TYPE
+ SYNTAX MacAddress
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "
+ MAC address of the Tunneled Node
+ "
+ ::= { wlsxTunneledNodeRequestEntry 1 }
+
+ wlsxTunneledNodeIp OBJECT-TYPE
+ SYNTAX IpAddress
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "
+ IP address of the Tunneled Node
+ "
+ ::= { wlsxTunneledNodeRequestEntry 2 }
+
+ wlsxNumTunnels OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "
+ Number of tunnels originating from Tunneled Node
+ "
+ ::= { wlsxTunneledNodeRequestEntry 3 }
+
+ wlsxTunneledNodeType OBJECT-TYPE
+ SYNTAX INTEGER {
+ others(1),
+ corvina(2)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "
+ Device type of the tunnel
+ "
+ ::= { wlsxTunneledNodeRequestEntry 4 }
+
+
+END