-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfPim.mib
2015 lines (1768 loc) · 78.3 KB
/
hpicfPim.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
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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
HP-ICF-PIM DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE, IpAddress,
Integer32, Unsigned32, TimeTicks, Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
TruthValue, RowStatus
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
pimComponentEntry, pimRPSetEntry, pimNeighborEntry, pimInterfaceEntry,
pimInterfaceIfIndex, pimRPSetComponent
FROM PIM-MIB
hpSwitch
FROM HP-ICF-OID
InetAddressType, InetAddress, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
ipMRouteEntry, ipMRouteGroup, ipMRouteSource
FROM IPMROUTE-STD-MIB;
hpicfPimMIB MODULE-IDENTITY
LAST-UPDATED "201204120000Z" -- April 12, 2012
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module contains HP proprietary
extensions to the standard PIM MIB (RFC 2934)."
REVISION "201204120000Z" -- April 12, 2012
DESCRIPTION "Added hpicfPimScalars to provide global counter data for
PIM-SM Register messages and hpicfPimIfMessageCounterTable
to provide per-interface totals for received, transmitted
and dropped PIM protocol packets.
Extended hpicfPimIfTable to provide more detail on PIM
enabled interfaces.
Extended hpicfPimComponentTable to indicate next scheduled
C-RP Advertisement message time.
Extended hpicfPimStatRpfTable to provide more detail on RPF
Overrides/Multicast Static Routes.
Added hpicfPimVersion to provide the Version number of PIM
on the router.
Added hpicfPimStarGEntries and hpicfPimSGEntries to provide
a count of the number of (*,G) and (S,G) entries in their
respective tables.
Added hpicfPimMRouteTable to extend ipMRouteTable
(RFC 2932) to provide more detail on multicast forwarding
table entries.
Added hpicfPimNeighborTable, which extends pimNeighborTable
(RFC 2934) to provide more detail on known PIM neighbor
routers.
Added hpicfPimTotalNeighborCount to provide a count of all
known PIM neighbors.
Added hpicfPimUcastRouteTable to provide information on
unicast routing information used by PIM.
Added hpicfPimJoinPruneTable to provide information on
Join-Prune protocol messages to be sent across the routers
PIM interfaces.
Added hpicfPimRPSetTable, which extends pimRPSetEntry
(RFC 2934) to provide more detail on PIM-SM RP->Group
mappings.
Added hpicfPimUnackGraftsTable to provide information on
sent-but-unacknowledged PIM-DM Graft messages."
REVISION "201010040000Z" -- October 4, 2010
DESCRIPTION "Added hpicfPimStaticRpfTable to statically configure
reverse path forwarding (RPF) override entries. This
information is currently used in the PIM
sparse mode only."
REVISION "201009010000Z" -- September 1, 2010
DESCRIPTION "Added hpicfPimRemoveConfig to disable PIM and
remove its entire config schema from the switch.
hpicfPimRemoveConfig to the
hpicfhpicfPim object"
REVISION "200508041619Z" -- August 4, 2005
DESCRIPTION "Added PIM-SM objects."
REVISION "200406300000Z" -- June 30, 2004
DESCRIPTION "Initial revision."
::= { hpSwitch 20 }
-- **********************************************************************
-- The PIM MIB Groups
-- **********************************************************************
hpicfPimObjects OBJECT IDENTIFIER ::= { hpicfPimMIB 1 }
hpicfPimTraps OBJECT IDENTIFIER ::= { hpicfPimObjects 0 }
hpicfPim OBJECT IDENTIFIER ::= { hpicfPimObjects 1 }
hpicfPimScalars OBJECT IDENTIFIER ::= { hpicfPimObjects 2 }
hpicfPimConformance OBJECT IDENTIFIER ::= { hpicfPimMIB 2 }
hpicfPimGroups OBJECT IDENTIFIER ::= { hpicfPimConformance 1 }
hpicfPimCompliances OBJECT IDENTIFIER ::= { hpicfPimConformance 2 }
-- **********************************************************************
-- Start of MIB objects
-- **********************************************************************
hpicfPimAdminStatus OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the PIM routing protocol
on this router. Default is disabled."
DEFVAL { disable }
::= { hpicfPim 1 }
hpicfPimStateRefreshInterval OBJECT-TYPE
SYNTAX Integer32 (10..300)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The interval between successive State Refresh
messages originated by this router.
Default is 60 seconds."
DEFVAL { 60 }
::= { hpicfPim 2 }
hpicfPimSPTThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies a threshold for switching to the Shortest
Path Tree (SPT) on this router. If the object has
the special value of -1, the Shared Tree rooted to the
Rendezvous Point (RP) will be used indefinitely on the
router. Default is -1."
DEFVAL { -1 }
::= { hpicfPim 3 }
hpicfPimTrapControl OBJECT-TYPE
SYNTAX BITS {
neighborLoss(0),
hardMrtFull(1),
softMrtFull(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether the PIM-enabled router will generate
SNMP traps for PIM events. The set bit means 'enabled'.
- neighborLoss(0)
This bit controls whether the notification trap is
allowed to be sent when the neighbor timer expires
and the router has no other neighbors on the same
interface with a lower IP address than itself.
- hardMrtFull(1)
This bit controls whether the notification trap is
allowed to be sent when the MRT table is full and
the error has been originated by hardware.
- softMrtFull(2)
This bit controls whether the notification trap is
allowed to be sent when the MRT table is full and
the error has been originated by software."
::= { hpicfPim 4 }
-- **********************************************************************
-- The PIM Static RP-Set Table
-- **********************************************************************
hpicfPimStaticRPSetTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPimStaticRPSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The (conceptual) table containing statically
configured Rendezvous Points (RPs) for IP multicast
group mappings. This information is being used
in the PIM Sparse mode only."
::= { hpicfPim 5 }
hpicfPimStaticRPSetEntry OBJECT-TYPE
SYNTAX HpicfPimStaticRPSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) in the hpicfPimStaticRPSetTable.
NOTE: the pimRPSetComponent is an index that uniquely
identifies the component. Each protocol instance
connected to a separate domain should have a different
index value."
INDEX { pimRPSetComponent,
hpicfPimStaticRPSetGroupAddress,
hpicfPimStaticRPSetGroupMask,
hpicfPimStaticRPSetAddress }
::= { hpicfPimStaticRPSetTable 1 }
HpicfPimStaticRPSetEntry ::=
SEQUENCE {
hpicfPimStaticRPSetGroupAddress IpAddress,
hpicfPimStaticRPSetGroupMask IpAddress,
hpicfPimStaticRPSetAddress IpAddress,
hpicfPimStaticRPSetOverride TruthValue,
hpicfPimStaticRPSetRowStatus RowStatus
}
hpicfPimStaticRPSetGroupAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP multicast group address which, when combined
with hpicfPimStaticRPSetGroupMask, gives the group
prefix for which this entry contains information
about the statically configured RP."
::= { hpicfPimStaticRPSetEntry 1 }
hpicfPimStaticRPSetGroupMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The multicast group address mask which, when combined
with hpicfPimStaticRPSetGroupAddress, gives the group
prefix for which this entry contains information about
the statically configured RP."
::= { hpicfPimStaticRPSetEntry 2 }
hpicfPimStaticRPSetAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address of statically configured RP for the
given IP multicast group(s)."
::= { hpicfPimStaticRPSetEntry 3 }
hpicfPimStaticRPSetOverride OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "If true, indicates that the router should ignore the
information learned by a BSR if there is a conflict
between the information this static entry contains and
the information that is learned by the BSR.
Default is false."
DEFVAL { false }
::= { hpicfPimStaticRPSetEntry 4 }
hpicfPimStaticRPSetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this row, by which new entries may be
created, or old entries deleted from this table."
::= { hpicfPimStaticRPSetEntry 5 }
-- **********************************************************************
-- The Extensions to the PIM Interface Table (RFC 2934)
-- **********************************************************************
hpicfPimIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPimIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to the pimInterfaceTable."
::= { hpicfPim 6 }
hpicfPimIfEntry OBJECT-TYPE
SYNTAX HpicfPimIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for an entry in the pimInterfaceTable."
AUGMENTS { pimInterfaceEntry }
::= { hpicfPimIfTable 1 }
HpicfPimIfEntry ::=
SEQUENCE {
hpicfPimIfAddress IpAddress,
hpicfPimIfTrigHelloInterval Integer32,
hpicfPimIfHelloHoldtime Integer32,
hpicfPimIfLanPruneDelay TruthValue,
hpicfPimIfPropagationDelay Integer32,
hpicfPimIfOverrideInterval Integer32,
hpicfPimIfGenerationID TruthValue,
hpicfPimIfJoinPruneHoldtime Unsigned32,
hpicfPimIfGraftRetryInterval Integer32,
hpicfPimIfMaxGraftRetries Integer32,
hpicfPimIfSRTTLThreshold Unsigned32,
hpicfPimIfLanDelayEnabled TruthValue,
hpicfPimIfSRCapable TruthValue,
hpicfPimIfDRPriority Unsigned32,
hpicfPimIfNBRTimeout Integer32,
hpicfPimIfNBRCount Counter32,
hpicfPimIfNegotiatedPropagationDelay TimeTicks,
hpicfPimIfNegotiatedOverrideInterval TimeTicks,
hpicfPimIfAssertHoldInterval Counter32,
hpicfPimIfNumRoutersNotUsingDRPriority Counter32,
hpicfPimIfNumRoutersNotUsingLanDelay Counter32
}
hpicfPimIfAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This is copy of pimInterfaceAddress with read-create
access. PIM uses this source address to send its
protocol packets out on this interface. This address can
be set to one of IP addresses of the interface or
255.255.255.255 if the address is determined dynamically
based on the current IP configuration.
The currently used source address is value of
pimInterfaceAddress in the latter case."
::= { hpicfPimIfEntry 1 }
hpicfPimIfTrigHelloInterval OBJECT-TYPE
SYNTAX Integer32 (0..5)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The maximum time before a triggered PIM Hello message
is transmitted on this interface. Default is 5 seconds."
DEFVAL { 5 }
::= { hpicfPimIfEntry 2 }
hpicfPimIfHelloHoldtime OBJECT-TYPE
SYNTAX Integer32 (17..1050)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value set in the Holdtime field of Hello messages
transmitted on this interface. This should be 3.5
times the value of pimInterfaceHelloInterval.
Default is 105 seconds."
DEFVAL { 105 }
::= { hpicfPimIfEntry 3 }
hpicfPimIfLanPruneDelay OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Turns the LAN Prune Delay options ON and OFF, on this
interface. Default is true."
DEFVAL { true }
::= { hpicfPimIfEntry 4 }
hpicfPimIfPropagationDelay OBJECT-TYPE
SYNTAX Integer32 (250..2000)
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value inserted into the LAN Prune Delay field of a
LAN Prune Delay option on this interface.
Default is 500 milliseconds."
DEFVAL { 500 }
::= { hpicfPimIfEntry 5 }
hpicfPimIfOverrideInterval OBJECT-TYPE
SYNTAX Integer32 (500..6000)
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value inserted into the Override Interval field of
a LAN Prune Delay option on this interface.
Default is 2500 milliseconds."
DEFVAL { 2500 }
::= { hpicfPimIfEntry 6 }
hpicfPimIfGenerationID OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Turns the Generation ID option ON and OFF, on this
interface. Default is false."
DEFVAL { false }
::= { hpicfPimIfEntry 7 }
hpicfPimIfJoinPruneHoldtime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value inserted into the Holdtime field of a Join/
Prune message sent on this interface. The value should
be 3.5 times pimInterfaceJoinPruneInterval.
Default is 210 seconds."
DEFVAL { 210 }
::= { hpicfPimIfEntry 8 }
hpicfPimIfGraftRetryInterval OBJECT-TYPE
SYNTAX Integer32 (1..10)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The interval a PIM router waits for a Graft Ack before
re-sending a Graft on this interface.
Default is 3 seconds."
DEFVAL { 3 }
::= { hpicfPimIfEntry 9 }
hpicfPimIfMaxGraftRetries OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The maximum number of times this router will re-send a
Graft on this interface. Default is 2."
DEFVAL { 2 }
::= { hpicfPimIfEntry 10 }
hpicfPimIfSRTTLThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The Time To Live in a PIM-DM State Refresh message at
which it is not forwarded on this interface. Default is 0."
DEFVAL { 0 }
::= { hpicfPimIfEntry 11 }
hpicfPimIfLanDelayEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Evaluates to TRUE if all routers on this interface are
using the LAN Prune Delay Option."
::= { hpicfPimIfEntry 12 }
hpicfPimIfSRCapable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Evaluates to TRUE if all routers on this interface are
using the State Refresh Capable Option."
::= { hpicfPimIfEntry 13 }
hpicfPimIfDRPriority OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The Designated Router Priority inserted into the DR
priority option on this interface. Default is 1."
DEFVAL { 1 }
::= { hpicfPimIfEntry 14 }
hpicfPimIfNBRTimeout OBJECT-TYPE
SYNTAX Integer32 (60..8000)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Time interval after which the router will consider a
neighbor to not be present, if no PIM Hello messages
arrived on the interface. Default is 180 seconds."
DEFVAL { 180 }
::= { hpicfPimIfEntry 15 }
hpicfPimIfNBRCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PIM Neighbor Count."
::= { hpicfPimIfEntry 16 }
hpicfPimIfNegotiatedPropagationDelay OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Negotiated PIM LAN/Propagation Delay (ms)."
::= { hpicfPimIfEntry 17 }
hpicfPimIfNegotiatedOverrideInterval OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Negotiated PIM Override Interval (ms)."
::= { hpicfPimIfEntry 18 }
hpicfPimIfAssertHoldInterval OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PIM Assert Hold Interval (s)."
::= { hpicfPimIfEntry 19 }
hpicfPimIfNumRoutersNotUsingDRPriority OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of routers on network not using DR priority."
::= { hpicfPimIfEntry 20 }
hpicfPimIfNumRoutersNotUsingLanDelay OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of routers on network not using LAN Delay."
::= { hpicfPimIfEntry 21 }
-- **********************************************************************
-- The Extensions to the PIM Component Table (RFC 2934)
-- **********************************************************************
hpicfPimComponentTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPimComponentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to the pimComponentTable - the
(conceptual) table containing objects specific to a
PIM domain. One row exists for each domain to which
the router is connected. Typically, a PIM-SM router
will be a member of exactly one domain, however, the
table also supports routers which may form a border
between two PIM-SM domains and do not forward Bootstrap
messages between them."
::= { hpicfPim 7 }
hpicfPimComponentEntry OBJECT-TYPE
SYNTAX HpicfPimComponentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for an entry in the pimComponentTable."
AUGMENTS { pimComponentEntry }
::= { hpicfPimComponentTable 1 }
HpicfPimComponentEntry ::=
SEQUENCE {
-- ------------------
-- read-write objects
-- ------------------
hpicfPimComponentCBSRAdminStatus INTEGER,
hpicfPimComponentCBSRAddress IpAddress,
hpicfPimComponentCBSRPriority Integer32,
hpicfPimComponentCBSRHashMaskLength Integer32,
hpicfPimComponentCBSRMessageInterval Integer32,
hpicfPimComponentCRPPriority Integer32,
-- ------------------
-- read-only objects
-- ------------------
hpicfPimComponentCRPAdvInterval Unsigned32,
hpicfPimComponentBSRPriority Unsigned32,
hpicfPimComponentBSRHashMaskLength Unsigned32,
hpicfPimComponentBSRUpTime TimeTicks,
hpicfPimComponentBSRNextMessage TimeTicks,
hpicfPimComponentCRPAdvTimer TimeTicks
}
hpicfPimComponentCBSRAdminStatus OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This objects specifies whether or not the router
configured to be a Candidate BSR for the local
PIM region. Default is disabled."
DEFVAL { disable }
::= { hpicfPimComponentEntry 1 }
hpicfPimComponentCBSRAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The IP address the Candidate BSR router will advertise
for the local PIM region."
::= { hpicfPimComponentEntry 2 }
hpicfPimComponentCBSRPriority OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The priority for Candidate BSR router. In BSR election
process the candidate BSR with the highest (numerically
bigger) priority becomes the BSR. If the priority values
are the same, the router with the larger IP address is
the BSR. Default is 0."
DEFVAL { 0 }
::= { hpicfPimComponentEntry 3 }
hpicfPimComponentCBSRHashMaskLength OBJECT-TYPE
SYNTAX Integer32 (1..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies the length (in bits) of a multicast group
address to use when mapping a group to one of the
candidate RPs from the RP-Set whose group-prefix
includes the group. The recommended value for IPv4
is 30, for IPv6 is 126. Default is 30."
DEFVAL { 30 }
::= { hpicfPimComponentEntry 4 }
hpicfPimComponentCBSRMessageInterval OBJECT-TYPE
SYNTAX Integer32 (5..65535)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "If this router is the elected BSR, then this is the
interval for sending (multicast out) periodic Bootstrap
(RP-Set) messages on all PIM SM interfaces.
Default is 60 seconds."
DEFVAL { 60 }
::= { hpicfPimComponentEntry 5 }
hpicfPimComponentCRPPriority OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The priority for the Candidate RP for the local PIM
domain. Determines which Candidate RPs get selected by
the BSR to be in the RP Set. The smaller value means
the higher priority (a value of zero is the highest
possible priority). Default is 192."
DEFVAL { 192 }
::= { hpicfPimComponentEntry 6 }
hpicfPimComponentCRPAdvInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The interval at which the Candidate RP transmits
(unicast to the elected BSR) advertise messages in
the local PIM domain."
::= { hpicfPimComponentEntry 7 }
hpicfPimComponentBSRPriority OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The priority of the Bootstrap Router (BSR) elected
for the local PIM region."
::= { hpicfPimComponentEntry 8 }
hpicfPimComponentBSRHashMaskLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The hash mask length of the elected Bootstrap
Router (BSR)."
::= { hpicfPimComponentEntry 9 }
hpicfPimComponentBSRUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Length of time that the elected Bootstrap Router (BSR)
has been up."
::= { hpicfPimComponentEntry 10 }
hpicfPimComponentBSRNextMessage OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Time in which the next bootstrap message is due from
the elected Bootstrap Router (BSR)."
::= { hpicfPimComponentEntry 11 }
hpicfPimComponentCRPAdvTimer OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Next scheduled Candidate RP Advertisement."
::= { hpicfPimComponentEntry 12 }
hpicfPimRemoveConfig OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PIM is halted. This objects clears all existing PIM
configuration, intializes the pim config to the default
state. SnmpGet on this will always return false.
An SnmpSet of false has no effect."
DEFVAL { false }
::= { hpicfPim 8 }
-- **********************************************************************
-- HP PIM Static RPF Override table
-- **********************************************************************
hpicfPimStaticRpfTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPimStaticRpfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The (conceptual) table containing statically configured
reverse path forwarding (RPF) source address to interface
mappings. This information is currently used in the PIM
sparse mode only."
::= { hpicfPim 9 }
hpicfPimStaticRpfEntry OBJECT-TYPE
SYNTAX HpicfPimStaticRpfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A row in the hpicfPimStaticRpfTable."
INDEX { hpicfPimStaticRpfSourceAddressType,
hpicfPimStaticRpfSourceAddress,
hpicfPimStaticRpfSourcePrefixLength,
hpicfPimStaticRpfAddressType,
hpicfPimStaticRpfAddress }
::= { hpicfPimStaticRpfTable 1 }
HpicfPimStaticRpfEntry ::=
SEQUENCE {
hpicfPimStaticRpfSourceAddressType InetAddressType,
hpicfPimStaticRpfSourceAddress InetAddress,
hpicfPimStaticRpfSourcePrefixLength InetAddressPrefixLength,
hpicfPimStaticRpfAddressType InetAddressType,
hpicfPimStaticRpfAddress InetAddress,
hpicfPimStaticRpfRowStatus RowStatus,
hpicfPimStaticRpfOverrideState INTEGER,
hpicfPimStaticRpfIfIndex InterfaceIndex,
hpicfPimStaticRpfNeighborAddressType InetAddressType,
hpicfPimStaticRpfNeighborAddress InetAddress
}
hpicfPimStaticRpfSourceAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address type of the statically configured
multicast source."
::= { hpicfPimStaticRpfEntry 1}
hpicfPimStaticRpfSourceAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address of the statically configured
multicast source."
::= { hpicfPimStaticRpfEntry 2}
hpicfPimStaticRpfSourcePrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The prefix length of the statically
configured multicast source."
::= { hpicfPimStaticRpfEntry 3}
hpicfPimStaticRpfAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The type of RPF address for this route.
The value of this object must be equal to a value
appropriate for the corresponding instance of the
hpicfPimStaticRpfSourceAddressType object."
::= { hpicfPimStaticRpfEntry 4}
hpicfPimStaticRpfAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address of the interface to use for RPF
checks."
::= { hpicfPimStaticRpfEntry 5}
hpicfPimStaticRpfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this row, by which new entries may be
created, or old entries deleted from this table."
::= { hpicfPimStaticRpfEntry 6}
hpicfPimStaticRpfOverrideState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inActive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The state of this RPF override entry."
::= { hpicfPimStaticRpfEntry 7}
hpicfPimStaticRpfIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of the Interface towards the RPF neighbor."
::= { hpicfPimStaticRpfEntry 8 }
hpicfPimStaticRpfNeighborAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address type of the statically configured
RPF neighbor."
::= { hpicfPimStaticRpfEntry 9 }
hpicfPimStaticRpfNeighborAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address of the static RPF Neighbor."
::= { hpicfPimStaticRpfEntry 10 }
-- **********************************************************************
-- Sum total of entries in hpicfPimStaticRpfTable
-- **********************************************************************
hpicfPimNumStaticRpfEntries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of Static RPF entries."
::= { hpicfPim 10 }
hpicfPimVersion OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Currently running PIM Version."
::= { hpicfPim 11 }
hpicfPimStarGEntries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of entries in the (*,G) table"
::= { hpicfPim 12 }
hpicfPimSGEntries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of entries in the (S,G) table."
::= { hpicfPim 13 }
-- **********************************************************************
-- Extensions to the ipMRouteEntry table (RFC 2932)
-- **********************************************************************
hpicfPimMRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPimMRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to rfc2932's ipMRouteEntry table."
::= { hpicfPim 14 }
hpicfPimMRouteEntry OBJECT-TYPE
SYNTAX HpicfPimMRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for an entry in ipMRouteEntry."
AUGMENTS { ipMRouteEntry }
::= { hpicfPimMRouteTable 1 }
HpicfPimMRouteEntry ::=
SEQUENCE {
hpicfPimSendRegStop TruthValue,
hpicfPimSGSourceIsActive TruthValue,
hpicfPimOutgoingRegisterIfAvailable TruthValue,
hpicfPimEntryAddSuccess TruthValue,
hpicfPimNumOutgoingInterfaces Counter32,
hpicfPimDirectlyConnectedSource TruthValue,
hpicfPimNeighborSearchFailure TruthValue,
hpicfPimRPTreePruneSent TruthValue,
hpicfPimOnSPTree TruthValue,
hpicfPimRPToSPTreeSwitching TruthValue,
hpicfPimWildcardEntry TruthValue,
hpicfPimRPFPrimeNeighborAddressType InetAddressType,
hpicfPimRPFPrimeNeighborAddress InetAddress,
hpicfPimNumDownstreams Counter32
}
hpicfPimSendRegStop OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates that a register-stop message must be sent."
::= { hpicfPimMRouteEntry 1 }
hpicfPimSGSourceIsActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the multicast source
corresponding to the (S,G) is active."
::= { hpicfPimMRouteEntry 2 }
hpicfPimOutgoingRegisterIfAvailable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates that a register outgoing
interface is available."
::= { hpicfPimMRouteEntry 3 }
hpicfPimEntryAddSuccess OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates that an entry has been
successfully added."
::= { hpicfPimMRouteEntry 4 }
hpicfPimNumOutgoingInterfaces OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "List of outgoing interfaces."
::= { hpicfPimMRouteEntry 5 }
hpicfPimDirectlyConnectedSource OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies PIM routing entries on routers
directly connecting to the same subnet with the
multicast source."
::= { hpicfPimMRouteEntry 6 }
hpicfPimNeighborSearchFailure OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies PIM routing entries with PIM
neighbor searching failure."
::= { hpicfPimMRouteEntry 7 }
hpicfPimRPTreePruneSent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies PIM routing entries on RPT branches
where (S, G) prunes have been sent to the RP."
::= { hpicfPimMRouteEntry 8 }
hpicfPimOnSPTree OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies PIM routing entries on the SPT."
::= { hpicfPimMRouteEntry 9 }
hpicfPimRPToSPTreeSwitching OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies PIM routing entries in the process of
RPT-to-SPT switchover."
::= { hpicfPimMRouteEntry 10 }
hpicfPimWildcardEntry OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies wildcard routing entries."
::= { hpicfPimMRouteEntry 11 }
hpicfPimRPFPrimeNeighborAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "RPF Prime Neighbor address type"
::= { hpicfPimMRouteEntry 12 }
hpicfPimRPFPrimeNeighborAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "RPF Prime Neighbor address"
::= { hpicfPimMRouteEntry 13 }
hpicfPimNumDownstreams OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Total number of downstreams."
::= { hpicfPimMRouteEntry 14 }
-- **********************************************************************
-- Sum total of the entries in hpicfPimNeighborTable
-- **********************************************************************
hpicfPimTotalNeighborCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PIM Neighbor Count."
::= { hpicfPim 15 }
-- **********************************************************************
-- Extensions to the PIM Neighbor Table (RFC 2934)
-- **********************************************************************
hpicfPimNeighborTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPimNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to the pimNeighborTable."
::= { hpicfPim 16 }
hpicfPimNeighborEntry OBJECT-TYPE
SYNTAX HpicfPimNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for an entry in the pimNeighborTable."
AUGMENTS { pimNeighborEntry }
::= { hpicfPimNeighborTable 1 }
HpicfPimNeighborEntry ::=
SEQUENCE {
hpicfPimNeighborDRPriority Counter32,
hpicfPimNeighborGenerationIDValue Counter32,
hpicfPimNeighborHoldtime Counter32,