1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
--- ArubaOS 8.8.0.1_80393
-- vim:set ts=4 sw=4:
WLSX-ESI-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
ArubaESIServerMode,
ArubaESIServerStatus
FROM ARUBA-TC
OBJECT-GROUP
FROM SNMPv2-CONF
wlsxEnterpriseMibModules
FROM ARUBA-MIB;
wlsxESIMIB 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 External Services Interface (ESI) in the
Aruba controller."
REVISION "202008141745Z"
DESCRIPTION
"The initial revision."
::= { wlsxEnterpriseMibModules 10 }
wlsxESIConfigGroup OBJECT IDENTIFIER ::= { wlsxESIMIB 1 }
wlsxESIServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF WlsxESIServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table lists all ESI servers configured on the controller.
"
::= { wlsxESIConfigGroup 1 }
wlsxESIServerEntry OBJECT-TYPE
SYNTAX WlsxESIServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ESI Server Entry"
INDEX { esiServerName }
::= { wlsxESIServerTable 1 }
WlsxESIServerEntry ::=
SEQUENCE {
esiServerName DisplayString,
esiServerGroup DisplayString,
esiServerMode ArubaESIServerMode,
esiServerTrustedIP IpAddress,
esiServerUntrustedIP IpAddress,
esiServerTrustedSlot Integer32,
esiServerTrustedPort Integer32,
esiServerUntrustedSlot Integer32,
esiServerUntrustedPort Integer32,
esiServerStatus ArubaESIServerStatus,
esiServerTrustedModule Integer32,
esiServerUntrustedModule Integer32
}
esiServerName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the ESI Server"
::= { wlsxESIServerEntry 1 }
esiServerGroup OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the ESI server group to which this server belongs."
::= { wlsxESIServerEntry 2 }
esiServerMode OBJECT-TYPE
SYNTAX ArubaESIServerMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mode of this server"
::= { wlsxESIServerEntry 3 }
esiServerTrustedIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The trusted IP address of this server, or 0.0.0.0 if it is not set"
::= { wlsxESIServerEntry 4 }
esiServerUntrustedIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The untrusted IP address of this server, or 0.0.0.0 if it is
not set
"
::= { wlsxESIServerEntry 5 }
esiServerTrustedSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number of the trusted interface for this server."
::= { wlsxESIServerEntry 6 }
esiServerTrustedPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the trusted interface for this server."
::= { wlsxESIServerEntry 7 }
esiServerUntrustedSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number of the untrusted interface for this server."
::= { wlsxESIServerEntry 8 }
esiServerUntrustedPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the untrusted interface for this server."
::= { wlsxESIServerEntry 9 }
esiServerStatus OBJECT-TYPE
SYNTAX ArubaESIServerStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of this ESI server."
::= { wlsxESIServerEntry 10 }
esiServerTrustedModule OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module number of the trusted interface for this server."
::= { wlsxESIServerEntry 11 }
esiServerUntrustedModule OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module number of the untrusted interface for this server."
::= { wlsxESIServerEntry 12 }
END
|