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
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
|
-- *****************************************************************
-- DLINKSW-MGMD-SNOOPING-MIB.mib : MGMD (IGMP/MLD) Snooping MIB
--
-- Copyright (c) 2013 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-MGMD-SNOOPING-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, IpAddress,
TimeTicks, Counter64, Unsigned32 FROM SNMPv2-SMI
RowStatus, DisplayString, TruthValue FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
InterfaceIndex, InterfaceIndexOrZero FROM IF-MIB
InetAddress, InetAddressType FROM INET-ADDRESS-MIB
VlanId, VlanIdOrNone FROM Q-BRIDGE-MIB
dlinkIndustrialCommon FROM DLINK-ID-REC-MIB;
dlinkSwMgmdSnoopingMIB MODULE-IDENTITY
LAST-UPDATED "201309050000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
" D-Link Corporation
Postal: No. 289, Sinhu 3rd Rd., Neihu District,
Taipei City 114, Taiwan, R.O.C
Tel: +886-2-66000123
E-mail: tsd@dlink.com.tw
"
DESCRIPTION
"This MIB module defines objects for MGMD (Multicast Group
Membership Discovery) snooping."
REVISION "201309050000Z"
DESCRIPTION
"This is the first version of the MIB file for 'MGMD snooping'
functionality."
::= { dlinkIndustrialCommon 6 }
--
-- Textual Conventions
--
SnoopingType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The snooping type.
'igmpSnooping' -- IGMP (IPv4 MGMD) snooping.
'mldSnooping' -- MLD (IPv6 MGMD) snooping.
"
SYNTAX INTEGER {
igmpSnooping(1),
mldSnooping(2)
}
-- -----------------------------------------------------------------------------
dMgmdSnpMIBNotifications OBJECT IDENTIFIER ::= { dlinkSwMgmdSnoopingMIB 0 }
dMgmdSnpMIBObjects OBJECT IDENTIFIER ::= { dlinkSwMgmdSnoopingMIB 1 }
dMgmdSnpMIBConformance OBJECT IDENTIFIER ::= { dlinkSwMgmdSnoopingMIB 2 }
-- -----------------------------------------------------------------------------
dMgmdSnpGlobalCtrl OBJECT IDENTIFIER ::= { dMgmdSnpMIBObjects 1 }
dMgmdSnpStateGblEnabled OBJECT-TYPE
SYNTAX BITS {
ipv4(0),
ipv6(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An object indicates which type of MGMD is globally enabled.
Setting a type's bit to 1 means the type of MGMD is globally
enabled.
ipv4 (0) - IGMP snooping
ipv6 (1) - MLD snooping."
::= { dMgmdSnpGlobalCtrl 1 }
dMgmdSnpClearAllState OBJECT-TYPE
SYNTAX INTEGER {
notClear(0),
igmpClear(1),
mldClear(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the global state of MGMD snooping statistics
function. Configuring this object to igmpClear or mldClear will clear
all respective MGMD snooping counters."
::= { dMgmdSnpGlobalCtrl 2 }
dMgmdSnpClearIgmpSnoopByPortIf OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the ifIndex of the port/port-channel on which
the IGMP snooping counters will be cleared.
When read, the special value 0 is returned."
::= { dMgmdSnpGlobalCtrl 3 }
dMgmdSnpClearMldSnoopByPortIf OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the ifIndex of the port/port-channel on which
the MLD snooping counters will be cleared.
When read, the special value 0 is returned."
::= { dMgmdSnpGlobalCtrl 4 }
dMgmdSnpClearIgmpSnoopByVlanId OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the VLAN ID on which the IGMP snooping
counters will be cleared.
When read, the special value 0 is returned."
::= { dMgmdSnpGlobalCtrl 5 }
dMgmdSnpClearMldSnoopByVlanId OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the VLAN ID on which the MLD snooping counters
will be cleared.
When read, the special value 0 is returned."
::= { dMgmdSnpGlobalCtrl 6 }
-- -----------------------------------------------------------------------------
dMgmdSnpVlanIfCtrl OBJECT IDENTIFIER ::= { dMgmdSnpMIBObjects 2 }
dMgmdSnpIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the MGMD snooping settings per interface.
An entry is created to configure the MGMD snooping related settings
to different value than the default per interface.
When an entry is deleted, all the MGMD snooping settings will be
reverted to default settings."
::= { dMgmdSnpVlanIfCtrl 1 }
dMgmdSnpIfEntry OBJECT-TYPE
SYNTAX DMgmdSnpIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table entry represents the MGMD snooping state on a VLAN
basis."
INDEX {
dMgmdSnpIfVlanIfIndex ,
dMgmdSnpIfSnoopingType
}
::= { dMgmdSnpIfTable 1 }
DMgmdSnpIfEntry ::= SEQUENCE {
dMgmdSnpIfVlanIfIndex InterfaceIndex,
dMgmdSnpIfSnoopingType SnoopingType,
dMgmdSnpIfRowStatus RowStatus,
dMgmdSnpIfStateEnabled TruthValue,
dMgmdSnpIfQuerierStateEnabled TruthValue,
dMgmdSnpIfQuerierRouter INTEGER,
dMgmdSnpIfFastLeaveEnabled TruthValue,
dMgmdSnpIfFastLeaveHostBased TruthValue,
dMgmdSnpIfMinimumVersion INTEGER,
dMgmdSnpIfExplicitTrackEnabled TruthValue,
dMgmdSnpIfReportSuppresEnabled TruthValue,
dMgmdSnpIfProxyReportingEnabled TruthValue,
dMgmdSnpIfAutoLearnMrouter TruthValue,
dMgmdSnpIfProxyReportSrcAddrType InetAddressType,
dMgmdSnpIfProxyReportSrcAddr InetAddress,
dMgmdSnpIfQueryInterval Unsigned32,
dMgmdSnpIfQueryMaxResponseTime Unsigned32,
dMgmdSnpIfQueryVersion Unsigned32,
dMgmdSnpIfRobustness Unsigned32,
dMgmdSnpIfLastMemberQueryInterval Unsigned32,
dMgmdSnpIfSuppressionTime Unsigned32
}
dMgmdSnpIfVlanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN interface."
::= { dMgmdSnpIfEntry 1 }
dMgmdSnpIfSnoopingType OBJECT-TYPE
SYNTAX SnoopingType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The snooping type of this entry."
::= { dMgmdSnpIfEntry 2 }
dMgmdSnpIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dMgmdSnpIfEntry 3 }
dMgmdSnpIfStateEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the state of MGMD snooping of the entry."
DEFVAL { false }
::= { dMgmdSnpIfEntry 4 }
dMgmdSnpIfQuerierStateEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the MGMD query function in Layer 2 networks."
DEFVAL { false }
::= { dMgmdSnpIfEntry 5 }
dMgmdSnpIfQuerierRouter OBJECT-TYPE
SYNTAX INTEGER {
absence(1),
active(2),
nonActive(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the VLAN interface at the switch system works as a
MGMD querier or not. A value of absence(1) indicates the absence of
this attribute."
::= { dMgmdSnpIfEntry 6 }
dMgmdSnpIfFastLeaveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables the MGMD snooping fast-leave feature on the
interface."
DEFVAL { false }
::= { dMgmdSnpIfEntry 7 }
dMgmdSnpIfFastLeaveHostBased OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object configures the MGMD Snooping Host Based Fast Leave
function."
DEFVAL { false }
::= { dMgmdSnpIfEntry 8 }
dMgmdSnpIfMinimumVersion OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
version2(2),
version3(3) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"To restrict the minimum version allows user to control the minimum
version of MGMD hosts can be joined on a layer 2 port. The value
'0' means that this interface does not restrict the minimum version.
Value 2 applies to IGMP routers only. Value 3 applies to IGMP and
MLD routers."
DEFVAL { 0 }
::= { dMgmdSnpIfEntry 9 }
dMgmdSnpIfExplicitTrackEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables explicit tracking of group membership for IGMP
Version 3 hosts on the interface."
DEFVAL { false }
::= { dMgmdSnpIfEntry 10 }
dMgmdSnpIfReportSuppresEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables the report suppression on the interface."
DEFVAL { false }
::= { dMgmdSnpIfEntry 11 }
dMgmdSnpIfProxyReportingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables the proxy-reporting function on the interface."
DEFVAL { false }
::= { dMgmdSnpIfEntry 12 }
dMgmdSnpIfAutoLearnMrouter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables dynamically learning of multicast router port
on the interface."
DEFVAL { false }
::= { dMgmdSnpIfEntry 13 }
dMgmdSnpIfProxyReportSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the type of Internet address
of the source IP of proxy reporting."
DEFVAL { ipv4 }
::= { dMgmdSnpIfEntry 14 }
dMgmdSnpIfProxyReportSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the source Internet address
of proxy reporting. This object is valid when
dMgmdSnpIfProxyReportingEnabled is 'true'."
DEFVAL { '00000000'h }
::= { dMgmdSnpIfEntry 15 }
dMgmdSnpIfQueryInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..31744)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The frequency at which IGMP or MLD Query packets are
transmitted on this interface."
DEFVAL { 125 }
::= { dMgmdSnpIfEntry 16 }
dMgmdSnpIfQueryMaxResponseTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum query response interval advertised in IGMP
or MLD queries on this interface."
::= { dMgmdSnpIfEntry 17 }
dMgmdSnpIfQueryVersion OBJECT-TYPE
SYNTAX Unsigned32 (1..3)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The version of MGMD querier version on this interface.
Value 1 applies to IGMPv1 routers only. Value 2 applies
to IGMPv2 and MLDv1 routers, and value 3 applies to IGMPv3
and MLDv2 routers."
DEFVAL { 3 }
::= { dMgmdSnpIfEntry 18 }
dMgmdSnpIfRobustness OBJECT-TYPE
SYNTAX Unsigned32 (1..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Robustness Variable allows tuning for the expected
packet loss on a subnet."
DEFVAL { 2 }
::= { dMgmdSnpIfEntry 19 }
dMgmdSnpIfLastMemberQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The amount of time between group-specific query messages.
This value can be tuned to modify the leave latency of the
network."
DEFVAL { 1 }
::= { dMgmdSnpIfEntry 20 }
dMgmdSnpIfSuppressionTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The interval of report suppression on this interface."
::= { dMgmdSnpIfEntry 21 }
-- -----------------------------------------------------------------------------
dMgmdSnpPortIfCtrl OBJECT IDENTIFIER ::= { dMgmdSnpMIBObjects 3 }
dMgmdSnpMrouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpMrouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table to display and configure the MGMD snooping multicast
router information. An entry is created if a multicast router is
is learned dynamically on that port/port-channel interface
(dMgmdSnpIfAutoLearnMrouter is 'true' on the VLAN interface). In
this situation, an entry cannot be destroyed.
An entry can also be created to statically configured a multicast
router port or forbid a port/port-channel become multicast router
port."
::= { dMgmdSnpPortIfCtrl 1 }
dMgmdSnpMrouterEntry OBJECT-TYPE
SYNTAX DMgmdSnpMrouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpMrouterTable."
INDEX {
dMgmdSnpMrouterIfIndex,
dMgmdSnpMrouterVlanIfIndex,
dMgmdSnpMrouterQuerierType
}
::= { dMgmdSnpMrouterTable 1 }
DMgmdSnpMrouterEntry ::= SEQUENCE {
dMgmdSnpMrouterIfIndex InterfaceIndex,
dMgmdSnpMrouterVlanIfIndex InterfaceIndex,
dMgmdSnpMrouterQuerierType SnoopingType,
dMgmdSnpMrouterStatus RowStatus,
dMgmdSnpMrouterAdminState INTEGER,
dMgmdSnpMrouterDynamicMrouter TruthValue
}
dMgmdSnpMrouterIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpMrouterEntry 1 }
dMgmdSnpMrouterVlanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN interface."
::= { dMgmdSnpMrouterEntry 2 }
dMgmdSnpMrouterQuerierType OBJECT-TYPE
SYNTAX SnoopingType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The snooping type of this interface."
::= { dMgmdSnpMrouterEntry 3 }
dMgmdSnpMrouterStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dMgmdSnpMrouterEntry 4 }
dMgmdSnpMrouterAdminState OBJECT-TYPE
SYNTAX INTEGER {
none(1),
designated(2),
forbidden(3) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the static configuration about multicast
router state of a port/port-channel on a per-VLAN basis.
none(1) - no static configuration
designated(2) - the port/port-channel is a static multicast router
port.
forbidden(3) - the port/port-channel cannot be multicast router
port."
DEFVAL { 1 }
::= { dMgmdSnpMrouterEntry 5 }
dMgmdSnpMrouterDynamicMrouter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is valid when dMgmdSnpMrouterAdminState is 'none'.
This object indicates the port/port-channel is dynamically learned
as a multicast router port on the corresponding VLAN interface."
::= { dMgmdSnpMrouterEntry 6 }
-- -----------------------------------------------------------------------------
dMgmdSnpIfLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpIfLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table to set the limitation on the number of MGMD cache entries.
For a Layer 2 VLAN on a trunk port, the limitation can be set per
port/port-channel and on per VLAN basis."
::= { dMgmdSnpPortIfCtrl 2 }
dMgmdSnpIfLimitEntry OBJECT-TYPE
SYNTAX DMgmdSnpIfLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpFilterTable."
INDEX {
dMgmdSnpIfLimitIfIndex,
dMgmdSnpIfLimitVlanId,
dMgmdSnpIfLimitSnoopingType
}
::= { dMgmdSnpIfLimitTable 1 }
DMgmdSnpIfLimitEntry ::= SEQUENCE {
dMgmdSnpIfLimitIfIndex InterfaceIndex,
dMgmdSnpIfLimitVlanId VlanIdOrNone,
dMgmdSnpIfLimitSnoopingType SnoopingType,
dMgmdSnpIfLimitRowStatus RowStatus,
dMgmdSnpIfLimitExceptAccLstName DisplayString,
dMgmdSnpIfLimitValue Unsigned32
}
dMgmdSnpIfLimitIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical interface/port-channel interface."
::= { dMgmdSnpIfLimitEntry 1 }
dMgmdSnpIfLimitVlanId OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN ID.
A value of zero indicates that no VLAN ID is not applicable or
not configured."
::= { dMgmdSnpIfLimitEntry 2 }
dMgmdSnpIfLimitSnoopingType OBJECT-TYPE
SYNTAX SnoopingType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the snooping type."
::= { dMgmdSnpIfLimitEntry 3 }
dMgmdSnpIfLimitRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dMgmdSnpIfLimitEntry 4 }
dMgmdSnpIfLimitExceptAccLstName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the IP/IPv6 basic access list. The group (*,G), or
channel (S,G) permitted by the access list will be excluded from the
limit.
The zero length of this object means except ACL is not specified.
"
::= { dMgmdSnpIfLimitEntry 5 }
dMgmdSnpIfLimitValue OBJECT-TYPE
SYNTAX Unsigned32 (1..2048)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"To restric the number of MGMD groups or channels allows user
to control how many MGMD groups or channels can be joined on a
layer-2 port."
::= { dMgmdSnpIfLimitEntry 6}
-- -----------------------------------------------------------------------------
dMgmdSnpAccGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpAccGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table to display and configure the IP/IPv6 basic access list
information of MGMD snooping.
For a Layer 2 VLAN on a trunk port, the access group can be set per
port/port-channel and on per VLAN basis."
::= { dMgmdSnpPortIfCtrl 3 }
dMgmdSnpAccGrpEntry OBJECT-TYPE
SYNTAX DMgmdSnpAccGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpAccGrpTable. "
INDEX {
dMgmdSnpAccGrpIfIndex,
dMgmdSnpAccGrpVlanId,
dMgmdSnpAccGrpSnoopingType
}
::= { dMgmdSnpAccGrpTable 1 }
DMgmdSnpAccGrpEntry ::= SEQUENCE {
dMgmdSnpAccGrpIfIndex InterfaceIndex,
dMgmdSnpAccGrpVlanId VlanIdOrNone,
dMgmdSnpAccGrpSnoopingType SnoopingType,
dMgmdSnpAccGrpStatus RowStatus,
dMgmdSnpAccessGroupName DisplayString
}
dMgmdSnpAccGrpIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical interface/port-channel interface."
::= { dMgmdSnpAccGrpEntry 1 }
dMgmdSnpAccGrpVlanId OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN interface."
::= { dMgmdSnpAccGrpEntry 2 }
dMgmdSnpAccGrpSnoopingType OBJECT-TYPE
SYNTAX SnoopingType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the snooping type."
::= { dMgmdSnpAccGrpEntry 3 }
dMgmdSnpAccGrpStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dMgmdSnpAccGrpEntry 4 }
dMgmdSnpAccessGroupName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the IP/IPv6 basic access list to be configured on MGMD
snooping."
::= { dMgmdSnpAccGrpEntry 5 }
-- -----------------------------------------------------------------------------
dMgmdSnpGroupCtrl OBJECT IDENTIFIER ::= { dMgmdSnpMIBObjects 4 }
dMgmdSnpGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the MGMD snooping dynamic groups."
::= { dMgmdSnpGroupCtrl 1 }
dMgmdSnpGroupEntry OBJECT-TYPE
SYNTAX DMgmdSnpGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpGroupTable."
INDEX {
dMgmdSnpGroupVlanIfIndex,
dMgmdSnpGroupAddressType,
dMgmdSnpGroupAddress,
dMgmdSnpGroupIfIndex
}
::= { dMgmdSnpGroupTable 1 }
DMgmdSnpGroupEntry ::= SEQUENCE {
dMgmdSnpGroupVlanIfIndex InterfaceIndex,
dMgmdSnpGroupAddressType InetAddressType,
dMgmdSnpGroupAddress InetAddress,
dMgmdSnpGroupIfIndex InterfaceIndex,
dMgmdSnpGroupVersion INTEGER,
dMgmdSnpGroupUpTime TimeTicks,
dMgmdSnpGroupExpire TimeTicks,
dMgmdSnpGroupMode INTEGER,
dMgmdSnpGroupLastReportAddrType InetAddressType,
dMgmdSnpGroupLastReportAddr InetAddress
}
dMgmdSnpGroupVlanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN interface."
::= { dMgmdSnpGroupEntry 1 }
dMgmdSnpGroupAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of this group address."
::= { dMgmdSnpGroupEntry 2 }
dMgmdSnpGroupAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the group address of the entry."
::= { dMgmdSnpGroupEntry 3}
dMgmdSnpGroupIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpGroupEntry 4 }
dMgmdSnpGroupVersion OBJECT-TYPE
SYNTAX INTEGER {
version1(1),
version2(2),
version3(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of MGMD that the multicast group is reported."
::= { dMgmdSnpGroupEntry 5 }
dMgmdSnpGroupUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since the entry has been created."
::= { dMgmdSnpGroupEntry 6 }
dMgmdSnpGroupExpire OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that the entry will be removed if there is no refresh on
the entry "
::= { dMgmdSnpGroupEntry 7 }
dMgmdSnpGroupMode OBJECT-TYPE
SYNTAX INTEGER {
include(1),
exclude(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group mode is based on the type of membership reports that are
received on the interface for the group."
::= { dMgmdSnpGroupEntry 8 }
dMgmdSnpGroupLastReportAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the type of the last host to report being a
member of the multicast group."
DEFVAL { ipv4 }
::= { dMgmdSnpGroupEntry 9 }
dMgmdSnpGroupLastReportAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the address of the last host to report being
a member of the multicast group."
::= { dMgmdSnpGroupEntry 10 }
-- -----------------------------------------------------------------------------
dMgmdSnpGroupSrcTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpGroupSrcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the MGMD snooping dynamic group source
entries."
::= { dMgmdSnpGroupCtrl 2 }
dMgmdSnpGroupSrcEntry OBJECT-TYPE
SYNTAX DMgmdSnpGroupSrcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpGroupSrcTable."
INDEX {
dMgmdSnpGroupVlanIfIndex,
dMgmdSnpGroupAddressType,
dMgmdSnpGroupAddress,
dMgmdSnpGroupSrcAddrType,
dMgmdSnpGroupSrcAddress,
dMgmdSnpGroupSrcIfIndex
}
::= { dMgmdSnpGroupSrcTable 1 }
DMgmdSnpGroupSrcEntry ::= SEQUENCE {
dMgmdSnpGroupSrcAddrType InetAddressType,
dMgmdSnpGroupSrcAddress InetAddress,
dMgmdSnpGroupSrcIfIndex InterfaceIndex,
dMgmdSnpGroupSrcUpTime TimeTicks,
dMgmdSnpGroupSrcExpire TimeTicks,
dMgmdSnpGroupSrcForward INTEGER
}
dMgmdSnpGroupSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the type of the source address where the
(S,G) channel traffic originate."
::= { dMgmdSnpGroupSrcEntry 1 }
dMgmdSnpGroupSrcAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the source address where the
(S,G) channel traffic originate."
::= { dMgmdSnpGroupSrcEntry 2 }
dMgmdSnpGroupSrcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpGroupSrcEntry 3 }
dMgmdSnpGroupSrcUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since the entry has been created."
::= { dMgmdSnpGroupSrcEntry 4 }
dMgmdSnpGroupSrcExpire OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The expire timer."
::= { dMgmdSnpGroupSrcEntry 5 }
dMgmdSnpGroupSrcForward OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of whether the router is forwarding multicast traffic
due to this entry."
::= { dMgmdSnpGroupSrcEntry 6 }
-- -----------------------------------------------------------------------------
dMgmdSnpStaticGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpStaticGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to manage MGMD snooping static groups."
::= { dMgmdSnpGroupCtrl 3 }
dMgmdSnpStaticGrpEntry OBJECT-TYPE
SYNTAX DMgmdSnpStaticGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpStaticGrpTable."
INDEX {
dMgmdSnpStaticGrpVlanIfIndex,
dMgmdSnpStaticGrpAddressType,
dMgmdSnpStaticGrpAddress,
dMgmdSnpStaticGrpIfIndex
}
::= { dMgmdSnpStaticGrpTable 1 }
DMgmdSnpStaticGrpEntry ::= SEQUENCE {
dMgmdSnpStaticGrpVlanIfIndex InterfaceIndex,
dMgmdSnpStaticGrpAddressType InetAddressType,
dMgmdSnpStaticGrpAddress InetAddress,
dMgmdSnpStaticGrpIfIndex InterfaceIndex,
dMgmdSnpStaticGrpStatus RowStatus
}
dMgmdSnpStaticGrpVlanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN interface."
::= { dMgmdSnpStaticGrpEntry 1 }
dMgmdSnpStaticGrpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of this group address."
::= { dMgmdSnpStaticGrpEntry 2 }
dMgmdSnpStaticGrpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the group address of the entry."
::= { dMgmdSnpStaticGrpEntry 3}
dMgmdSnpStaticGrpIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpStaticGrpEntry 4 }
dMgmdSnpStaticGrpStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dMgmdSnpStaticGrpEntry 5 }
-- -----------------------------------------------------------------------------
dMgmdSnpStaticGrpSrcTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpStaticGrpSrcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to manage MGMD snooping static group
source entries."
::= { dMgmdSnpGroupCtrl 4 }
dMgmdSnpStaticGrpSrcEntry OBJECT-TYPE
SYNTAX DMgmdSnpStaticGrpSrcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpStaticGrpSrcTable."
INDEX {
dMgmdSnpStaticGrpVlanIfIndex,
dMgmdSnpStaticGrpAddressType,
dMgmdSnpStaticGrpAddress,
dMgmdSnpStaticGrpSrcAddrType,
dMgmdSnpStaticGrpSrcAddress,
dMgmdSnpStaticGrpSrcIfIndex
}
::= { dMgmdSnpStaticGrpSrcTable 1 }
DMgmdSnpStaticGrpSrcEntry ::= SEQUENCE {
dMgmdSnpStaticGrpSrcAddrType InetAddressType,
dMgmdSnpStaticGrpSrcAddress InetAddress,
dMgmdSnpStaticGrpSrcIfIndex InterfaceIndex,
dMgmdSnpStaticGrpSrcStatus RowStatus
}
dMgmdSnpStaticGrpSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the type of the source address where the
(S,G) channel traffic originate."
::= { dMgmdSnpStaticGrpSrcEntry 1 }
dMgmdSnpStaticGrpSrcAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the source address where the
(S,G) channel traffic originate."
::= { dMgmdSnpStaticGrpSrcEntry 2 }
dMgmdSnpStaticGrpSrcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpStaticGrpSrcEntry 3 }
dMgmdSnpStaticGrpSrcStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row."
::= { dMgmdSnpStaticGrpSrcEntry 4 }
-- -----------------------------------------------------------------------------
dMgmdSnpHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is a list of host information of MGMD snooping."
::= { dMgmdSnpMIBObjects 5 }
dMgmdSnpHostEntry OBJECT-TYPE
SYNTAX DMgmdSnpHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpHostTable."
INDEX {
dMgmdSnpHostVlanIfIndex,
dMgmdSnpHostGrpAddressType,
dMgmdSnpHostGrpAddress,
dMgmdSnpHostIfIndex,
dMgmdSnpHostAddrType,
dMgmdSnpHostAddress
}
::= { dMgmdSnpHostTable 1 }
DMgmdSnpHostEntry ::= SEQUENCE {
dMgmdSnpHostVlanIfIndex InterfaceIndex,
dMgmdSnpHostGrpAddressType InetAddressType,
dMgmdSnpHostGrpAddress InetAddress,
dMgmdSnpHostIfIndex InterfaceIndex,
dMgmdSnpHostAddrType InetAddressType,
dMgmdSnpHostAddress InetAddress
}
dMgmdSnpHostVlanIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN interface."
::= { dMgmdSnpHostEntry 1 }
dMgmdSnpHostGrpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address type of this group address."
::= { dMgmdSnpHostEntry 2 }
dMgmdSnpHostGrpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies IP multicast group addresses of a group which
the user would like to see."
::= { dMgmdSnpHostEntry 3 }
dMgmdSnpHostIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpHostEntry 4 }
dMgmdSnpHostAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address type of the host."
::= { dMgmdSnpHostEntry 5 }
dMgmdSnpHostAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the address of the host."
::= { dMgmdSnpHostEntry 6 }
-- -----------------------------------------------------------------------------
dMgmdSnpStatistics OBJECT IDENTIFIER ::= { dMgmdSnpMIBObjects 6 }
dMgmdSnpStatPortIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpStatPortIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table to display per port/port-channel statistics of MGMD snooping."
::= { dMgmdSnpStatistics 1 }
dMgmdSnpStatPortIfEntry OBJECT-TYPE
SYNTAX DMgmdSnpStatPortIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpStatisticTable."
INDEX {
dMgmdSnpStatPortIfIndex,
dMgmdSnpStatPortIfType
}
::= { dMgmdSnpStatPortIfTable 1 }
DMgmdSnpStatPortIfEntry ::= SEQUENCE {
dMgmdSnpStatPortIfIndex InterfaceIndex,
dMgmdSnpStatPortIfType SnoopingType,
dMgmdSnpStatPortIfV1RxReport Counter64,
dMgmdSnpStatPortIfV1RxQuery Counter64,
dMgmdSnpStatPortIfV1TxReport Counter64,
dMgmdSnpStatPortIfV1TxQuery Counter64,
dMgmdSnpStatPortIfV2RxReport Counter64,
dMgmdSnpStatPortIfV2RxQuery Counter64,
dMgmdSnpStatPortIfV2RxLeave Counter64,
dMgmdSnpStatPortIfV2TxReport Counter64,
dMgmdSnpStatPortIfV2TxQuery Counter64,
dMgmdSnpStatPortIfV2TxLeave Counter64,
dMgmdSnpStatPortIfV3RxReport Counter64,
dMgmdSnpStatPortIfV3RxQuery Counter64,
dMgmdSnpStatPortIfV3TxReport Counter64,
dMgmdSnpStatPortIfV3TxQuery Counter64,
dMgmdSnpStatPortIfDropByAccGroup Counter64,
dMgmdSnpStatPortIfDropByGrpLimit Counter64
}
dMgmdSnpStatPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific physical port/port-channel interface"
::= { dMgmdSnpStatPortIfEntry 1 }
dMgmdSnpStatPortIfType OBJECT-TYPE
SYNTAX SnoopingType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The snooping type of this entry."
::= { dMgmdSnpStatPortIfEntry 2 }
dMgmdSnpStatPortIfV1RxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Report packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 3 }
dMgmdSnpStatPortIfV1RxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Query packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 4 }
dMgmdSnpStatPortIfV1TxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Report packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 5 }
dMgmdSnpStatPortIfV1TxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Query packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 6 }
dMgmdSnpStatPortIfV2RxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Report packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 7 }
dMgmdSnpStatPortIfV2RxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Query packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 8 }
dMgmdSnpStatPortIfV2RxLeave OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Leave packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 9 }
dMgmdSnpStatPortIfV2TxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Report packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 10 }
dMgmdSnpStatPortIfV2TxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Query packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 11 }
dMgmdSnpStatPortIfV2TxLeave OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Leave packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 12 }
dMgmdSnpStatPortIfV3RxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Report packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 13 }
dMgmdSnpStatPortIfV3RxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Query packets received in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 14 }
dMgmdSnpStatPortIfV3TxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Report packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 15 }
dMgmdSnpStatPortIfV3TxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Query packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 16 }
dMgmdSnpStatPortIfDropByAccGroup OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD packets dropped by access group
in this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 17 }
dMgmdSnpStatPortIfDropByGrpLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD packets dropped by the limit
of the number of MGMD groups in this port/port-channel."
::= { dMgmdSnpStatPortIfEntry 18 }
-- -----------------------------------------------------------------------------
dMgmdSnpStatVlanIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DMgmdSnpStatVlanIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table to display per port/port-channel statistics of MGMD snooping."
::= { dMgmdSnpStatistics 2 }
dMgmdSnpStatVlanIfEntry OBJECT-TYPE
SYNTAX DMgmdSnpStatVlanIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the dMgmdSnpStatisticTable."
INDEX {
dMgmdSnpStatVlanIfIndex,
dMgmdSnpStatVlanIfType
}
::= { dMgmdSnpStatVlanIfTable 1 }
DMgmdSnpStatVlanIfEntry ::= SEQUENCE {
dMgmdSnpStatVlanIfIndex VlanId,
dMgmdSnpStatVlanIfType SnoopingType,
dMgmdSnpStatVlanIfV1RxReport Counter64,
dMgmdSnpStatVlanIfV1RxQuery Counter64,
dMgmdSnpStatVlanIfV1TxReport Counter64,
dMgmdSnpStatVlanIfV1TxQuery Counter64,
dMgmdSnpStatVlanIfV2RxReport Counter64,
dMgmdSnpStatVlanIfV2RxQuery Counter64,
dMgmdSnpStatVlanIfV2RxLeave Counter64,
dMgmdSnpStatVlanIfV2TxReport Counter64,
dMgmdSnpStatVlanIfV2TxQuery Counter64,
dMgmdSnpStatVlanIfV2TxLeave Counter64,
dMgmdSnpStatVlanIfV3RxReport Counter64,
dMgmdSnpStatVlanIfV3RxQuery Counter64,
dMgmdSnpStatVlanIfV3TxReport Counter64,
dMgmdSnpStatVlanIfV3TxQuery Counter64,
dMgmdSnpStatVlanIfDropByAccGroup Counter64,
dMgmdSnpStatVlanIfDropByGrpLimit Counter64
}
dMgmdSnpStatVlanIfIndex OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the specific VLAN ID."
::= { dMgmdSnpStatVlanIfEntry 1 }
dMgmdSnpStatVlanIfType OBJECT-TYPE
SYNTAX SnoopingType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The snooping type of this entry."
::= { dMgmdSnpStatVlanIfEntry 2 }
dMgmdSnpStatVlanIfV1RxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Report packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 3 }
dMgmdSnpStatVlanIfV1RxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Query packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 4 }
dMgmdSnpStatVlanIfV1TxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Report packets transmitted in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 5 }
dMgmdSnpStatVlanIfV1TxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v1 Query packets transmitted in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 6 }
dMgmdSnpStatVlanIfV2RxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Report packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 7 }
dMgmdSnpStatVlanIfV2RxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Query packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 8 }
dMgmdSnpStatVlanIfV2RxLeave OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Leave packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 9 }
dMgmdSnpStatVlanIfV2TxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Report packets transmitted in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 10 }
dMgmdSnpStatVlanIfV2TxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Query packets transmitted in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 11 }
dMgmdSnpStatVlanIfV2TxLeave OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v2 Leave packets transmitted in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 12 }
dMgmdSnpStatVlanIfV3RxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Report packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 13 }
dMgmdSnpStatVlanIfV3RxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Query packets received in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 14 }
dMgmdSnpStatVlanIfV3TxReport OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Report packets transmitted in
this port/port-channel."
::= { dMgmdSnpStatVlanIfEntry 15 }
dMgmdSnpStatVlanIfV3TxQuery OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD v3 Query packets transmitted in
this VLAN."
::= { dMgmdSnpStatVlanIfEntry 16 }
dMgmdSnpStatVlanIfDropByAccGroup OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD packets dropped by access
group."
::= { dMgmdSnpStatVlanIfEntry 17 }
dMgmdSnpStatVlanIfDropByGrpLimit OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the number of MGMD packets dropped by the limit
of the number of MGMD groups."
::= { dMgmdSnpStatVlanIfEntry 18 }
-- ***************************************************************************
-- Conformance
-- ***************************************************************************
dMgmdSnpCompliances OBJECT IDENTIFIER ::= { dMgmdSnpMIBConformance 1 }
dMgmdSnpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the
DLINKSW-MGMD-SNOOPING-MIB."
MODULE -- this module
MANDATORY-GROUPS {
dMgmdSnpGblCfgGroup,
dMgmdSnpVlanIfCfgGoup,
dMgmdSnpPortIfCfgGoup,
dMgmdSnpDynamicInfoGroup,
dMgmdSnpStatisticsInfoGoup
}
OBJECT dMgmdSnpIfProxyReportingEnabled
MIN-ACCESS read-only
DESCRIPTION
"It is compliant to implement this object as read-only if
proxy-reporting function is not supported at the agent."
::= { dMgmdSnpCompliances 1 }
dMgmdSnpGroups OBJECT IDENTIFIER ::= { dMgmdSnpMIBConformance 2 }
dMgmdSnpGblCfgGroup OBJECT-GROUP
OBJECTS {
dMgmdSnpStateGblEnabled, dMgmdSnpClearAllState,
dMgmdSnpClearIgmpSnoopByPortIf, dMgmdSnpClearMldSnoopByPortIf,
dMgmdSnpClearIgmpSnoopByVlanId, dMgmdSnpClearMldSnoopByVlanId
}
STATUS current
DESCRIPTION
"A collection of objects providing global configuration about MGMD
snooping."
::= { dMgmdSnpGroups 1 }
dMgmdSnpVlanIfCfgGoup OBJECT-GROUP
OBJECTS {
dMgmdSnpIfRowStatus, dMgmdSnpIfStateEnabled,
dMgmdSnpIfQuerierStateEnabled, dMgmdSnpIfQuerierRouter,
dMgmdSnpIfFastLeaveEnabled, dMgmdSnpIfFastLeaveHostBased,
dMgmdSnpIfExplicitTrackEnabled, dMgmdSnpIfReportSuppresEnabled,
dMgmdSnpIfMinimumVersion, dMgmdSnpIfProxyReportingEnabled,
dMgmdSnpIfAutoLearnMrouter, dMgmdSnpIfProxyReportSrcAddrType,
dMgmdSnpIfProxyReportSrcAddr
}
STATUS current
DESCRIPTION
"A collection of objects providing MGMD snooping per VLAN interface
configuration."
::= { dMgmdSnpGroups 2 }
dMgmdSnpPortIfCfgGoup OBJECT-GROUP
OBJECTS {
dMgmdSnpMrouterStatus,
dMgmdSnpMrouterAdminState, dMgmdSnpIfLimitRowStatus,
dMgmdSnpIfLimitExceptAccLstName, dMgmdSnpIfLimitValue,
dMgmdSnpAccGrpStatus, dMgmdSnpAccessGroupName,
dMgmdSnpStaticGrpStatus, dMgmdSnpStaticGrpSrcStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing MGMD snooping per port/port-channel
interface configuration."
::= { dMgmdSnpGroups 3 }
dMgmdSnpDynamicInfoGroup OBJECT-GROUP
OBJECTS {
dMgmdSnpMrouterDynamicMrouter,
dMgmdSnpHostAddress,
dMgmdSnpGroupVersion, dMgmdSnpGroupUpTime,
dMgmdSnpGroupExpire, dMgmdSnpGroupMode,
dMgmdSnpGroupLastReportAddrType,
dMgmdSnpGroupLastReportAddr, dMgmdSnpGroupSrcUpTime,
dMgmdSnpGroupSrcExpire, dMgmdSnpGroupSrcForward
}
STATUS current
DESCRIPTION
"A collection of objects providing dynamic information for learned
multicast router, host, and group."
::= { dMgmdSnpGroups 4 }
dMgmdSnpStatisticsInfoGoup OBJECT-GROUP
OBJECTS {
dMgmdSnpStatPortIfV1RxReport, dMgmdSnpStatPortIfV1RxQuery,
dMgmdSnpStatPortIfV1TxReport, dMgmdSnpStatPortIfV1TxQuery,
dMgmdSnpStatPortIfV2RxReport, dMgmdSnpStatPortIfV2RxQuery,
dMgmdSnpStatPortIfV2RxLeave, dMgmdSnpStatPortIfV2TxReport,
dMgmdSnpStatPortIfV2TxQuery, dMgmdSnpStatPortIfV2TxLeave,
dMgmdSnpStatPortIfV3RxReport, dMgmdSnpStatPortIfV3RxQuery,
dMgmdSnpStatPortIfV3TxReport, dMgmdSnpStatPortIfV3TxQuery,
dMgmdSnpStatPortIfDropByAccGroup, dMgmdSnpStatPortIfDropByGrpLimit,
dMgmdSnpStatVlanIfV1RxReport, dMgmdSnpStatVlanIfV1RxQuery,
dMgmdSnpStatVlanIfV1TxReport, dMgmdSnpStatVlanIfV1TxQuery,
dMgmdSnpStatVlanIfV2RxReport, dMgmdSnpStatVlanIfV2RxQuery,
dMgmdSnpStatVlanIfV2RxLeave, dMgmdSnpStatVlanIfV2TxReport,
dMgmdSnpStatVlanIfV2TxQuery, dMgmdSnpStatVlanIfV2TxLeave,
dMgmdSnpStatVlanIfV3RxReport, dMgmdSnpStatVlanIfV3RxQuery,
dMgmdSnpStatVlanIfV3TxReport, dMgmdSnpStatVlanIfV3TxQuery,
dMgmdSnpStatVlanIfDropByAccGroup, dMgmdSnpStatVlanIfDropByGrpLimit
}
STATUS current
DESCRIPTION
"A collection of objects providing information for MGMD statistics."
::= { dMgmdSnpGroups 5 }
END
|