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
|
-- *****************************************************************************
-- Juniper-DHCPv6-MIB
--
-- Juniper Networks Enterprise MIB
-- DHCPv6 MIB
--
-- Copyright (c) 2003 Juniper Networks, Inc. All Rights Reserved.
-- *****************************************************************************
Juniper-DHCPv6-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue, TimeInterval
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
Ipv6AddressPrefix
FROM IPV6-TC
juniMibs
FROM Juniper-MIBs;
juniDhcpv6MIB MODULE-IDENTITY
LAST-UPDATED "200305081715Z" -- 08-May-03 01:15 PM EDT
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Networks, Inc.
Postal: 10 Technology Park Drive
Westford, MA 01886-3146
USA
Tel: +1 978 589 5800
Email: mib@Juniper.net"
DESCRIPTION
"The DHCPv6 MIB for the Juniper Networks enterprise."
-- Revision History
REVISION "200305081715Z" -- 08-May-03 01:15 PM EDT - JUNOSe 5.1
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 69 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Textual conventions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
JuniDhcpv6LocalServerModeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The set of DHCPv6 Local Server operational Mode types."
SYNTAX INTEGER {
localServerModeTypeEqualAccess(1),
localServerModeTypeStandalone(2) }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed object groups
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDhcpv6Objects OBJECT IDENTIFIER ::= { juniDhcpv6MIB 1 }
juniDhcpv6LocalServerObjects OBJECT IDENTIFIER ::= { juniDhcpv6Objects 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for DHCPv6 Local Server
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDhcpv6LocalServerStatistics OBJECT IDENTIFIER
::= { juniDhcpv6LocalServerObjects 1 }
juniDhcpv6LocalServerAttributes OBJECT IDENTIFIER
::= { juniDhcpv6LocalServerObjects 2 }
juniDhcpv6LocalServerBindings OBJECT IDENTIFIER
::= { juniDhcpv6LocalServerObjects 3 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- DHCPv6 Local Server Statistics
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDhcpv6LocalServerMemUsage OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount (in bytes) of memory currently allocated to this local
server."
::= { juniDhcpv6LocalServerStatistics 1 }
juniDhcpv6LocalServerNumBindings OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of address bindings maintained by this local server."
::= { juniDhcpv6LocalServerStatistics 2 }
juniDhcpv6LocalServerRxSolicits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of solicit messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 3 }
juniDhcpv6LocalServerRxAccepts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of accept messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 4 }
juniDhcpv6LocalServerRxRenews OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of renew messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 5 }
juniDhcpv6LocalServerRxDeclines OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of decline messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 6 }
juniDhcpv6LocalServerRxReleases OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of release messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 7 }
juniDhcpv6LocalServerRxInforms OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inform messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 8 }
juniDhcpv6LocalServerRxConfirms OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of confirm messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 9 }
juniDhcpv6LocalServerRxRebinds OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of rebind messages received by this local server."
::= { juniDhcpv6LocalServerStatistics 10 }
juniDhcpv6LocalServerTxReconfigures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reconfigure messages sent by this local server."
::= { juniDhcpv6LocalServerStatistics 11 }
juniDhcpv6LocalServerTxAdvertises OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of advertise messages sent by this local server."
::= { juniDhcpv6LocalServerStatistics 12 }
juniDhcpv6LocalServerTxSuccessfulReplies OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of success reply messages sent by this local server."
::= { juniDhcpv6LocalServerStatistics 13 }
juniDhcpv6LocalServerTxFailedReplies OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of failed reply messages sent by this local server."
::= { juniDhcpv6LocalServerStatistics 14 }
juniDhcpv6LocalServerUnknownMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of unknown messages processed by this local server."
::= { juniDhcpv6LocalServerStatistics 15 }
juniDhcpv6LocalServerBadMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bad messages processed by this local server."
::= { juniDhcpv6LocalServerStatistics 16 }
juniDhcpv6LocalServerPacketsIn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input packets processed by this local server."
::= { juniDhcpv6LocalServerStatistics 17 }
juniDhcpv6LocalServerPacketsOut OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of output packets processed by this local server."
::= { juniDhcpv6LocalServerStatistics 18 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- DHCPv6 Local Server Bindings Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDhcpv6LocalServerBindingsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDhcpv6LocalServerBindingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of address bindings maintained by this DHCPv6 Local Server."
::= { juniDhcpv6LocalServerBindings 1 }
juniDhcpv6LocalServerBindingsEntry OBJECT-TYPE
SYNTAX JuniDhcpv6LocalServerBindingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) representing an address binding maintained by
this DHCPv6 Local Server."
INDEX { juniDhcpv6LocalServerBindingsPrefix,
juniDhcpv6LocalServerBindingsLength }
::= { juniDhcpv6LocalServerBindingsTable 1 }
JuniDhcpv6LocalServerBindingsEntry ::= SEQUENCE {
juniDhcpv6LocalServerBindingsPrefix Ipv6AddressPrefix,
juniDhcpv6LocalServerBindingsLength Integer32,
juniDhcpv6LocalServerBindingsClientDuid OCTET STRING,
juniDhcpv6LocalServerBindingsInfinite TruthValue,
juniDhcpv6LocalServerBindingsExpireTime TimeInterval,
juniDhcpv6LocalServerBindingsIf OCTET STRING}
juniDhcpv6LocalServerBindingsPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP Address associated with this entry in the bindings table."
::= { juniDhcpv6LocalServerBindingsEntry 1 }
juniDhcpv6LocalServerBindingsLength OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP Address associated with this entry in the bindings table."
::= { juniDhcpv6LocalServerBindingsEntry 2 }
juniDhcpv6LocalServerBindingsClientDuid OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..130))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The client OUID associated with this entry in the bindings table and
corresponding to the IP Address denoted by the table index."
::= { juniDhcpv6LocalServerBindingsEntry 3 }
juniDhcpv6LocalServerBindingsInfinite OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, then this binding will be maintained indefinitely. If false,
then this binding will expire in accordance with the value of
juniDhcpv6LocalServerBindingsExpireTime."
::= { juniDhcpv6LocalServerBindingsEntry 4 }
juniDhcpv6LocalServerBindingsExpireTime OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If juniDhcpv6LocalServerBindingsInfinite is false, then this is the
time remaining prior to expiration of the address binding associated
with this entry."
::= { juniDhcpv6LocalServerBindingsEntry 5 }
juniDhcpv6LocalServerBindingsIf OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with this entry in the bindings table and
corresponding to the IP Address denoted by the table index."
::= { juniDhcpv6LocalServerBindingsEntry 6 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- DHCPv6 Local Server Attributes
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDhcpv6LocalServerAttributesMode OBJECT-TYPE
SYNTAX JuniDhcpv6LocalServerModeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An object representing the mode in which the DHCPv6 Local Server is
operating."
::= { juniDhcpv6LocalServerAttributes 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDhcpv6MIBConformance
OBJECT IDENTIFIER ::= { juniDhcpv6MIB 2 }
juniDhcpv6MIBCompliances
OBJECT IDENTIFIER ::= { juniDhcpv6MIBConformance 1 }
juniDhcpv6MIBGroups
OBJECT IDENTIFIER ::= { juniDhcpv6MIBConformance 2 }
--
-- compliance statements
--
juniDhcpv6Compliance2 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting DHCPv6."
MODULE -- this module
GROUP juniDhcpv6LocalServerGroup
DESCRIPTION
"The DHCPv6 Local Server group is mandatory for systems
supporting DHCPv6 Local Servers."
::= { juniDhcpv6MIBCompliances 1 } -- JUNOSe 5.1
--
-- units of conformance
--
juniDhcpv6LocalServerGroup OBJECT-GROUP
OBJECTS {
juniDhcpv6LocalServerMemUsage,
juniDhcpv6LocalServerNumBindings,
juniDhcpv6LocalServerRxSolicits,
juniDhcpv6LocalServerRxAccepts,
juniDhcpv6LocalServerRxRenews,
juniDhcpv6LocalServerRxDeclines,
juniDhcpv6LocalServerRxReleases,
juniDhcpv6LocalServerRxInforms,
juniDhcpv6LocalServerRxConfirms,
juniDhcpv6LocalServerRxRebinds,
juniDhcpv6LocalServerTxReconfigures,
juniDhcpv6LocalServerTxAdvertises,
juniDhcpv6LocalServerTxSuccessfulReplies,
juniDhcpv6LocalServerTxFailedReplies,
juniDhcpv6LocalServerUnknownMessages,
juniDhcpv6LocalServerBadMessages,
juniDhcpv6LocalServerPacketsIn,
juniDhcpv6LocalServerPacketsOut,
juniDhcpv6LocalServerBindingsClientDuid,
juniDhcpv6LocalServerBindingsInfinite,
juniDhcpv6LocalServerBindingsExpireTime,
juniDhcpv6LocalServerBindingsIf,
juniDhcpv6LocalServerAttributesMode }
STATUS current
DESCRIPTION
"The basic collection of objects providing management of DHCPv6 Local
Server functionality."
::= { juniDhcpv6MIBGroups 1 } -- JUNOSe 5.1
END
|