-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfMld.mib
1683 lines (1503 loc) · 69 KB
/
hpicfMld.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-MLD-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY,
Integer32, Counter32, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, TruthValue, RowStatus
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID
mldInterfaceEntry
FROM IPV6-MLD-MIB
TimeTicks
FROM SNMPv2-SMI
InetAddressIPv6
FROM INET-ADDRESS-MIB
PortList
FROM Q-BRIDGE-MIB
InterfaceIndex
FROM IF-MIB;
hpicfMldMIB MODULE-IDENTITY
LAST-UPDATED "201302100000Z" -- Feb 10, 2013
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module contains HP proprietary
MIB definitions for managing MLD services
including extensions to the standard MLD MIB (RFC 3019)."
REVISION "201302100000Z" -- Feb 10, 2013
DESCRIPTION "Added objects hpicfMldIfEntryStartupQueryExpiryTime,
hpicfMldIfEntryOtherQuerierInterval,
hpicfMldIfEntryOtherQuerierExpiryTimex,compliance
hpicfMldMIBComplianceV3 and group hpicfMldIfGroupV3.
deprecated compliance hpicfMldMIBComplianceV2 and
group hpicfMldIfGroupV2."
REVISION "201103100000Z" -- Mar 10, 2011
DESCRIPTION "Added group specific query counter and MLD state"
REVISION "201101110000Z" -- Jan 11, 2011
DESCRIPTION "Added hpicfMldPortSrcFilterMode,
hpicfMldIfEntryStatMldV1ReportTx and
hpicfMldIfEntryStatMldV2ReportTx."
REVISION "201009090000Z" -- Sep 9, 2010
DESCRIPTION "MLDv2 support included."
REVISION "200707020000Z" -- July 2, 2007
DESCRIPTION "Initial revision."
::= { hpSwitch 48 }
-- -------------------------------------------------------------
-- Textual Conventions
-- -------------------------------------------------------------
HpicfMcastGroupTypeDefinition ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Type definition. This type distinguishes the
different ways of tracking this device has for
multicast joins. The method of tracking is primarily
determined by the IGMP/MLD feature configuration. In
particular if the snooping feature is enabled then
port level tracking is the default which results in
filtered groups. If the snooping feature is
disabled then joins will result in standard groups
being tracked by this device. When hardware resources
are exhausted for multicast filtered bridging, joins
may result in standard groups even though the snooping
feature is enabled. Mini groups may be used when
other resources, such as RAM, are low or exhausted."
SYNTAX INTEGER { standard(1), filtered(2), mini(3) }
HpicfMldIfEntryState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "MLD interface states."
SYNTAX INTEGER {
initialWait (1),
querierElection (2),
querier (3),
nonQuerier (4)
}
-- **********************************************************************
-- The MLD MIB Groups
-- **********************************************************************
hpicfMldObjects OBJECT IDENTIFIER ::= { hpicfMldMIB 1 }
hpicfMld OBJECT IDENTIFIER ::= { hpicfMldObjects 1 }
hpicfMldConformance OBJECT IDENTIFIER ::= { hpicfMldMIB 2 }
hpicfMldGroups OBJECT IDENTIFIER ::= { hpicfMldConformance 1 }
hpicfMldCompliances OBJECT IDENTIFIER ::= { hpicfMldConformance 2 }
-- **********************************************************************
-- Start of MIB objects
-- **********************************************************************
hpicfMldControlUnknownMulticast OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When enabled along with MLD, any IPv6 Multicast
packets that are not joined by an MLD host will
will be restricted to ports that have detected a
multicast router or ports that are configured to
always forward IPv6 multicast. When set to disabled
or when MLD is disabled, the unjoined IPv6 multicast
packets will be flooded out all ports in the VLAN.
Permanently assigned multicast addresses are always
flooded and so are not impacted by this object."
DEFVAL { true }
::= { hpicfMld 1 }
hpicfMldConfigForcedLeaveInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When a port's
hpicfMldPortConfigEntryForcedLeaveFeature is
enabled, this is the amount of time allowed for an
MLD Report to arrive and cancel deletion of a
multicast group requested by a previous MLD
Leave request. Units are tenths of seconds."
::= { hpicfMld 2 }
hpicfMldEnabledCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current total count of interfaces with MLD enabled."
::= { hpicfMld 3 }
hpicfMldMcastGroupJoinsCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current total count of Multicast groups joined."
::= { hpicfMld 4 }
-- **********************************************************************
-- The Extensions to the MLD std MIB mldInterfaceTable (RFC 3019)
-- **********************************************************************
hpicfMldIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfMldIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to the MLD standard MIB table mldIfTable."
::= { hpicfMld 5 }
hpicfMldIfEntry OBJECT-TYPE
SYNTAX HpicfMldIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for an entry in the mldInterfaceTable."
AUGMENTS { mldInterfaceEntry }
::= { hpicfMldIfTable 1 }
HpicfMldIfEntry ::=
SEQUENCE {
hpicfMldIfEntryQuerierFeature TruthValue,
hpicfMldIfEntrySnoopingFeature TruthValue,
hpicfMldIfEntryQuerierPort Integer32,
hpicfMldIfEntryFilteredJoins Integer32,
hpicfMldIfEntryStandardJoins Integer32,
hpicfMldIfEntryPortsWithMcastRouter PortList,
hpicfMldIfEntryStatGeneralQueryRx Counter32,
hpicfMldIfEntryStatQueryTx Counter32,
hpicfMldIfEntryStatGSQRx Counter32,
hpicfMldIfEntryStatGSQTx Counter32,
hpicfMldIfEntryStatMldV1ReportRx Counter32,
hpicfMldIfEntryStatMldV2ReportRx Counter32,
hpicfMldIfEntryStatMldV1LeaveRx Counter32,
hpicfMldIfEntryStatUnknownMldTypeRx Counter32,
hpicfMldIfEntryStatUnknownPktRx Counter32,
hpicfMldIfEntryStatForwardToRoutersTx Counter32,
hpicfMldIfEntryStatForwardToAllPortsTx Counter32,
hpicfMldIfEntryStatFastLeaves Counter32,
hpicfMldIfEntryStatForcedFastLeaves Counter32,
hpicfMldIfEntryStatJoinTimeouts Counter32,
hpicfMldIfEntryStatWrongVersionQueries
Counter32,
hpicfMldIfEntryLastMemberQueryCount Counter32,
hpicfMldIfEntryStartupQueryCount Counter32,
hpicfMldIfEntryStartupQueryInterval Unsigned32,
hpicfMldIfEntryStatExcludeGroupJoinsCount
Counter32,
hpicfMldIfEntryStatIncludeGroupJoinsCount
Counter32,
hpicfMldIfEntryStatFilteredExcludeGroupJoinsCount
Counter32,
hpicfMldIfEntryStatFilteredIncludeGroupJoinsCount
Counter32,
hpicfMldIfEntryStatStandardExcludeGroupJoinsCount
Counter32,
hpicfMldIfEntryStatStandardIncludeGroupJoinsCount
Counter32,
hpicfMldIfEntryStatV1QueryTx Counter32,
hpicfMldIfEntryStatV1QueryRx Counter32,
hpicfMldIfEntryStatV2QueryTx Counter32,
hpicfMldIfEntryStatV2QueryRx Counter32,
hpicfMldIfEntryStatGSSQTx Counter32,
hpicfMldIfEntryStatGSSQRx Counter32,
hpicfMldIfEntryStatMalformedPktRx Counter32,
hpicfMldIfEntryStatBadCheckSumRx Counter32,
hpicfMldIfEntryStatMartianSourceRx Counter32,
hpicfMldIfEntryStatPacketsRxOnDisabled
Counter32,
hpicfMldIfEntryStrictVersionMode TruthValue,
hpicfMldIfEntryStatMldV1ReportTx Counter32,
hpicfMldIfEntryStatMldV2ReportTx Counter32,
hpicfMldIfEntryState HpicfMldIfEntryState,
hpicfMldIfEntryStatV1GSQRx Counter32,
hpicfMldIfEntryStatV1GSQTx Counter32,
hpicfMldIfEntryStatV2GSQRx Counter32,
hpicfMldIfEntryStatV2GSQTx Counter32,
hpicfMldIfEntryStartupQueryExpiryTime TimeTicks,
hpicfMldIfEntryOtherQuerierInterval Unsigned32,
hpicfMldIfEntryOtherQuerierExpiryTime TimeTicks
}
hpicfMldIfEntryQuerierFeature OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Turns MLD querier functionality on and off."
DEFVAL { true }
::= { hpicfMldIfEntry 1 }
hpicfMldIfEntrySnoopingFeature OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When enabled along with MLD, any IPv6 Multicast
packets that are joined by an MLD host will be
be restricted to ports which have received the
joins. This can be overridden by other features
like hpicfMldPortConfigEntryPortModeFeature."
DEFVAL { true }
::= { hpicfMldIfEntry 2 }
hpicfMldIfEntryQuerierPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Logical port which the querier is connected to. This is
determined by the presence of querier packets on this port.
This value is 0 if this device is querier."
::= { hpicfMldIfEntry 3 }
hpicfMldIfEntryFilteredJoins OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current total count of groups on this interface being tracked on a
per port basis. Traffic for these groups will be filtered to flow
only to ports with active joins, subject to HW resource limitations
such as the maximum number of groups supported by the hardware."
::= { hpicfMldIfEntry 4 }
hpicfMldIfEntryStandardJoins OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current total count of groups on this interface being traced on a
per interface basis. Traffic for these groups are flooded to the
ports on the interface. These can come form joinees on interfaces
which do not have MLD snooping turned on. They can also come from
interfaces which have MLD snooping on, but HW resources have been
exhausted for bridging traffic based on joins."
::= { hpicfMldIfEntry 5 }
hpicfMldIfEntryPortsWithMcastRouter OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This indicates which ports have a multicast router detected on
them."
::= { hpicfMldIfEntry 6 }
hpicfMldIfEntryStatGeneralQueryRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an Mld General Service Query
has been received on this interface."
::= { hpicfMldIfEntry 7 }
hpicfMldIfEntryStatQueryTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a query has been sent from this interface."
::= { hpicfMldIfEntry 8}
hpicfMldIfEntryStatGSQRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a group specific query has been received from
this interface."
::= { hpicfMldIfEntry 9}
hpicfMldIfEntryStatGSQTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a group specific query has been sent from
this interface."
::= { hpicfMldIfEntry 10}
hpicfMldIfEntryStatMldV1ReportRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an MLD version 1 report has been received on
this interface."
::= { hpicfMldIfEntry 11}
hpicfMldIfEntryStatMldV2ReportRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an MLD version 2 report has been received on
this interface."
::= { hpicfMldIfEntry 12}
hpicfMldIfEntryStatMldV1LeaveRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an MLD version 1 leave has been received on
this interface."
::= { hpicfMldIfEntry 13}
hpicfMldIfEntryStatUnknownMldTypeRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an Mld packet of unknown type has been received
on this interface."
::= { hpicfMldIfEntry 14}
hpicfMldIfEntryStatUnknownPktRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a packet of unknown type has been sent to the
MLD protocol on this device on this interface."
::= { hpicfMldIfEntry 15}
hpicfMldIfEntryStatForwardToRoutersTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a packet has been forwarded to routers on this
interface."
::= { hpicfMldIfEntry 16}
hpicfMldIfEntryStatForwardToAllPortsTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a packet has been forwarded to all ports on this
interface."
::= { hpicfMldIfEntry 17}
hpicfMldIfEntryStatFastLeaves OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a fast leave has occurred on this interface."
::= { hpicfMldIfEntry 18}
hpicfMldIfEntryStatForcedFastLeaves OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a forced fast leave has occurred on this interface."
::= { hpicfMldIfEntry 19}
hpicfMldIfEntryStatJoinTimeouts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times a join has timeout out on this interface."
::= { hpicfMldIfEntry 20}
hpicfMldIfEntryStatWrongVersionQueries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of general queries received whose MLD
version does not match the equivalent Interface
Version."
::= { hpicfMldIfEntry 21}
hpicfMldIfEntryLastMemberQueryCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Represents the number of group-specific and
group-and-source-specific queries sent by the
router before it assumes there are no local
members."
::= { hpicfMldIfEntry 22}
hpicfMldIfEntryStartupQueryCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Represents the number of Queries sent out on
startup, separated by the Startup Query Interval
(hpicfMldIfEntryStartupQueryInterval) "
::= { hpicfMldIfEntry 23}
hpicfMldIfEntryStartupQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Represents the interval between General Queries
sent by a Querier on startup."
::= { hpicfMldIfEntry 24}
hpicfMldIfEntryStatExcludeGroupJoinsCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current number of groups on this interface which
are in EXCLUDE mode."
::= { hpicfMldIfEntry 25}
hpicfMldIfEntryStatIncludeGroupJoinsCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current number of groups on this interface which
are in INCLUDE mode."
::= { hpicfMldIfEntry 26}
hpicfMldIfEntryStatFilteredExcludeGroupJoinsCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current number of filtered groups on this interface
which are in EXCLUDE mode."
::= { hpicfMldIfEntry 27}
hpicfMldIfEntryStatFilteredIncludeGroupJoinsCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current number of filtered groups on this interface
which are in INCLUDE mode."
::= { hpicfMldIfEntry 28}
hpicfMldIfEntryStatStandardExcludeGroupJoinsCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current number of standard groups on this interface
which are in EXCLUDE Mode. Traffic for these groups
is flooded to the ports on the interface. These can
come form joins on interfaces which do not have MLD
snooping turned on. They can also come from
interfaces which have MLD snooping on, but hardware
resources have been exhausted for bridging traffic
based on joins."
::= { hpicfMldIfEntry 29}
hpicfMldIfEntryStatStandardIncludeGroupJoinsCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current number of standard groups on this interface
which are in INCLUDE Mode. Traffic for these groups
is flooded to the ports on the interface. These can
come form joins on interfaces which do not have MLD
snooping turned on. They can also come from
interfaces which have MLD snooping on, but hardware
resources have been exhausted for bridging traffic
based on joins."
::= { hpicfMldIfEntry 30}
hpicfMldIfEntryStatV1QueryTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V1 Queries transmitted on this
interface."
::= { hpicfMldIfEntry 31}
hpicfMldIfEntryStatV1QueryRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V1 Queries received on this
interface."
::= { hpicfMldIfEntry 32}
hpicfMldIfEntryStatV2QueryTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V2 Queries transmitted on this
interface."
::= { hpicfMldIfEntry 33}
hpicfMldIfEntryStatV2QueryRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V2 Queries received on this
interface."
::= { hpicfMldIfEntry 34}
hpicfMldIfEntryStatGSSQTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Group Source Specific Queries
transmitted on this interface."
::= { hpicfMldIfEntry 35}
hpicfMldIfEntryStatGSSQRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Group Source Specific Queries
received on this interface"
::= { hpicfMldIfEntry 36}
hpicfMldIfEntryStatMalformedPktRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of malformed packets received on this
interface."
::= { hpicfMldIfEntry 37}
hpicfMldIfEntryStatBadCheckSumRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bad checksum packets received on this
interface."
::= { hpicfMldIfEntry 38}
hpicfMldIfEntryStatMartianSourceRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of packets received on this interface
from Martian source. Martian source are the packets
with invalid source address, e.g. 255.255.255.255."
::= { hpicfMldIfEntry 39}
hpicfMldIfEntryStatPacketsRxOnDisabled OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of MLD packets received on this
interface when MLD is disabled."
::= { hpicfMldIfEntry 40}
hpicfMldIfEntryStrictVersionMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When true, MLD packets whose version matches the
protocol version configured on this interface will
be processed. Other version MLD packets will be
dropped. When false, all protocol version packets
will be processed irrespective of the configured
version."
DEFVAL { false }
::= { hpicfMldIfEntry 41}
hpicfMldIfEntryStatMldV1ReportTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an MLD version 1 report was
transmitted on this interface."
::= { hpicfMldIfEntry 42}
hpicfMldIfEntryStatMldV2ReportTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times an MLD version 2 report was
transmitted on this interface."
::= { hpicfMldIfEntry 43}
hpicfMldIfEntryState OBJECT-TYPE
SYNTAX HpicfMldIfEntryState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Represents the MLD interface state."
::= { hpicfMldIfEntry 44}
hpicfMldIfEntryStatV1GSQRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V1 group specific queries received on
this interface."
::= { hpicfMldIfEntry 45}
hpicfMldIfEntryStatV1GSQTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V1 group specific queries transmitted
by this interface."
::= { hpicfMldIfEntry 46}
hpicfMldIfEntryStatV2GSQRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V2 group specific queries received on
this interface."
::= { hpicfMldIfEntry 47}
hpicfMldIfEntryStatV2GSQTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of V2 group specific queries transmitted
by this interface."
::= { hpicfMldIfEntry 48}
hpicfMldIfEntryStartupQueryExpiryTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The minimum amount of time remaining before a multicast
router decides that there is no longer another multicast
router which should be the querier on startup on this
interface."
::= { hpicfMldIfEntry 49}
hpicfMldIfEntryOtherQuerierInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The length of time that must pass before a multicast
router decides that there is no longer another multicast
router which should be the querier on this interface."
::= { hpicfMldIfEntry 50}
hpicfMldIfEntryOtherQuerierExpiryTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The minimum amount of time remaining before a multicast
router decides that there is no longer another multicast
router which should be the querier on this interface."
::= { hpicfMldIfEntry 51}
-- *********************************************************************
-- The Extensions to the MLD std MIB mldCacheTable (RFC 3019)
-- *********************************************************************
hpicfMldCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfMldCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions to the MLD standard MIB table
mldCacheTable."
::= { hpicfMld 6 }
hpicfMldCacheEntry OBJECT-TYPE
SYNTAX HpicfMldCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "HP extensions for an entry in the mldCacheTable."
INDEX {hpicfMldCacheIfIndex, hpicfMldCacheAddress}
::= { hpicfMldCacheTable 1 }
HpicfMldCacheEntry ::=
SEQUENCE {
hpicfMldCacheIfIndex InterfaceIndex,
hpicfMldCacheAddress InetAddressIPv6,
hpicfMldCacheSelf TruthValue,
hpicfMldCacheLastReporter InetAddressIPv6,
hpicfMldCacheUpTime TimeTicks,
hpicfMldCacheExpiryTime TimeTicks,
hpicfMldGroupType HpicfMcastGroupTypeDefinition,
hpicfJoinedPorts PortList,
hpicfMldCacheStatus RowStatus,
hpicfMldCacheFilterMode INTEGER,
hpicfMldCacheExcludeModeExpiryTimer
TimeTicks,
hpicfMldCacheVersion1HostTimer
TimeTicks,
hpicfMldCacheSrcCount Counter32
}
hpicfMldCacheIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The internetwork-layer interface for which this entry
contains information for an IPv6 multicast group
address."
::= { hpicfMldCacheEntry 1 }
hpicfMldCacheAddress OBJECT-TYPE
SYNTAX InetAddressIPv6 (SIZE (16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPv6 multicast group address for which this entry
contains information."
::= { hpicfMldCacheEntry 2 }
hpicfMldCacheSelf OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An indication of whether the local system is a member of
this group address on this interface."
DEFVAL { true }
::= { hpicfMldCacheEntry 3 }
hpicfMldCacheLastReporter OBJECT-TYPE
SYNTAX InetAddressIPv6 (SIZE (16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv6 address of the source of the last membership
report received for this IPv6 Multicast group address on
this interface. If no membership report has been
received, this object has the value 0::0."
::= { hpicfMldCacheEntry 4 }
hpicfMldCacheUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since this entry was created."
::= { hpicfMldCacheEntry 5 }
hpicfMldCacheExpiryTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum amount of time remaining before this entry
will be aged out. A value of 0 indicates that the entry
is only present because mldCacheSelf is true and that if
the router left the group, this entry would be aged out
immediately. Note that some implementations may process
Membership Reports from the local system in the same way
as reports from other hosts, so a value of 0 is not
required."
::= { hpicfMldCacheEntry 6 }
hpicfMldGroupType OBJECT-TYPE
SYNTAX HpicfMcastGroupTypeDefinition
MAX-ACCESS read-only
STATUS current
DESCRIPTION "See HpicfMldGroupTypeDefinition description."
::= { hpicfMldCacheEntry 7 }
hpicfJoinedPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Logical ports with active MLD joins on them for this
entry. For Filtered groups this will be the logical
ports which have active joins. For standard and mini
groups this will include all logical ports on the
interface running MLD."
::= { hpicfMldCacheEntry 8 }
hpicfMldCacheStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row, by which new entries may be
created, or existing entries deleted from this table."
::= { hpicfMldCacheEntry 9 }
hpicfMldCacheFilterMode OBJECT-TYPE
SYNTAX INTEGER { include(1), exclude(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value indicates whether the group state
is include(1) or exclude(2)"
::= { hpicfMldCacheEntry 10 }
hpicfMldCacheExcludeModeExpiryTimer OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time remaining before the group in EXCLUDE state
expires and transitions to INCLUDE mode."
::= { hpicfMldCacheEntry 11 }
hpicfMldCacheVersion1HostTimer OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time remaining until the local router will assume
that there are no longer any MLD version 1 members on
the IP subnet attached to this interface "
::= { hpicfMldCacheEntry 12 }
hpicfMldCacheSrcCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of sources either included or excluded for
this group. If V1 host timer
(hpicfMldCacheVersion1HostTimer) is active, this value
will be zero."
::= { hpicfMldCacheEntry 13 }
-- **********************************************************************
-- MLD Port Configuration MIB
-- **********************************************************************
HpicfMldConfigPortModeType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Type definition. See
hpicfMldPortConfigEntryPortModeFeature for
definition of this feature."
SYNTAX INTEGER { auto(1), blocked(2), forward(3) }
hpicfMldPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfMldPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains information about the MLD port
configurations on this switch."
::= { hpicfMld 7 }
hpicfMldPortConfigEntry OBJECT-TYPE
SYNTAX HpicfMldPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each MLD port
configuration."
INDEX { hpicfMldPortConfigEntryInterfaceIfIndex, hpicfMldPortConfigEntryIndex }
::= { hpicfMldPortConfigTable 1 }
HpicfMldPortConfigEntry ::=
SEQUENCE {
hpicfMldPortConfigEntryInterfaceIfIndex InterfaceIndex,
hpicfMldPortConfigEntryIndex Integer32,
hpicfMldPortConfigEntryPortModeFeature HpicfMldConfigPortModeType,
hpicfMldPortConfigEntryForcedLeaveFeature TruthValue,
hpicfMldPortConfigEntryFastLeaveFeature TruthValue
}
hpicfMldPortConfigEntryInterfaceIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The internetwork-layer interface value of the interface
for which MLD is enabled."
::= { hpicfMldPortConfigEntry 1 }
hpicfMldPortConfigEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1 .. 65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value which uniquely identifies a row in the
Interfaces Table for a port or trunk."
::= { hpicfMldPortConfigEntry 2 }
hpicfMldPortConfigEntryPortModeFeature OBJECT-TYPE
SYNTAX HpicfMldConfigPortModeType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the MLD feature for this
port or trunk. 1 implies that all IP Multicast traffic
will be monitored on the port, 2 implies that
IP Multicast traffic will be dropped on the port, and
3 implies that all IP Multicast traffic will be
forwarded without the switch examining it."
::= { hpicfMldPortConfigEntry 3 }
hpicfMldPortConfigEntryForcedLeaveFeature OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the MLD feature for this
port or trunk indicates whether any MLD Leaves
received for an IPv6 Multicast group will cause the
group to be deleted after the
hpicfMLDConfigForcedLeaveInterval if no new MLD
Reports are received for that group. Normal behavior
is for a group issuing a Leave to be deleted after
the Querier's Maximum Response time if no MLD
Report is received."
::= { hpicfMldPortConfigEntry 4 }
hpicfMldPortConfigEntryFastLeaveFeature OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the MLD feature for this
port or trunk indicates whether any MLD Leaves
received for an IPv6 Multicast group will cause the
group to be deleted immediately on single-
connection ports. Normal behavior is for a group
issuing a Leave to be deleted after the Querier's
Maximum Response time if no MLD Report is
received."
::= { hpicfMldPortConfigEntry 5 }
-- **********************************************************************
-- MLD Filtered Group Port Cache MIB
-- **********************************************************************
hpicfMldFilteredGroupPortCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfMldFilteredGroupPortCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains information about the MLD port
configurations on this switch."
::= { hpicfMld 8 }
hpicfMldFilteredGroupPortCacheEntry OBJECT-TYPE
SYNTAX HpicfMldFilteredGroupPortCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each MLD port
configuration."
INDEX { hpicfMldFilteredGroupPortCacheIfIndex,
hpicfMldFilteredGroupPortCacheGroupAddress,
hpicfMldFilteredGroupPortCachePortIndex }
::= { hpicfMldFilteredGroupPortCacheTable 1 }
HpicfMldFilteredGroupPortCacheEntry ::=
SEQUENCE {
hpicfMldFilteredGroupPortCacheIfIndex InterfaceIndex,
hpicfMldFilteredGroupPortCacheGroupAddress InetAddressIPv6,
hpicfMldFilteredGroupPortCachePortIndex Integer32,
hpicfMldFilteredGroupPortCacheExpiryTime TimeTicks
}
hpicfMldFilteredGroupPortCacheIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The internetwork-layer interface value of the interface
for which MLD is enabled and for which this filtered
group exists."
::= { hpicfMldFilteredGroupPortCacheEntry 1 }
hpicfMldFilteredGroupPortCacheGroupAddress OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IPv6 multicast group address for which this
entry contains information."
::= { hpicfMldFilteredGroupPortCacheEntry 2 }
hpicfMldFilteredGroupPortCachePortIndex OBJECT-TYPE
SYNTAX Integer32 (1 .. 65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value which uniquely identifies a row in the
Interfaces Table for a port or trunk."
::= { hpicfMldFilteredGroupPortCacheEntry 3 }
hpicfMldFilteredGroupPortCacheExpiryTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current