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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
|
-- *****************************************************************************
-- Juniper-IPV6-PROFILE-MIB
--
-- Juniper Networks Enterprise MIB
-- IPv6 Profile MIB
--
-- Copyright (c) 2003 Juniper Networks, Inc. All Rights Reserved.
-- *****************************************************************************
Juniper-IPV6-PROFILE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InetAddressIPv6
FROM INET-ADDRESS-MIB
Ipv6AddressPrefix
FROM IPV6-TC
juniMibs
FROM Juniper-MIBs
JuniEnable, JuniName, JuniSetMap
FROM Juniper-TC;
juniIpv6ProfileMIB MODULE-IDENTITY
LAST-UPDATED "200707191819Z" -- 24-Jul-07 02:19 PM EDT
ORGANIZATION "Juniper Networks"
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 IPv6 Profile MIB for the Juniper Networks enterprise."
-- Revision History
REVISION "200707191819Z" -- 24-Jul-07 02:19 PM EDT - JUNOSe 8.2
DESCRIPTION
"Added ND support on dynamic interface."
REVISION "200309291758Z" -- 29-Sep-03 01:58 PM EDT - JUNOSe 5.1
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 68 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed object groups
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpv6ProfileObjects OBJECT IDENTIFIER ::= { juniIpv6ProfileMIB 1 }
juniIpv6Profile OBJECT IDENTIFIER ::= { juniIpv6ProfileObjects 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects for IPv6 Profiles
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- This MIB defines configuration profile structure for IPv6 interfaces.
-- The creation/deletion of profiles and mapping of profile names to profile
-- indices is coordinated in the Juniper-PROFILE-MIB.
--
--
-- The IPv6 Profile Table
--
juniIpv6ProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniIpv6ProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entries in this table describe profiles for configuring IP
interfaces.
Entries in this table are created/deleted as a side-effect of
corresponding operations to the juniProfileNameTable in the
Juniper-PROFILE-MIB."
::= { juniIpv6Profile 1 }
juniIpv6ProfileEntry OBJECT-TYPE
SYNTAX JuniIpv6ProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A profile describing configuration of an IPv6 interface."
INDEX { juniIpv6ProfileId }
::= { juniIpv6ProfileTable 1 }
JuniIpv6ProfileEntry ::= SEQUENCE {
juniIpv6ProfileId Unsigned32,
juniIpv6ProfileSetMap JuniSetMap,
juniIpv6ProfileRouterName JuniName,
juniIpv6ProfileIpv6Addr InetAddressIPv6,
juniIpv6ProfileIpv6MaskLen Integer32,
juniIpv6ProfileMtu Integer32,
juniIpv6ProfileSrcAddrValidEnable JuniEnable,
juniIpv6ProfileInheritNumString DisplayString,
juniIpv6ProfileNdEnabled JuniEnable,
juniIpv6ProfileNdManagedConfig JuniEnable,
juniIpv6ProfileNdOtherConfig JuniEnable,
juniIpv6ProfileNdSuppressRa JuniEnable,
juniIpv6ProfileNdRaInterval Integer32,
juniIpv6ProfileNdRaLifeTime Integer32,
juniIpv6ProfileNdReachableTime Integer32,
juniIpv6ProfileNdPrefix Ipv6AddressPrefix,
juniIpv6ProfileNdPrefixLength Integer32,
juniIpv6ProfileNdPrefixOnLinkFlag JuniEnable,
juniIpv6ProfileNdPrefixAutonomousFlag JuniEnable,
juniIpv6ProfileNdPrefixPreferredLifetime Integer32,
juniIpv6ProfileNdPrefixValidLifetime Integer32}
juniIpv6ProfileId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The integer identifier associated with this profile. A value for this
identifier is determined by locating or creating a profile name in the
juniProfileNameTable."
::= { juniIpv6ProfileEntry 1 }
juniIpv6ProfileSetMap OBJECT-TYPE
SYNTAX JuniSetMap
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A bitmap representing which objects in this entry have been explicitly
configured. See the definition of the JuniSetMap TEXTUAL-CONVENTION for
details of use.
The INDEX object(s) and this object are excluded from representation
(i.e. their bits are never set).
When a SET request does not explicitly configure JuniSetMap, bits in
JuniSetMap are set as a side-effect of configuring other profile
attributes in the same entry.
If, however, a SET request explicitly configures JuniSetMap, the
explicitly configured value overrides 1) any previous bit settings, and
2) any simultaneous 'side-effect' settings that would otherwise occur.
Once set, bits can only be cleared by explicitly configuring
JuniSetMap."
::= { juniIpv6ProfileEntry 2 }
juniIpv6ProfileRouterName OBJECT-TYPE
SYNTAX JuniName
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The virtual router to which an IPv6 interface configured by this
profile will be assigned, if other mechanisms do not otherwise specify a
virtual router assignment."
DEFVAL { "" }
::= { juniIpv6ProfileEntry 3 }
juniIpv6ProfileIpv6Addr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An IPv6 address to be used by an IPv6 interface configured by this
profile. This object will have a value of 0::0 for an unnumbered
interface."
DEFVAL { '00000000000000000000000000000000'H }
::= { juniIpv6ProfileEntry 4 }
juniIpv6ProfileIpv6MaskLen OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An IPv6 address mask length to be used by an IPv6 interface configured
by this profile. This object will have a value of 0 for an unnumbered
interface."
DEFVAL { 0 }
::= { juniIpv6ProfileEntry 5 }
juniIpv6ProfileMtu OBJECT-TYPE
SYNTAX Integer32 (0|1280..10240)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured MTU size for this IPv6 network interface. If set to
zero, the default MTU size, as determined by the underlying network
media, is used."
DEFVAL { 0 }
::= { juniIpv6ProfileEntry 6 }
juniIpv6ProfileSrcAddrValidEnable OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable whether source addresses in received IPv6 packets are
validated. Validation is performed by looking up the source IPv6
address in the routing database and determining whether the packet
arrived on the expected interface; if not, the packet is discarded."
DEFVAL { disable }
::= { juniIpv6ProfileEntry 7 }
juniIpv6ProfileInheritNumString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The text identifier of the numbered interface, associated with the
specified virtual router, whose IPv6 address is used as the source
address when transmitting IPv6 packets on unnumbered remote access user
links. Types/formats/examples for this string include:
Loopback
loopback <id>
'loopback 0'
ATM Virtual Circuit
atm <slot>/<port>.<distinguisher>
'atm 3/1.100'
Ethernet
{ fastEthernet | gigabitEthernet } <slot>/<port>
'fastEthernet 3/0'
'gigabitEthernet 3/0'
Ethernet VLAN
{ fastEthernet | gigabitEthernet } <slot>/<port>:<vlanID>
'fastEthernet 3/0:1000'
'gigabitEthernet 3/0:1000'
Channelized Serial
serial <slot>/<port>:<channelSpecifier>[/<channelSpecifier>]*
'serial 3/0:4' (T1/E1)
'serial 3/0:2/4' (T3/E3)
'serial 3/0:2/1/1/4' (OC3/OC12 - channelized DS3)
'serial 3/0:2/1/1/1/4' (OC3/OC12 - virtual tributaries)
Other formats may be supported over time.
An empty string indicates the referenced interface is unspecified, e.g.,
when this IPv6 interface is numbered."
DEFVAL { "" }
::= { juniIpv6ProfileEntry 8 }
juniIpv6ProfileNdEnabled OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable ND for this IPv6 network interface."
DEFVAL { disable }
::= { juniIpv6ProfileEntry 9 }
juniIpv6ProfileNdManagedConfig OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable ND managed config for this IPv6 network interface."
DEFVAL { disable }
::= { juniIpv6ProfileEntry 10 }
juniIpv6ProfileNdOtherConfig OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable ND other config for this IPv6 network interface."
DEFVAL { disable }
::= { juniIpv6ProfileEntry 11 }
juniIpv6ProfileNdSuppressRa OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable ND suppress RA for this IPv6 network interface."
DEFVAL { disable }
::= { juniIpv6ProfileEntry 12 }
juniIpv6ProfileNdRaInterval OBJECT-TYPE
SYNTAX Integer32 (3..1800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured interval between IPv6 RA transmissions on the interface."
DEFVAL { 200 }
::= { juniIpv6ProfileEntry 13 }
juniIpv6ProfileNdRaLifeTime OBJECT-TYPE
SYNTAX Integer32 (0..1800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured RA lifetime for this IPv6 network interface."
DEFVAL { 1800 }
::= { juniIpv6ProfileEntry 14 }
juniIpv6ProfileNdReachableTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured RA reachable time for this IPv6 network interface."
DEFVAL { 0 }
::= { juniIpv6ProfileEntry 15 }
juniIpv6ProfileNdPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The prefix associated with the this interface."
::= { juniIpv6ProfileEntry 16 }
juniIpv6ProfileNdPrefixLength OBJECT-TYPE
SYNTAX Integer32 (1..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The length of the prefix (in bits)."
::= { juniIpv6ProfileEntry 17 }
juniIpv6ProfileNdPrefixOnLinkFlag OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object has the value 'true(1)', if this
prefix can be used for on-link determination
and the value 'false(2)' otherwise."
DEFVAL { enable }
::= { juniIpv6ProfileEntry 18 }
juniIpv6ProfileNdPrefixAutonomousFlag OBJECT-TYPE
SYNTAX JuniEnable
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Autonomous address configuration flag. When
true(1), indicates that this prefix can be used
for autonomous address configuration (i.e. can
be used to form a local interface address).
If false(2), it is not used to autoconfigure
a local interface address."
DEFVAL { enable }
::= { juniIpv6ProfileEntry 19 }
juniIpv6ProfileNdPrefixPreferredLifetime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is the length of time in seconds that this
prefix will remain preferred, i.e. time until
deprecation. A value of 4,294,967,295 represents
infinity.
The address generated from a deprecated prefix
should no longer be used as a source address in
new communications, but packets received on such
an interface are processed as expected."
DEFVAL { 604800 }
::= { juniIpv6ProfileEntry 20 }
juniIpv6ProfileNdPrefixValidLifetime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It is the length of time in seconds that this
prefix will remain valid, i.e. time until
invalidation. A value of 4,294,967,295 represents
infinity.
The address generated from an invalidated prefix
should not appear as the destination or source
address of a packet."
DEFVAL { 2592000 }
::= { juniIpv6ProfileEntry 21 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB. Placeholders follow.
-- juniIpv6ProfileTrapControl OBJECT IDENTIFIER ::= { juniIpv6ProfileMIB 2 }
-- juniIpv6ProfileTraps OBJECT IDENTIFIER ::= { juniIpv6ProfileMIB 3 }
-- juniIpv6ProfileTrapPrefix OBJECT IDENTIFIER ::= { juniIpv6ProfileTraps 0 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniIpv6ProfileMIBConformance
OBJECT IDENTIFIER ::= { juniIpv6ProfileMIB 4 }
juniIpv6ProfileMIBCompliances
OBJECT IDENTIFIER ::= { juniIpv6ProfileMIBConformance 1 }
juniIpv6ProfileMIBGroups
OBJECT IDENTIFIER ::= { juniIpv6ProfileMIBConformance 2 }
--
-- compliance statements
--
juniIpv6ProfileCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete Compliance statement for systems supporting IPv6 configuration
profiles. This statement became obsolete when added ND support."
MODULE -- this module
MANDATORY-GROUPS {
juniIpv6ProfileGroup }
::= { juniIpv6ProfileMIBCompliances 1 } -- JUNOSe 5.1
juniIpv6ProfileCompliance1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for systems supporting IPv6 configuration
profiles, incorporating support of ND on dynamical interface."
MODULE -- this module
MANDATORY-GROUPS {
juniIpv6ProfileGroup1 }
::= { juniIpv6ProfileMIBCompliances 2 } -- JUNOSe 8.2
--
-- units of conformance
--
juniIpv6ProfileGroup OBJECT-GROUP
OBJECTS {
juniIpv6ProfileSetMap,
juniIpv6ProfileRouterName,
juniIpv6ProfileIpv6Addr,
juniIpv6ProfileIpv6MaskLen,
juniIpv6ProfileMtu,
juniIpv6ProfileSrcAddrValidEnable,
juniIpv6ProfileInheritNumString }
STATUS obsolete
DESCRIPTION
"An obsolete collection of objects providing management of IPv6 Profile
functionality in a Juniper product. This statement became obsolete
when added ND support."
::= { juniIpv6ProfileMIBGroups 1 } -- JUNOSe 5.1
juniIpv6ProfileGroup1 OBJECT-GROUP
OBJECTS {
juniIpv6ProfileSetMap,
juniIpv6ProfileRouterName,
juniIpv6ProfileIpv6Addr,
juniIpv6ProfileIpv6MaskLen,
juniIpv6ProfileMtu,
juniIpv6ProfileSrcAddrValidEnable,
juniIpv6ProfileInheritNumString,
juniIpv6ProfileNdEnabled,
juniIpv6ProfileNdManagedConfig,
juniIpv6ProfileNdOtherConfig,
juniIpv6ProfileNdSuppressRa,
juniIpv6ProfileNdRaInterval,
juniIpv6ProfileNdRaLifeTime,
juniIpv6ProfileNdReachableTime,
juniIpv6ProfileNdPrefix,
juniIpv6ProfileNdPrefixLength,
juniIpv6ProfileNdPrefixOnLinkFlag,
juniIpv6ProfileNdPrefixAutonomousFlag,
juniIpv6ProfileNdPrefixPreferredLifetime,
juniIpv6ProfileNdPrefixValidLifetime }
STATUS current
DESCRIPTION
"The basic collection of objects providing management of IPv6 Profile
functionality in a Juniper product."
::= { juniIpv6ProfileMIBGroups 2 } -- JUNOSe 8.2
END
|