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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
|
-- *****************************************************************************
-- Juniper-DVMRP-MIB
--
-- Juniper Networks Enterprise MIB
-- DVMRP MIB
--
-- Copyright (c) 2001 Unisphere Networks, Inc.
-- Copyright (c) 2002, 2003 Juniper Networks, Inc.
-- All Rights Reserved.
-- *****************************************************************************
Juniper-DVMRP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, NOTIFICATION-TYPE,
IpAddress, TimeTicks
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
junidDvmrpInterfaceEntry
FROM DVMRP-STD-MIB-JUNI
juniMibs
FROM Juniper-MIBs;
juniDvmrpMIB MODULE-IDENTITY
LAST-UPDATED "200301162055Z" -- 16-Jan-03 03:55 PM EST
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 Enterprise MIB module for management of Juniper DVMRP routers."
-- Revision History
REVISION "200301162055Z" -- 16-Jan-03 03:55 PM EST - JUNOSe 5.0
DESCRIPTION
"Replaced Unisphere names with Juniper names.
Added support for unicast routing and the interface announce list
name."
REVISION "200111302124Z" -- 30-Nov-01 04:24 PM EST - JUNOSe 3.0
DESCRIPTION
"Initial version of this MIB module."
::= { juniMibs 44 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDvmrpMIBObjects OBJECT IDENTIFIER ::= { juniDvmrpMIB 1 }
juniDvmrp OBJECT IDENTIFIER ::= { juniDvmrpMIBObjects 1 }
juniDvmrpScalar OBJECT IDENTIFIER ::= { juniDvmrp 1 }
--
-- Juniper DVMRP scalar objects.
--
juniDvmrpAdminState OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls whether DVMRP is enabled or not."
::= { juniDvmrpScalar 1 }
juniDvmrpMcastAdminState OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether multicast is enabled or not. This is settable via the
multicast component."
::= { juniDvmrpScalar 2 }
juniDvmrpRouteHogNotification OBJECT-TYPE
SYNTAX Integer32 (0..134217727)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of routes allowed within a 1 minute interval before a trap
is issued warning that there may be a route surge going on."
::= { juniDvmrpScalar 3 }
juniDvmrpRouteLimit OBJECT-TYPE
SYNTAX Integer32 (0..134217727)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The limit on the number of routes that may be advertised on a DVMRP
interface."
::= { juniDvmrpScalar 4 }
juniDvmrpS32PrunesOnly OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies when DVMRP is sending prunes and grafts with only a 32 bit
source masks."
::= { juniDvmrpScalar 5 }
juniDvmrpUnicastRouting OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable the unicast routing portion of the DVMRP."
::= { juniDvmrpScalar 6 }
--
-- The Juniper DVMRP access list distance neighbor group.
--
juniDvmrpAclDistNbrTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDvmrpAclDistNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the access lists distance for a list of
neighbors."
::= { juniDvmrp 2 }
juniDvmrpAclDistNbrEntry OBJECT-TYPE
SYNTAX JuniDvmrpAclDistNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the juniDvmrpAclDistNbrTable."
INDEX { juniDvmrpAclDistNbrIfIndex,
juniDvmrpAclDistNbrAclListName }
::= { juniDvmrpAclDistNbrTable 1 }
JuniDvmrpAclDistNbrEntry ::= SEQUENCE {
juniDvmrpAclDistNbrIfIndex InterfaceIndex,
juniDvmrpAclDistNbrAclListName DisplayString,
juniDvmrpAclDistNbrDistance Integer32,
juniDvmrpAclDistNbrNbrListName DisplayString,
juniDvmrpAclDistNbrStatus RowStatus }
juniDvmrpAclDistNbrIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface for which DVMRP is enabled."
::= { juniDvmrpAclDistNbrEntry 1 }
juniDvmrpAclDistNbrAclListName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..80))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the access list to be used in the filter."
::= { juniDvmrpAclDistNbrEntry 2 }
juniDvmrpAclDistNbrDistance OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administritive distance metric that will be used"
DEFVAL { 1 }
::= { juniDvmrpAclDistNbrEntry 3 }
juniDvmrpAclDistNbrNbrListName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..80))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the access list of nbrs for this accept-filter to be applied,
this field must be supplied when the row is created"
::= { juniDvmrpAclDistNbrEntry 4 }
juniDvmrpAclDistNbrStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this entry."
::= { juniDvmrpAclDistNbrEntry 5 }
--
-- The Juniper DVMRP Local Address table.
-- This is used to retrive all of the addresses configured
-- on a DVMRP interface.
--
juniDvmrpLocalAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDvmrpLocalAddrTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the local addresses. This is used to
retrive all of the addresses configured on a DVMRP interface."
::= { juniDvmrp 3 }
juniDvmrpLocalAddrTableEntry OBJECT-TYPE
SYNTAX JuniDvmrpLocalAddrTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the juniDvmrpLocalAddrTable."
INDEX { juniDvmrpLocalAddrIfIndex,
juniDvmrpLocalAddrAddrOrIfIndex }
::= { juniDvmrpLocalAddrTable 1 }
JuniDvmrpLocalAddrTableEntry ::= SEQUENCE {
juniDvmrpLocalAddrIfIndex InterfaceIndex,
juniDvmrpLocalAddrAddrOrIfIndex Unsigned32,
juniDvmrpLocalAddrMask IpAddress }
juniDvmrpLocalAddrIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface for which DVMRP is enabled."
::= { juniDvmrpLocalAddrTableEntry 1 }
juniDvmrpLocalAddrAddrOrIfIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For unnumbered interfaces, this takes on the value of the ifIndex. For
numbered interfaces, this is the address of one of the addresses
associated with the interface."
::= { juniDvmrpLocalAddrTableEntry 2 }
juniDvmrpLocalAddrMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Address mask associated with this entry."
::= { juniDvmrpLocalAddrTableEntry 3 }
--
-- The Juniper DVMRP Summary Address table.
-- This is used to retrive all of the summary address configured
-- on a DVMRP interface.
--
juniDvmrpSummaryAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDvmrpSummaryAddrTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the DVMRP summary addresses. This is
used to retrive all of the summary address configured on a DVMRP
interface."
::= { juniDvmrp 4 }
juniDvmrpSummaryAddrTableEntry OBJECT-TYPE
SYNTAX JuniDvmrpSummaryAddrTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the juniDvmrpSummaryAddrTable."
INDEX { juniDvmrpSummaryAddrIfIndex,
juniDvmrpSummaryAddrAddress,
juniDvmrpSummaryAddrMask }
::= { juniDvmrpSummaryAddrTable 1 }
JuniDvmrpSummaryAddrTableEntry ::= SEQUENCE {
juniDvmrpSummaryAddrIfIndex InterfaceIndex,
juniDvmrpSummaryAddrAddress IpAddress,
juniDvmrpSummaryAddrMask IpAddress,
juniDvmrpSummaryAddrCost Integer32,
juniDvmrpSummaryAddrStatus RowStatus }
juniDvmrpSummaryAddrIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex value of the interface for which DVMRP is enabled."
::= { juniDvmrpSummaryAddrTableEntry 1 }
juniDvmrpSummaryAddrAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the summary address that will be created."
::= { juniDvmrpSummaryAddrTableEntry 2 }
juniDvmrpSummaryAddrMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The mask of the summary address to be created."
::= { juniDvmrpSummaryAddrTableEntry 3 }
juniDvmrpSummaryAddrCost OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administritive distance metric used to actually calculate distance
vectors."
DEFVAL { 1 }
::= { juniDvmrpSummaryAddrTableEntry 4 }
juniDvmrpSummaryAddrStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this entry."
::= { juniDvmrpSummaryAddrTableEntry 5 }
--
-- The Juniper DVMRP Interface Table.
--
juniDvmrpInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDvmrpInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the router's multicast-capable
interfaces. This table augments the DvmrpInterfaceTable."
::= { juniDvmrp 5 }
juniDvmrpInterfaceEntry OBJECT-TYPE
SYNTAX JuniDvmrpInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the juniDvmrpInterfaceTable. This row
extends ipMRouteInterfaceEntry in the IP Multicast MIB, where the
threshold object resides."
AUGMENTS { junidDvmrpInterfaceEntry }
::= { juniDvmrpInterfaceTable 1 }
JuniDvmrpInterfaceEntry ::= SEQUENCE {
juniDvmrpInterfaceAutoSummary INTEGER,
juniDvmrpInterfaceMetricOffsetOut Integer32,
juniDvmrpInterfaceMetricOffsetIn Integer32,
juniDvmrpInterfaceAdminState INTEGER,
juniDvmrpInterfaceAnnounceListName DisplayString }
juniDvmrpInterfaceAutoSummary OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enables or disable auto-summarization on this interface."
::= { juniDvmrpInterfaceEntry 3 }
juniDvmrpInterfaceMetricOffsetOut OBJECT-TYPE
SYNTAX Integer32 (0..31)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The distance metric for this interface which is used to calculate
outbound distance vectors."
DEFVAL { 0 }
::= { juniDvmrpInterfaceEntry 4 }
juniDvmrpInterfaceMetricOffsetIn OBJECT-TYPE
SYNTAX Integer32 (0..31)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The distance metric for this interface which is used to calculate
inbound distance vectors."
DEFVAL { 1 }
::= { juniDvmrpInterfaceEntry 5 }
juniDvmrpInterfaceAdminState OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Controls whether DVMRP is enabled or not."
::= { juniDvmrpInterfaceEntry 6 }
juniDvmrpInterfaceAnnounceListName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Configures the name of the acceptance announce filter for the IP access
list."
::= { juniDvmrpInterfaceEntry 7 }
--
-- The Juniper DVMRP Prune Table
--
juniDvmrpPruneTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDvmrpPruneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the router's upstream prune state."
::= { juniDvmrp 6 }
juniDvmrpPruneEntry OBJECT-TYPE
SYNTAX JuniDvmrpPruneEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the juniDvmrpPruneTable."
INDEX { juniDvmrpPruneGroup,
juniDvmrpPruneSource,
juniDvmrpPruneSourceMask }
::= { juniDvmrpPruneTable 1 }
JuniDvmrpPruneEntry ::= SEQUENCE {
juniDvmrpPruneGroup IpAddress,
juniDvmrpPruneSource IpAddress,
juniDvmrpPruneSourceMask IpAddress,
juniDvmrpPruneIIFIfIndex InterfaceIndex,
juniDvmrpPruneUpTime TimeTicks }
juniDvmrpPruneGroup OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group address which has been pruned."
::= { juniDvmrpPruneEntry 1 }
juniDvmrpPruneSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the source or source network which has been pruned."
::= { juniDvmrpPruneEntry 2 }
juniDvmrpPruneSourceMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the source or source network which has been pruned. The
mask must either be all 1's, or else juniDvmrpPruneSource and
juniDvmrpPruneSourceMask must match juniDvmrpRouteSource and
juniDvmrpRouteSourceMask for some entry in the juniDvmrpRouteTable."
::= { juniDvmrpPruneEntry 3 }
juniDvmrpPruneIIFIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex of the upstream interface for this source group entry."
::= { juniDvmrpPruneEntry 4 }
juniDvmrpPruneUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the amount of time that this prune has remained valid."
::= { juniDvmrpPruneEntry 5 }
--
-- The Juniper DVMRP source group OIF table
--
juniDvmrpSrcGrpOifTable OBJECT-TYPE
SYNTAX SEQUENCE OF JuniDvmrpSrcGrpOifEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) OIFs for particular source group entries."
::= { juniDvmrp 7 }
juniDvmrpSrcGrpOifEntry OBJECT-TYPE
SYNTAX JuniDvmrpSrcGrpOifEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the juniDvmrpSrcGrpOifTable."
INDEX { juniDvmrpSrcGrpOifGroup,
juniDvmrpSrcGrpOifSource,
juniDvmrpSrcGrpOifSourceMask,
juniDvmrpSrcGrpOifOIFIfIndex }
::= { juniDvmrpSrcGrpOifTable 1 }
JuniDvmrpSrcGrpOifEntry ::= SEQUENCE {
juniDvmrpSrcGrpOifGroup IpAddress,
juniDvmrpSrcGrpOifSource IpAddress,
juniDvmrpSrcGrpOifSourceMask IpAddress,
juniDvmrpSrcGrpOifOIFIfIndex InterfaceIndex,
juniDvmrpSrcGrpOifOIFPruned INTEGER,
juniDvmrpSrcGrpOifOIFDnTTL TimeTicks }
juniDvmrpSrcGrpOifGroup OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group address which has been pruned."
::= { juniDvmrpSrcGrpOifEntry 1 }
juniDvmrpSrcGrpOifSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the source or source network which has been pruned."
::= { juniDvmrpSrcGrpOifEntry 2 }
juniDvmrpSrcGrpOifSourceMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the source or source network which has been pruned. The
mask must either be all 1's, or else juniDvmrpPruneSource and
juniDvmrpPruneSourceMask must match juniDvmrpRouteSource and
juniDvmrpRouteSourceMask for some entry in the juniDvmrpRouteTable."
::= { juniDvmrpSrcGrpOifEntry 3 }
juniDvmrpSrcGrpOifOIFIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of one of the downstream interfaces for this source group
entry."
::= { juniDvmrpSrcGrpOifEntry 4 }
juniDvmrpSrcGrpOifOIFPruned OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true this OIF has been pruned."
::= { juniDvmrpSrcGrpOifEntry 5 }
juniDvmrpSrcGrpOifOIFDnTTL OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The timeout for this OIF. If juniDvmrpSrcGrpOifOIFPruned is false
then this is undefined."
::= { juniDvmrpSrcGrpOifEntry 6 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDvmrpTraps OBJECT IDENTIFIER ::= { juniDvmrp 0 }
juniDvmrpRouteHogNotificationTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is an indication that the route hog notification limit has been
exceeded during the past minute. It may mean that a route surge is
going on."
::= { juniDvmrpTraps 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniDvmrpConformance OBJECT IDENTIFIER ::= { juniDvmrpMIB 4 }
juniDvmrpCompliances OBJECT IDENTIFIER ::= { juniDvmrpConformance 1 }
juniDvmrpGroups OBJECT IDENTIFIER ::= { juniDvmrpConformance 2 }
--
-- compliance statements
--
juniDvmrpCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"Obsolete compliance statement for entities which implement the Juniper
DVMRP MIB. This statement became obsolete when new objects were added."
MODULE -- this module
MANDATORY-GROUPS {
juniDvmrpBaseGroup,
juniDvmrpAclDistNbrGroup,
juniDvmrpInterfaceGroup,
juniDvmrpSourceGroup }
::= { juniDvmrpCompliances 1 } -- JUNOSe 3.0
juniDvmrpCompliance2 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the Juniper DVMRP
MIB."
MODULE -- this module
MANDATORY-GROUPS {
juniDvmrpBaseGroup2,
juniDvmrpAclDistNbrGroup,
juniDvmrpInterfaceGroup2,
juniDvmrpSourceGroup }
::= { juniDvmrpCompliances 2 } -- JUNOSe 5.0
--
-- units of conformance
--
juniDvmrpBaseGroup OBJECT-GROUP
OBJECTS {
juniDvmrpAdminState,
juniDvmrpMcastAdminState,
juniDvmrpRouteHogNotification,
juniDvmrpRouteLimit,
juniDvmrpS32PrunesOnly }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing basic management of DVMRP in a
Juniper product. This group became obsolete when support was added for
the DVMRP unicast routing object."
::= { juniDvmrpGroups 1 }
juniDvmrpAclDistNbrGroup OBJECT-GROUP
OBJECTS {
juniDvmrpAclDistNbrDistance,
juniDvmrpAclDistNbrNbrListName,
juniDvmrpAclDistNbrStatus }
STATUS current
DESCRIPTION
"A collection of objects providing management of DVMRP access list
distance neighbors in a Juniper product."
::= { juniDvmrpGroups 2 }
juniDvmrpInterfaceGroup OBJECT-GROUP
OBJECTS {
juniDvmrpLocalAddrMask,
juniDvmrpSummaryAddrCost,
juniDvmrpSummaryAddrStatus,
juniDvmrpInterfaceAutoSummary,
juniDvmrpInterfaceMetricOffsetOut,
juniDvmrpInterfaceMetricOffsetIn,
juniDvmrpInterfaceAdminState }
STATUS obsolete
DESCRIPTION
"Obsolete collection of objects providing management of a DVMRP
interface in a Juniper product. This group became obsolete when support
for the DVMRP interface announce list name object was added."
::= { juniDvmrpGroups 3 }
juniDvmrpSourceGroup OBJECT-GROUP
OBJECTS {
juniDvmrpPruneIIFIfIndex,
juniDvmrpPruneUpTime,
juniDvmrpSrcGrpOifOIFPruned,
juniDvmrpSrcGrpOifOIFDnTTL }
STATUS current
DESCRIPTION
"A collection of objects providing management of a DVMRP source group in
a Juniper product."
::= { juniDvmrpGroups 4 }
juniDvmrpNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
juniDvmrpRouteHogNotificationTrap }
STATUS current
DESCRIPTION
"A notification for signaling important DVMRP events."
::= { juniDvmrpGroups 5 }
juniDvmrpBaseGroup2 OBJECT-GROUP
OBJECTS {
juniDvmrpAdminState,
juniDvmrpMcastAdminState,
juniDvmrpRouteHogNotification,
juniDvmrpRouteLimit,
juniDvmrpS32PrunesOnly,
juniDvmrpUnicastRouting }
STATUS current
DESCRIPTION
"A collection of objects providing basic management of DVMRP in a
Juniper product."
::= { juniDvmrpGroups 6 }
juniDvmrpInterfaceGroup2 OBJECT-GROUP
OBJECTS {
juniDvmrpLocalAddrMask,
juniDvmrpSummaryAddrCost,
juniDvmrpSummaryAddrStatus,
juniDvmrpInterfaceAutoSummary,
juniDvmrpInterfaceMetricOffsetOut,
juniDvmrpInterfaceMetricOffsetIn,
juniDvmrpInterfaceAdminState ,
juniDvmrpInterfaceAnnounceListName }
STATUS current
DESCRIPTION
"A collection of objects providing management of a DVMRP interface in a
Juniper product."
::= { juniDvmrpGroups 7 }
END
|