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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
|
--
-- DASAN-MCAST-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 285
-- Thursday, March 08, 2007 at 16:25:57
--
DASAN-MCAST-MIB DEFINITIONS ::= BEGIN
IMPORTS
dsSwitchModules
FROM DASAN-SWITCH-MIB
ifIndex, InterfaceIndex
FROM IF-MIB
InetAddress
FROM INET-ADDRESS-MIB
OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Integer32, Unsigned32, Counter32, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC;
-- November 08, 2005 at 00:00 GMT
-- 1.3.6.1.4.1.6296.9.1.1.2.24
dsMcastMIB MODULE-IDENTITY
LAST-UPDATED "200511080000Z" -- November 08, 2005 at 00:00 GMT
ORGANIZATION
"dasannetworks, Inc."
CONTACT-INFO
"dasannetworks"
DESCRIPTION
"The MIB module for Multicast Feature."
::= { dsSwitchModules 24 }
--
-- Textual conventions
--
DsIgmpVersion ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value that represents the version of IGMP:
version1(1) : Version 1 of IGMP
version2(2) : Version 2 of IGMP
version3(3) : Version 3 of IGMP."
SYNTAX INTEGER
{
version1(1),
version2(2),
version3(3)
}
DsIgmpFilterMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"."
SYNTAX INTEGER
{
includeAllow(1),
includeBlock(2),
excludeAllow(3),
excludeBlock(4)
}
--
-- Node definitions
--
-- 1.3.6.1.4.1.6296.9.1.1.2.24.0
dsMcastNotification OBJECT IDENTIFIER::= { dsMcastMIB 0 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.0.1
dsIgmpSnoopingChanged NOTIFICATION-TYPE
OBJECTS { dsIgmpSnoopingEnabled }
STATUS current
DESCRIPTION
"A dsIgmpSnoopingEnableChanged should be generated when Igmp Snooping is enable or disable"
::= { dsMcastNotification 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.0.2
dsIgmpSnoopingVlanChanged NOTIFICATION-TYPE
OBJECTS { dsVlanIgmpSnoopingEnabled, dsVlanID }
STATUS current
DESCRIPTION
"A dsIgmpSnoopingVlanChanged should be generated when Igmp Snooping Vlan is enable or disable"
::= { dsMcastNotification 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1
dsIgmpSnoopingMIBObject OBJECT IDENTIFIER::= { dsMcastMIB 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1
dsSystemInfo OBJECT IDENTIFIER::= { dsIgmpSnoopingMIBObject 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.1
dsIgmpSnoopingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether IGMP Snooping has been
enabled for the system."
::= { dsSystemInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.2
dsFastLeaveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether Fast-Leave mechanism has been
configured to be enabled in the system. If Fast-Leave is
enabled in the switch, IGMP Snooping will prune the port on
which an IGMP leave message has been received without waiting
for the Group Specific Query to timeout to determine whether
there are any more hosts on that port for that group. If
the value of dsV3ProcessEnabledOperStatus is 'false',
this object will not have any effect."
::= { dsSystemInfo 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.3
dsFastBlockEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object indicates whether Fast-Block mechanism has been
enabled for the system. This object only has effect if the
value of dsV3ProcessEnabledOperStatus is 'true'."
::= { dsSystemInfo 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.4
dsReportSuppressionEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to 'true', IGMP Snooping will
suppress duplicate IGMP Reports. When this object is set
to 'false', all IGMP Reports are forwarded to all multicast
routers in the VLAN."
::= { dsSystemInfo 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.5
dsTopoChangeFloodQueryCount OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the flooding period for multicast
traffic upon receiving Topology Change Notifications (TCN).
IGMP Snooping will flood multicast traffic until
dsTopoChangeFloodQueryCount number of IGMP General Queries
are received by IGMP Snooping."
::= { dsSystemInfo 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.6
dsTopoChangeQuerySolicitEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the device running IGMP
Snooping will solicit IGMP General Queries from the
Querier upon receiving a Topology Change Notification (TCN).
The root device will always solicit IGMP General Queries
on TCN irrespective of the value of
dsTopoChangeQuerySolicitEnabled."
::= { dsSystemInfo 6 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.7
dsV3SnoopingSupport OBJECT-TYPE
SYNTAX INTEGER
{
basic(1),
full(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates IGMP Snooping support for
IGMPv3 as described below:
basic(1): Basic support for IGMPv3. IGMPv3 packets are
processed similar to IGMPv2 packets. In other words
Source list information is not used. Although this
does not break multicast traffic to IGMPv3 hosts,
it does not provide any other benefits such as Fast
Leave for IGMPv3 hosts, Explicit Host Tracking and
Source based filtering.
full(2): Full support for IGMPv3. Provides full IGMPv3
Snooping support. This includes processing of
IGMPv3 source list information along with group
information. Provides support for features such
as Fast Leave, Explicit Host Tracking and Proxy
Reporting and a potential to do Source based
filtering."
::= { dsSystemInfo 7 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.8
dsExplicitTrackingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsSystemInfo 8 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.9
dsIgmpSnoopingGroupCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of igmp snooping group entry."
::= { dsSystemInfo 9 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.1.10
dsMrouteJoinedCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of Mroute Joined channel."
::= { dsSystemInfo 10 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2
dsStatisticsInfo OBJECT IDENTIFIER::= { dsIgmpSnoopingMIBObject 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1
dsInterfaceStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains statistics information for IGMP snooping. An
entry appears in this table for each IGMP Snooping capable
interface in the device."
::= { dsStatisticsInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1
dsInterfaceStatsEntry OBJECT-TYPE
SYNTAX DsInterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains statistics information for a specific IGMP
Snooping capable interface. It provides information about
IGMP messages and reports that have been transmitted and
received at the interface."
INDEX { ifIndex }
::= { dsInterfaceStatsTable 1 }
DsInterfaceStatsEntry ::=
SEQUENCE {
dsTxGeneralQueries
Counter32,
dsTxGroupSpecificQueries
Counter32,
dsTxReports
Counter32,
dsTxLeaves
Counter32,
dsRxGeneralQueries
Counter32,
dsRxGroupSpecificQueries
Counter32,
dsRxReports
Counter32,
dsRxLeaves
Counter32,
dsRxValidPackets
Counter32,
dsRxInvalidPackets
Counter32,
dsRxOtherPackets
Counter32,
dsRxTopoNotifications
Counter32,
dsV3Allows
Counter32,
dsV3Blocks
Counter32,
dsV3IsIncluded
Counter32,
dsV3IsExcluded
Counter32,
dsV3ToIncluded
Counter32,
dsV3ToExcluded
Counter32
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.1
dsTxGeneralQueries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP General Queries that have been transmitted through
an interface."
::= { dsInterfaceStatsEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.2
dsTxGroupSpecificQueries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP Group-Specific Queries that have been transmitted
through an interface."
::= { dsInterfaceStatsEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.3
dsTxReports OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP Membership Reports that have been transmitted
through an interface."
::= { dsInterfaceStatsEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.4
dsTxLeaves OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP Leave messages that have been transmitted through
an interface."
::= { dsInterfaceStatsEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.5
dsRxGeneralQueries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP General Queries that have been received at an
interface."
::= { dsInterfaceStatsEntry 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.6
dsRxGroupSpecificQueries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP Group-Specific Queries that have been received at
an interface."
::= { dsInterfaceStatsEntry 6 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.7
dsRxReports OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP Membership Reports that have been received at an
interface."
::= { dsInterfaceStatsEntry 7 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.8
dsRxLeaves OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total IGMP Leave messages that have been received at an
interface."
::= { dsInterfaceStatsEntry 8 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.9
dsRxValidPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total valid IGMP packets have been received at an interface."
::= { dsInterfaceStatsEntry 9 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.10
dsRxInvalidPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total packets those are not valid IGMP messages received
at an interface."
::= { dsInterfaceStatsEntry 10 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.11
dsRxOtherPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total non IGMP messages messages that have been received
at an interface, comprising cgmp join, pim hello, dvmrp
and mospf messages."
::= { dsInterfaceStatsEntry 11 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.12
dsRxTopoNotifications OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Topology Change Notifications that have been received
at an interface."
::= { dsInterfaceStatsEntry 12 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.13
dsV3Allows OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Source-List-Change records with the record type
ALLOW_NEW_SOURCES that have been sent from hosts connected
to an interface. This record type indicates that the Source
Address fields in this Group Record contain a list of
additional sources that the system wishes to hear from, for
packets sent to the specified multicast address."
::= { dsInterfaceStatsEntry 13 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.14
dsV3Blocks OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Source-List-Change records with the record type
BLOCK_OLD_SOURCE that have been sent from hosts connected to
an interface. This record type indicates that the Source
Address fields in this Group Record contain a list of the
sources that the system no longer wishes to hear from, for
packets sent to the specified multicast address."
::= { dsInterfaceStatsEntry 14 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.15
dsV3IsIncluded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Current-State records with the state MODE_IS_INCLUDE
that have been sent from hosts in response to a Query received
at an interface. This state indicates that the interface has a
filter mode of INCLUDE for the specified multicast address."
::= { dsInterfaceStatsEntry 15 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.16
dsV3IsExcluded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Current-State records with the state MODE_IS_EXCLUDE
that have been sent from hosts in response to a Query received
at an interfaces. This state indicates that the interface has a
filter mode of EXCLUDE for the specified multicast address."
::= { dsInterfaceStatsEntry 16 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.17
dsV3ToIncluded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Filter-Mode-Change records with the record type
CHANGE_TO_INCLUDE_MODE that have been sent through an
interface. This type of record indicates that the filter mode
has been changed to INCLUDE mode for the specified multicast
address, and the Source Address fields in this Group Record
will contain the new source list for the specified multicast
address, if it is not empty."
::= { dsInterfaceStatsEntry 17 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.2.1.1.18
dsV3ToExcluded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Filter-Mode-Change records with the record type
CHANGE_TO_EXCLUDE_MODE that have been sent through an
interface. This type of record indicates that the filter mode
has been changed to EXCLUDE mode for the specified multicast
address, and the Source Address fields in this Group Record
will contain the new source list for the specified multicast
address, if it is not empty."
::= { dsInterfaceStatsEntry 18 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3
dsVlanConfigInfo OBJECT IDENTIFIER::= { dsIgmpSnoopingMIBObject 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1
dsVlanConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsVlanConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains VLAN based configuration information
for IGMP Snooping."
::= { dsVlanConfigInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1
dsVlanConfigEntry OBJECT-TYPE
SYNTAX DsVlanConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each active VLAN in the device
and deleted when the VLAN becomes inactive."
INDEX { dsVlanID }
::= { dsVlanConfigTable 1 }
DsVlanConfigEntry ::=
SEQUENCE {
dsVlanID
INTEGER,
dsVlanIgmpSnoopingEnabled
TruthValue,
dsVlanFastLeaveEnabled
TruthValue,
dsVlanFastBlockEnabled
TruthValue,
dsVlanSnoopingLearningModePim
TruthValue,
dsVlanExplicitTrackingEnabled
TruthValue
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1.1
dsVlanID OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { dsVlanConfigEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1.2
dsVlanIgmpSnoopingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to 'true' IGMP Snooping
is enabled on this VLAN else disabled."
::= { dsVlanConfigEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1.3
dsVlanFastLeaveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether Fast-Leave mechanism
(also known as Immediate-Leave) is to be performed by IGMP
Snooping or not. When enabled, IGMP Snooping will remove
the interface from the group mentioned in the IGMP Leave
message received on that interface without waiting for the
IGMP Group-Specific Query to timeout to determine whether
there are any more hosts on that interface for that group."
::= { dsVlanConfigEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1.4
dsVlanFastBlockEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { dsVlanConfigEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1.5
dsVlanSnoopingLearningModePim OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { dsVlanConfigEntry 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.1.1.6
dsVlanExplicitTrackingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsVlanConfigEntry 6 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2
dsIgmpQuerierTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsIgmpQuerierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing information regarding the IGMP Querier in
the VLAN. The device can be configured to be the IGMP Querier
for the VLAN. An IGMP Querier for the VLAN is selected by
using a Querier Election process."
::= { dsVlanConfigInfo 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1
dsIgmpQuerierEntry OBJECT-TYPE
SYNTAX DsIgmpQuerierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each active VLAN in the device and
contains IGMP Querier configuration information related to
IGMP Snooping for that VLAN. An entry is deleted when the
VLAN becomes inactive."
INDEX { dsIgmpQuerierVlanIndex }
::= { dsIgmpQuerierTable 1 }
DsIgmpQuerierEntry ::=
SEQUENCE {
dsIgmpQuerierVlanIndex
INTEGER,
dsIgmpQuerierEnabled
TruthValue,
dsIgmpQuerierState
INTEGER,
dsIgmpQuerierVersion
DsIgmpVersion,
dsIgmpQuerierAddress
InetAddress,
dsIgmpQuerierPort
InterfaceIndex
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1.1
dsIgmpQuerierVlanIndex OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object indicates the VLAN that the Querier will send
IGMP queries on."
::= { dsIgmpQuerierEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1.2
dsIgmpQuerierEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object indicates whether the device will participate in
the IGMP Querier election in a VLAN. If the object is set
to 'true', the device will participate to an election
process to be a Querier. If the object is set to 'false'
while the device is acting as the Querier in a VLAN, a new
election will be activated to choose a different Querier."
::= { dsIgmpQuerierEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1.3
dsIgmpQuerierState OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
electing(2),
querier(3),
nonQuerier(4),
inactive(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the current state of the device as an
IGMP Querier in a VLAN.
disabled(1) : Querier function is disabled for this device
in this VLAN.
electing(2) : The device is in the election process of the
Querier.
querier(3) : The device is the current Querier in this
VLAN.
nonQuerier(4): The device has lost the election process of
the Querier.
inactive(5) : VLAN is inactive or not an Ethernet VLAN."
::= { dsIgmpQuerierEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1.4
dsIgmpQuerierVersion OBJECT-TYPE
SYNTAX DsIgmpVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates IGMP version of the Querier for the VLAN.
IGMP version of the Querier is determined by the type of IGMP
General Query received by the device."
REFERENCE
"RFC 3376"
::= { dsIgmpQuerierEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1.5
dsIgmpQuerierAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates IP address of the IGMP Querier
for the VLAN."
::= { dsIgmpQuerierEntry 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.3.2.1.6
dsIgmpQuerierPort OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The object indicates the interface on which IGMP Querier is
detected for the VLAN. The value of this object is zero
if the device itself is acting as IGMP Querier for the VLAN."
::= { dsIgmpQuerierEntry 6 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4
dsIfConfigInfo OBJECT IDENTIFIER::= { dsIgmpSnoopingMIBObject 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4.1
dsIfConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing configuration information for IGMP
Snooping on a layer two interface."
::= { dsIfConfigInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4.1.1
dsIfConfigEntry OBJECT-TYPE
SYNTAX DsIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each interface layer two
interface."
INDEX { ifIndex }
::= { dsIfConfigTable 1 }
DsIfConfigEntry ::=
SEQUENCE {
dsIfTopoChangeFloodEnabled
TruthValue
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4.1.1.1
dsIfTopoChangeFloodEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to 'true' multicast traffic will be
flooded on the port for dsTopoChangeFloodQueryCount of Igmp
General Queries upon receiving a Topology Change
Notification (TCN) for the VLAN to which the port belongs."
::= { dsIfConfigEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4.2
dsIfPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsIfPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
::= { dsIfConfigInfo 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4.2.1
dsIfPortConfigEntry OBJECT-TYPE
SYNTAX DsIfPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
INDEX { ifIndex }
::= { dsIfPortConfigTable 1 }
DsIfPortConfigEntry ::=
SEQUENCE {
dsIfPortExplicitTrackingMaxhost
Integer32
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.4.2.1.1
dsIfPortExplicitTrackingMaxhost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsIfPortConfigEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5
dsMulticastRouterInfo OBJECT IDENTIFIER::= { dsIgmpSnoopingMIBObject 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5.1
dsMcastRouterCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsMcastRouterCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing multicast router configuration information
for IGMP Snooping."
::= { dsMulticastRouterInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5.1.1
dsMcastRouterCfgEntry OBJECT-TYPE
SYNTAX DsMcastRouterCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each interface in the VLAN that is
either learned or configured as multicast router port."
INDEX { dsMcastRouterPortIndex, dsMcastRouterVlanIndex }
::= { dsMcastRouterCfgTable 1 }
DsMcastRouterCfgEntry ::=
SEQUENCE {
dsMcastRouterPortIndex
INTEGER,
dsMcastRouterVlanIndex
INTEGER,
dsMcastRouterType
INTEGER,
dsMcastRouterRowStatus
RowStatus
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5.1.1.1
dsMcastRouterPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { dsMcastRouterCfgEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5.1.1.2
dsMcastRouterVlanIndex OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN to which the multicast router
port belongs."
::= { dsMcastRouterCfgEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5.1.1.3
dsMcastRouterType OBJECT-TYPE
SYNTAX INTEGER
{
static(1),
dynamic(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if the multicast router port is
a configured (static) or learned (dynamic) port."
::= { dsMcastRouterCfgEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.5.1.1.4
dsMcastRouterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a conceptual row entry that allows to add
or delete entries to or from the dsMcastRouterCfgTable.
When creating an entry in this table 'createAndGo' method
is used and the value of this object is set to 'active'.
Deactivation of an 'active' entry is not allowed. When
deleting an entry in this table 'destroy' method is
used."
::= { dsMcastRouterCfgEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6
dsMulticastGroupInfo OBJECT IDENTIFIER::= { dsIgmpSnoopingMIBObject 6 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1
dsMcastGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsMcastGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing multicast group address information for
IGMP Snooping."
::= { dsMulticastGroupInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1.1
dsMcastGroupEntry OBJECT-TYPE
SYNTAX DsMcastGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created by IGMP Snooping for each group learned
in the VLAN."
INDEX { dsMcastGroupVlanIndex, dsMcastGroupAddress, dsMcastGroupPortIndex }
::= { dsMcastGroupTable 1 }
DsMcastGroupEntry ::=
SEQUENCE {
dsMcastGroupVlanIndex
INTEGER,
dsMcastGroupAddress
InetAddress,
dsMcastGroupPortIndex
INTEGER,
dsMcastGroupFilterMode
INTEGER,
dsMcastGroupIgmpVersion
DsIgmpVersion
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1.1.1
dsMcastGroupVlanIndex OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN in which the group is learned."
::= { dsMcastGroupEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1.1.2
dsMcastGroupAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates IP multicast address learned by
IGMP Snooping."
::= { dsMcastGroupEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1.1.3
dsMcastGroupPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the set of ports on which IGMP
Membership Reports are received for the group indicating
interest to receive traffic sent to the group."
::= { dsMcastGroupEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1.1.4
dsMcastGroupFilterMode OBJECT-TYPE
SYNTAX INTEGER
{
include(1),
exclude(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates a the IGMP filter mode for the group.
include(1) : reception of multicast packets sent to the group
specified by cisMcastGroupAddress is requested
only from the specified IPv4 source addresses
listed in the IGMPv3 Membership Reports.
exclude(2) : reception of multicast packets sent to the group
specified by cisMcastGroupAddress is requested
from all except from the list of IPv4 source
addresses specified in the IGMPv3 Membership
Reports.
The filter mode is determined by the type of Group Record
received in the IGMP Membership Report received by the
device. Groups for which IGMPv1/v2 Membership Reports
are received are considered to have a cisMcastGroupFilterMode
of 'exclude'.
"
::= { dsMcastGroupEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.1.1.5
dsMcastGroupIgmpVersion OBJECT-TYPE
SYNTAX DsIgmpVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IGMP version for the group.
This is determined by the type of IGMP Membership Report
received by the device."
::= { dsMcastGroupEntry 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2
dsMcastIgmpGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsMcastIgmpGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing multicast group address information for
IGMP Snooping."
::= { dsMulticastGroupInfo 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1
dsMcastIgmpGroupEntry OBJECT-TYPE
SYNTAX DsMcastIgmpGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created by IGMP Snooping for each group learned
in the VLAN."
INDEX { dsMcastIgmpGroupVlanIndex, dsMcastIgmpGroupAddress, dsMcastIgmpGroupSource, dsMcastIgmpGroupPortIndex, dsMcastIgmpGroupReporter,
dsMcastIgmpGroupVersion, dsMcastIgmpGroupFilterMode }
::= { dsMcastIgmpGroupTable 1 }
DsMcastIgmpGroupEntry ::=
SEQUENCE {
dsMcastIgmpGroupVlanIndex
INTEGER,
dsMcastIgmpGroupAddress
IpAddress,
dsMcastIgmpGroupSource
IpAddress,
dsMcastIgmpGroupPortIndex
INTEGER,
dsMcastIgmpGroupReporter
IpAddress,
dsMcastIgmpGroupVersion
DsIgmpVersion,
dsMcastIgmpGroupFilterMode
DsIgmpFilterMode,
dsMcastIgmpGroupExpire
Integer32
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.1
dsMcastIgmpGroupVlanIndex OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.2
dsMcastIgmpGroupAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.3
dsMcastIgmpGroupSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.4
dsMcastIgmpGroupPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.5
dsMcastIgmpGroupReporter OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.6
dsMcastIgmpGroupVersion OBJECT-TYPE
SYNTAX DsIgmpVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 6 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.7
dsMcastIgmpGroupFilterMode OBJECT-TYPE
SYNTAX DsIgmpFilterMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 7 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.1.6.2.1.8
dsMcastIgmpGroupExpire OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsMcastIgmpGroupEntry 8 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2
dsIgmpMIBObject OBJECT IDENTIFIER::= { dsMcastMIB 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.1
dsIgmpBaseInfo OBJECT IDENTIFIER::= { dsIgmpMIBObject 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.1.1
dsIgmpGroupCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of igmp group entry."
::= { dsIgmpBaseInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2
dsIgmpStaticGroupInfo OBJECT IDENTIFIER::= { dsIgmpMIBObject 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1
dsIgmpStaticGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsIgmpStaticGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupInfo 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1
dsIgmpStaticGroupEntry OBJECT-TYPE
SYNTAX DsIgmpStaticGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
INDEX { dsIgmpStaticGroupAddress, dsIgmpStaticGroupPort, dsIgmpStaticGroupReporter, dsIgmpStaticGroupVlanID }
::= { dsIgmpStaticGroupTable 1 }
DsIgmpStaticGroupEntry ::=
SEQUENCE {
dsIgmpStaticGroupAddress
IpAddress,
dsIgmpStaticGroupVlanID
INTEGER,
dsIgmpStaticGroupPort
INTEGER,
dsIgmpStaticGroupReporter
IpAddress,
dsMcastIgmpGroupState
INTEGER,
dsMcastIgmpGroupStatus
RowStatus
}
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1.1
dsIgmpStaticGroupAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupEntry 1 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1.2
dsIgmpStaticGroupVlanID OBJECT-TYPE
SYNTAX INTEGER (1..4096)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupEntry 2 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1.3
dsIgmpStaticGroupPort OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupEntry 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1.4
dsIgmpStaticGroupReporter OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupEntry 4 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1.5
dsMcastIgmpGroupState OBJECT-TYPE
SYNTAX INTEGER
{
unknown(0),
joined(1),
joinPending(2),
leavePending(3),
offline(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupEntry 5 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.2.2.1.1.10
dsMcastIgmpGroupStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"."
::= { dsIgmpStaticGroupEntry 10 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.3
dsMcastGroup OBJECT-GROUP
OBJECTS { dsIgmpSnoopingEnabled, dsFastLeaveEnabled, dsFastBlockEnabled, dsReportSuppressionEnabled, dsTopoChangeFloodQueryCount,
dsTopoChangeQuerySolicitEnabled, dsV3SnoopingSupport, dsTxGeneralQueries, dsTxGroupSpecificQueries, dsTxReports,
dsTxLeaves, dsRxGeneralQueries, dsRxGroupSpecificQueries, dsRxReports, dsRxLeaves,
dsRxValidPackets, dsRxInvalidPackets, dsRxOtherPackets, dsRxTopoNotifications, dsV3Allows,
dsV3Blocks, dsV3IsIncluded, dsV3IsExcluded, dsV3ToIncluded, dsV3ToExcluded,
dsVlanIgmpSnoopingEnabled, dsVlanFastLeaveEnabled, dsIgmpQuerierEnabled, dsIgmpQuerierState, dsIgmpQuerierVersion,
dsIgmpQuerierAddress, dsIfTopoChangeFloodEnabled, dsMcastRouterType, dsMcastRouterRowStatus, dsMcastGroupFilterMode,
dsVlanSnoopingLearningModePim, dsVlanFastBlockEnabled, dsMcastGroupIgmpVersion, dsMcastGroupPortIndex, dsExplicitTrackingEnabled,
dsVlanExplicitTrackingEnabled, dsMcastIgmpGroupSource, dsMcastIgmpGroupPortIndex, dsMcastIgmpGroupReporter, dsMcastIgmpGroupVersion,
dsMcastIgmpGroupFilterMode, dsMcastIgmpGroupExpire, dsMcastIgmpGroupVlanIndex, dsMcastIgmpGroupAddress, dsIgmpQuerierPort,
dsVlanID, dsIfPortExplicitTrackingMaxhost, dsIgmpStaticGroupAddress, dsIgmpStaticGroupVlanID, dsIgmpStaticGroupPort,
dsIgmpStaticGroupReporter, dsMcastIgmpGroupState, dsMcastIgmpGroupStatus }
STATUS current
DESCRIPTION
"Description."
::= { dsMcastMIB 3 }
-- 1.3.6.1.4.1.6296.9.1.1.2.24.4
dsMcastNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { dsIgmpSnoopingChanged, dsIgmpSnoopingVlanChanged }
STATUS current
DESCRIPTION
"Description."
::= { dsMcastMIB 4 }
END
--
-- DASAN-MCAST-MIB.my
--
|