-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfByod.mib
453 lines (389 loc) · 15.7 KB
/
hpicfByod.mib
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
HP-ICF-BYOD-MIB DEFINITIONS ::= BEGIN
IMPORTS
hpSwitch
FROM HP-ICF-OID
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
TimeTicks, Unsigned32, OBJECT-TYPE, Counter32, MODULE-IDENTITY
FROM SNMPv2-SMI
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
RowStatus, DisplayString
FROM SNMPv2-TC;
hpicfByodMIB MODULE-IDENTITY
LAST-UPDATED "201405190900Z" --May 19, 2014
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION
"This MIB module describes objects for managing
the Bring Your Own Device feature of devices
in the HP Integrated Communication Facility
product line."
REVISION "201405190900Z" -- May 19, 2014
DESCRIPTION
"Initial version of BYOD MIB module."
::= { hpSwitch 106 }
---
--- Node definitions
---
hpicfByodNotifications OBJECT IDENTIFIER ::= { hpicfByodMIB 0 }
hpicfByodObjects OBJECT IDENTIFIER ::= { hpicfByodMIB 1 }
hpicfByodConformance OBJECT IDENTIFIER ::= { hpicfByodMIB 2 }
hpicfByodConfigObjects OBJECT IDENTIFIER ::= { hpicfByodObjects 1 }
hpicfByodStatsObjects OBJECT IDENTIFIER ::= { hpicfByodObjects 2 }
---
--- Scalar configuration objects
---
hpicfByodScalarConfig OBJECT IDENTIFIER ::= { hpicfByodConfigObjects 1 }
---
--- Portal table
---
hpicfByodPortalTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfByodPortalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of portal servers that BYOD clients can be redirected to.
The total number of servers supported is implementation-dependent."
::= { hpicfByodConfigObjects 2 }
hpicfByodPortalEntry OBJECT-TYPE
SYNTAX HpicfByodPortalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the hpicfByodPortalTable."
INDEX { hpicfByodPortalName }
::= { hpicfByodPortalTable 1 }
HpicfByodPortalEntry ::= SEQUENCE {
hpicfByodPortalName DisplayString,
hpicfByodPortalVlanId Unsigned32,
hpicfByodPortalUrl DisplayString,
hpicfByodPortalInetAddrType InetAddressType,
hpicfByodPortalInetAddr InetAddress,
hpicfByodPortalDnsCacheTime TimeTicks,
hpicfByodPortalRowStatus RowStatus
}
hpicfByodPortalName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object provides the BYOD server name."
::= { hpicfByodPortalEntry 1 }
hpicfByodPortalVlanId OBJECT-TYPE
SYNTAX Unsigned32 (0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the VLAN ID this portal is associated with.
Clients on the specified VLAN will be redirected to this portal.
A value of 0 indicates that this portal is not associated with
any VLAN."
DEFVAL { 0 }
::= { hpicfByodPortalEntry 2 }
hpicfByodPortalUrl OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..127))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the BYOD server URL to redirect clients to."
::= { hpicfByodPortalEntry 3 }
hpicfByodPortalInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the address family of the value in hpicfByodPortalInetAddr."
::= { hpicfByodPortalEntry 4 }
hpicfByodPortalInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the IP address of the BYOD server specified in
hpicfByodPortalUrl."
::= { hpicfByodPortalEntry 5 }
hpicfByodPortalDnsCacheTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the DNS cache time of this portal in seconds."
DEFVAL { 15 }
::= { hpicfByodPortalEntry 6 }
hpicfByodPortalRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry. The following columns must be set
before the row can be made active:
- hpicfByodPortalUrl"
::= { hpicfByodPortalEntry 7 }
---
--- Free rule table
---
hpicfByodFreeRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfByodFreeRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of rules to permit other valid traffic such as DNS and
DHCP on a BYOD VLAN. The total number of entries allowed is
implementation-dependent."
::= { hpicfByodConfigObjects 3 }
hpicfByodFreeRuleEntry OBJECT-TYPE
SYNTAX HpicfByodFreeRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the hpicfByodFreeRuleTable."
INDEX { hpicfByodFreeRuleNumber }
::= { hpicfByodFreeRuleTable 1 }
HpicfByodFreeRuleEntry ::= SEQUENCE {
hpicfByodFreeRuleNumber Unsigned32,
hpicfByodFreeRuleSourceProtocol INTEGER,
hpicfByodFreeRuleSourcePort Unsigned32,
hpicfByodFreeRuleSourceVlanId Unsigned32,
hpicfByodFreeRuleSourceInetAddrType InetAddressType,
hpicfByodFreeRuleSourceInetAddr InetAddress,
hpicfByodFreeRuleSourceInetAddrMask InetAddress,
hpicfByodFreeRuleDestinationProtocol INTEGER,
hpicfByodFreeRuleDestinationPort Unsigned32,
hpicfByodFreeRuleDestinationInetAddrType InetAddressType,
hpicfByodFreeRuleDestinationInetAddr InetAddress,
hpicfByodFreeRuleDestinationInetAddrMask InetAddress,
hpicfByodFreeRuleRowStatus RowStatus
}
hpicfByodFreeRuleNumber OBJECT-TYPE
SYNTAX Unsigned32(0..59)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object provides the rule number."
::= { hpicfByodFreeRuleEntry 1 }
hpicfByodFreeRuleSourceProtocol OBJECT-TYPE
SYNTAX INTEGER {
tcp(1),
udp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the source protocol to permit."
::= { hpicfByodFreeRuleEntry 2 }
hpicfByodFreeRuleSourcePort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the TCP or UDP source port to permit."
::= { hpicfByodFreeRuleEntry 3 }
hpicfByodFreeRuleSourceVlanId OBJECT-TYPE
SYNTAX Unsigned32 (1..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the source VLAN ID to permit."
::= { hpicfByodFreeRuleEntry 4 }
hpicfByodFreeRuleSourceInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the address family of the value in hpicfByodFreeRuleSourceInetAddr.
Some agents may limit the type to IPv4 only."
::= { hpicfByodFreeRuleEntry 5 }
hpicfByodFreeRuleSourceInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the source IP address to permit."
::= { hpicfByodFreeRuleEntry 6 }
hpicfByodFreeRuleSourceInetAddrMask OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the source IP address mask to apply to
hpicfByodFreeRuleSourceInetAddr."
::= { hpicfByodFreeRuleEntry 7 }
hpicfByodFreeRuleDestinationProtocol OBJECT-TYPE
SYNTAX INTEGER {
tcp(1),
udp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the destination protocol to permit."
::= { hpicfByodFreeRuleEntry 8 }
hpicfByodFreeRuleDestinationPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the TCP or UDP destination port to permit."
::= { hpicfByodFreeRuleEntry 9 }
hpicfByodFreeRuleDestinationInetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the address family of the value in
hpicfByodFreeRuleDestinationInetAddr. Some agents may
limit the type to IPv4 only."
::= { hpicfByodFreeRuleEntry 10 }
hpicfByodFreeRuleDestinationInetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the destination IP address to permit."
::= { hpicfByodFreeRuleEntry 11 }
hpicfByodFreeRuleDestinationInetAddrMask OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object provides the destination IP address mask to apply to
hpicfByodFreeRuleDestinationInetAddr."
::= { hpicfByodFreeRuleEntry 12 }
hpicfByodFreeRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry. The following columns must be set
before the row can be made active:
- hpicfByodFreeRuleSourceVlanId
- hpicfByodFreeRuleSourceInetAddrType
- hpicfByodFreeRuleSourceInetAddr
- hpicfByodFreeRuleSourceInetAddrMask
- hpicfByodFreeRuleDestinationInetAddrType
- hpicfByodFreeRuleDestinationInetAddr
- hpicfByodFreeRuleDestinationInetAddrMask"
::= { hpicfByodFreeRuleEntry 13 }
---
--- Scalar statistics
---
hpicfByodScalarStats OBJECT IDENTIFIER ::= { hpicfByodStatsObjects 1 }
hpicfByodTcpStatsTotalOpen OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the cumulative total of TCP connections opened."
::= { hpicfByodScalarStats 1 }
hpicfByodTcpStatsResetConn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the cumulative total number of TCP connections reset with RST."
::= { hpicfByodScalarStats 2 }
hpicfByodTcpStatsCurrentOpen OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the number of TCP connections currently open."
::= { hpicfByodScalarStats 3 }
hpicfByodTcpStatsPktsReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the total number of TCP packets received."
::= { hpicfByodScalarStats 4 }
hpicfByodTcpStatsPktsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the total number of TCP packets sent."
::= { hpicfByodScalarStats 5 }
hpicfByodTcpStatsHttpPktsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the total number of HTTP packets sent."
::= { hpicfByodScalarStats 8 }
hpicfByodTcpStatsStateSynRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the number of TCP connections currently
in the SYN_RCVD state."
::= { hpicfByodScalarStats 9 }
hpicfByodTcpStatsStateEstablished OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the number of TCP connections currently
in the ESTABLISHED state."
::= { hpicfByodScalarStats 10 }
--- ------------------------------------------------------------
--- Conformance
--- ------------------------------------------------------------
hpicfByodCompliances OBJECT IDENTIFIER ::= { hpicfByodConformance 1 }
hpicfByodGroups OBJECT IDENTIFIER ::= { hpicfByodConformance 2 }
hpicfByodCompliance1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement"
MODULE -- this module
MANDATORY-GROUPS {
hpicfByodConfigGroup,
hpicfByodStatsGroup
}
::= { hpicfByodCompliances 1 }
--- units of conformance
hpicfByodConfigGroup OBJECT-GROUP
OBJECTS {
hpicfByodPortalVlanId,
hpicfByodPortalUrl,
hpicfByodPortalInetAddrType,
hpicfByodPortalInetAddr,
hpicfByodPortalDnsCacheTime,
hpicfByodPortalRowStatus,
hpicfByodFreeRuleSourceProtocol,
hpicfByodFreeRuleSourcePort,
hpicfByodFreeRuleSourceVlanId,
hpicfByodFreeRuleSourceInetAddrType,
hpicfByodFreeRuleSourceInetAddr,
hpicfByodFreeRuleSourceInetAddrMask,
hpicfByodFreeRuleDestinationProtocol,
hpicfByodFreeRuleDestinationPort,
hpicfByodFreeRuleDestinationInetAddrType,
hpicfByodFreeRuleDestinationInetAddr,
hpicfByodFreeRuleDestinationInetAddrMask,
hpicfByodFreeRuleRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing configuration and status for
client redirection to a portal server."
::= { hpicfByodGroups 1 }
hpicfByodStatsGroup OBJECT-GROUP
OBJECTS {
hpicfByodTcpStatsTotalOpen,
hpicfByodTcpStatsResetConn,
hpicfByodTcpStatsCurrentOpen,
hpicfByodTcpStatsPktsReceived,
hpicfByodTcpStatsPktsSent,
hpicfByodTcpStatsHttpPktsSent,
hpicfByodTcpStatsStateSynRcvd,
hpicfByodTcpStatsStateEstablished
}
STATUS current
DESCRIPTION
"A collection of objects providing statistics about
current sessions for Byod."
::= { hpicfByodGroups 2 }
END