1-- ArubaOS 6.4.2.3-4.1.1.2_48114
2-- vim:set ts=4 sw=4:
3WLSX-TUNNELEDNODE-MIB DEFINITIONS ::= BEGIN
4
5   IMPORTS
6       TEXTUAL-CONVENTION FROM SNMPv2-TC
7
8       MODULE-IDENTITY,
9       OBJECT-TYPE,
10       snmpModules,
11       Integer32,
12       Unsigned32,
13	   Counter32,
14	   IpAddress,
15	   NOTIFICATION-TYPE
16           FROM SNMPv2-SMI
17
18       TDomain,
19       DisplayString,
20       PhysAddress,
21       TAddress,
22       TimeInterval,
23       RowStatus,
24       StorageType,
25       TestAndIncr,
26	   MacAddress,
27	   TruthValue
28           FROM SNMPv2-TC
29
30       OBJECT-GROUP
31           FROM SNMPv2-CONF
32		wlsxEnterpriseMibModules
33			FROM ARUBA-MIB;
34
35   wlsxTunneledNodeMIB MODULE-IDENTITY
36       LAST-UPDATED "0708060519Z"
37       ORGANIZATION "Aruba Wireless Networks"
38       CONTACT-INFO
39            "Postal:    1344 Crossman Avenue
40                        Sunnyvale, CA 94089
41            E-mail:     dl-support@arubanetworks.com
42            Phone:      +1 408 227 4500"
43       DESCRIPTION
44           "This MIB module defines MIB objects which provide
45            information about the Controller Transport Service (Cts) in the
46			Aruba controller."
47       REVISION        "0708060519Z"
48       DESCRIPTION
49           "The initial revision."
50       ::= { wlsxEnterpriseMibModules 17 }
51
52   wlsxTunneledNodeOpGroup     	OBJECT IDENTIFIER ::= { wlsxTunneledNodeMIB 1 }
53
54   wlsxTunneledNodeRequestTable OBJECT-TYPE
55	SYNTAX			SEQUENCE OF WlsxTunneledNodeRequestEntry
56	MAX-ACCESS		not-accessible
57	STATUS			current
58	DESCRIPTION
59		"
60		"
61	::= { wlsxTunneledNodeOpGroup 1 }
62
63	wlsxTunneledNodeRequestEntry OBJECT-TYPE
64		SYNTAX WlsxTunneledNodeRequestEntry
65		MAX-ACCESS not-accessible
66		STATUS	current
67		DESCRIPTION
68			""
69		INDEX { wlsxTunneledNodeMAC }
70		::= { wlsxTunneledNodeRequestTable 1 }
71
72	WlsxTunneledNodeRequestEntry ::=
73		SEQUENCE {
74            wlsxTunneledNodeMAC MacAddress,
75			wlsxTunneledNodeIp	IpAddress,
76			wlsxNumTunnels	    Integer32,
77            wlsxTunneledNodeType  Integer32
78		}
79
80    wlsxTunneledNodeMAC OBJECT-TYPE
81        SYNTAX  MacAddress
82        MAX-ACCESS  not-accessible
83        STATUS  current
84        DESCRIPTION
85            "
86            MAC address of the Tunneled Node
87            "
88        ::= { wlsxTunneledNodeRequestEntry 1 }
89
90	wlsxTunneledNodeIp OBJECT-TYPE
91		SYNTAX 	IpAddress
92		MAX-ACCESS read-only
93		STATUS	current
94		DESCRIPTION
95			"
96            IP address of the Tunneled Node
97			"
98		::= { wlsxTunneledNodeRequestEntry 2 }
99
100	wlsxNumTunnels OBJECT-TYPE
101		SYNTAX 	Integer32
102		MAX-ACCESS read-only
103		STATUS	current
104		DESCRIPTION
105			"
106				Number of tunnels originating from Tunneled Node
107			"
108		::= { wlsxTunneledNodeRequestEntry 3 }
109
110     wlsxTunneledNodeType OBJECT-TYPE
111        SYNTAX  INTEGER {
112                    others(1),
113                    corvina(2)
114                }
115        MAX-ACCESS read-only
116        STATUS  current
117        DESCRIPTION
118            "
119                Device type of the tunnel
120            "
121        ::= { wlsxTunneledNodeRequestEntry 4 }
122
123
124END
125