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
|
ALCATEL-IND1-IGMP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
InetAddressIPv4, InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
softentIND1Igmp
FROM ALCATEL-IND1-BASE;
alcatelIND1IgmpMIB MODULE-IDENTITY
LAST-UPDATED "200903310000Z"
ORGANIZATION "Alcatel-Lucent"
CONTACT-INFO
"Please consult with Customer Service to ensure the most appropriate
version of this document is used with the products in question:
Alcatel-Lucent, Enterprise Solutions Division
(Formerly Alcatel Internetworking, Incorporated)
26801 West Agoura Road
Agoura Hills, CA 91301-5122
United States Of America
Telephone: North America +1 800 995 2696
Latin America +1 877 919 9526
Europe +31 23 556 0100
Asia +65 394 7933
All Other +1 818 878 4507
Electronic Mail: support@ind.alcatel.com
World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise
File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs"
DESCRIPTION
"This module describes an authoritative enterprise-specific Simple
Network Management Protocol (SNMP) Management Information Base (MIB):
Proprietary IPv4 Multicast MIB definitions
The right to make changes in specification and other information
contained in this document without prior notice is reserved.
No liability shall be assumed for any incidental, indirect, special,
or consequential damages whatsoever arising from or related to this
document or the information contained herein.
Vendors, end-users, and other interested parties are granted
non-exclusive license to use this specification in connection with
management of the products for which it is intended to be used.
Copyright (C) 1995-2007 Alcatel-Lucent
ALL RIGHTS RESERVED WORLDWIDE"
REVISION "200903310000Z"
DESCRIPTION
"IGMP helper address changes"
REVISION "200809100000Z"
DESCRIPTION
"Add flood unknown object"
REVISION "200808080000Z"
DESCRIPTION
"The latest version of this MIB Module. Added maximum group limit objects."
REVISION "200704030000Z"
DESCRIPTION
"The revised version of this MIB Module."
::= { softentIND1Igmp 1 }
alcatelIND1IgmpMIBObjects OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIB 1 }
--
-- System Configuration
--
alaIgmp OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 1 }
alaIgmpStatus OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IPv4 multicast switching and routing
on the system."
DEFVAL { disable }
::= { alaIgmp 1 }
alaIgmpQuerying OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Querying on the system."
DEFVAL { disable }
::= { alaIgmp 2 }
alaIgmpSpoofing OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Spoofing on the system."
DEFVAL { disable }
::= { alaIgmp 3 }
alaIgmpZapping OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Zapping on the system."
DEFVAL { disable }
::= { alaIgmp 4 }
alaIgmpVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the default IGMP protocol Version running on the system."
DEFVAL { 2 }
::= { alaIgmp 5 }
alaIgmpRobustness OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Robustness variable used on the system."
DEFVAL { 2 }
::= { alaIgmp 6 }
alaIgmpQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Query Interval used on the system."
DEFVAL { 125 }
::= { alaIgmp 7 }
alaIgmpQueryResponseInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "tenths of seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Query Response Interval on the system."
DEFVAL { 100 }
::= { alaIgmp 8 }
alaIgmpLastMemberQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "tenths of seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Last Member Query Interval on the system."
DEFVAL { 10 }
::= { alaIgmp 9 }
alaIgmpRouterTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IGMP Router Timeout on the system."
DEFVAL { 90 }
::= { alaIgmp 10 }
alaIgmpSourceTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IGMP Source Timeout on the system."
DEFVAL { 30 }
::= { alaIgmp 11 }
alaIgmpProxying OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Proxying on the system."
DEFVAL { disable }
::= { alaIgmp 12 }
alaIgmpUnsolicitedReportInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IGMP Unsolicited Report Interval on the system."
DEFVAL { 1 }
::= { alaIgmp 13 }
alaIgmpQuerierForwarding OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Querier Forwarding on the system."
DEFVAL { disable }
::= { alaIgmp 14 }
alaIgmpMaxGroupLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The global limit on maximum number of IGMP Group memberships that can be learnt on each
port/vlan instance."
DEFVAL {0}
::= { alaIgmp 15 }
alaIgmpMaxGroupExceedAction OBJECT-TYPE
SYNTAX INTEGER { none(0), drop(1), replace(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The global configuration of action to be taken when IGMP group membership limit is exceeded on a
port/vlan instance."
DEFVAL { none }
::= { alaIgmp 16 }
alaIgmpFloodUnknown OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable flooding of multicast data packets during flow
learning and setup."
DEFVAL { disable }
::= { alaIgmp 17 }
alaIgmpHelperAddressType OBJECT-TYPE
SYNTAX InetAddressType (1)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the address type of the helper address. Must be ipv4(1) and set
at the same time as alaIgmpHelperAddress."
::= { alaIgmp 18 }
alaIgmpHelperAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE(4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured IPv4 helper address. When an IGMP report or leave
is received by the device it will remove the IP header and regenerate a
new IP header with a destination IP address specified. Use 0.0.0.0 to
no longer help an IGMP report to an remote address. Must be set at the
same time as alaIgmpHelperAddressType"
::= { alaIgmp 19 }
--
-- VLAN Configuration Table
--
alaIgmpVlan OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 2 }
alaIgmpVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN table contains the information on which IPv4 multicast
switching and routing is configured."
::= { alaIgmpVlan 1 }
alaIgmpVlanEntry OBJECT-TYPE
SYNTAX IgmpVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponds to a VLAN on which IPv4 multicast switching
and routing is configured."
INDEX {
alaIgmpVlanIndex
}
::= { alaIgmpVlanTable 1 }
IgmpVlanEntry ::= SEQUENCE {
alaIgmpVlanIndex Unsigned32,
alaIgmpVlanStatus INTEGER,
alaIgmpVlanQuerying INTEGER,
alaIgmpVlanSpoofing INTEGER,
alaIgmpVlanZapping INTEGER,
alaIgmpVlanVersion Unsigned32,
alaIgmpVlanRobustness Unsigned32,
alaIgmpVlanQueryInterval Unsigned32,
alaIgmpVlanQueryResponseInterval Unsigned32,
alaIgmpVlanLastMemberQueryInterval Unsigned32,
alaIgmpVlanRouterTimeout Unsigned32,
alaIgmpVlanSourceTimeout Unsigned32,
alaIgmpVlanProxying INTEGER,
alaIgmpVlanUnsolicitedReportInterval Unsigned32,
alaIgmpVlanQuerierForwarding INTEGER,
alaIgmpVlanMaxGroupLimit Unsigned32,
alaIgmpVlanMaxGroupExceedAction INTEGER,
alaIgmpVlanSpoofAddressType InetAddressType,
alaIgmpVlanSpoofAddress InetAddress
}
alaIgmpVlanIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN on which IPv4 multicast switching and routing
is configured."
::= { alaIgmpVlanEntry 1 }
alaIgmpVlanStatus OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IPv4 multicast switching and routing
on the VLAN."
::= { alaIgmpVlanEntry 2 }
alaIgmpVlanQuerying OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Querying on the VLAN."
::= { alaIgmpVlanEntry 3 }
alaIgmpVlanSpoofing OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Spoofing on the VLAN."
::= { alaIgmpVlanEntry 4 }
alaIgmpVlanZapping OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Zapping on the VLAN."
::= { alaIgmpVlanEntry 5 }
alaIgmpVlanVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the default IGMP protocol Version running on the VLAN."
::= { alaIgmpVlanEntry 6 }
alaIgmpVlanRobustness OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Robustness variable used on the VLAN."
::= { alaIgmpVlanEntry 7 }
alaIgmpVlanQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Query Interval used on the VLAN."
::= { alaIgmpVlanEntry 8 }
alaIgmpVlanQueryResponseInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "tenths of seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Query Response Interval on the VLAN."
::= { alaIgmpVlanEntry 9 }
alaIgmpVlanLastMemberQueryInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "tenths of seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Last Member Query Interval on the VLAN."
::= { alaIgmpVlanEntry 10 }
alaIgmpVlanRouterTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Router Timeout on the VLAN."
::= { alaIgmpVlanEntry 11 }
alaIgmpVlanSourceTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Source Timeout on the VLAN."
::= { alaIgmpVlanEntry 12 }
alaIgmpVlanProxying OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Proxying on the VLAN."
::= { alaIgmpVlanEntry 13 }
alaIgmpVlanUnsolicitedReportInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the IGMP Unsolicited Report Interval on the VLAN."
::= { alaIgmpVlanEntry 14 }
alaIgmpVlanQuerierForwarding OBJECT-TYPE
SYNTAX INTEGER { none(0), enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively enable IGMP Querier Forwarding on the VLAN."
::= { alaIgmpVlanEntry 15 }
alaIgmpVlanMaxGroupLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of IGMP Group memberships that can be learnt on the VLAN."
DEFVAL {0}
::= { alaIgmpVlanEntry 16 }
alaIgmpVlanMaxGroupExceedAction OBJECT-TYPE
SYNTAX INTEGER { none(0), drop(1), replace(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The action to be taken when the IGMP group membership limit is exceeded on the VLAN."
DEFVAL { none }
::= { alaIgmpVlanEntry 17 }
alaIgmpVlanSpoofAddressType OBJECT-TYPE
SYNTAX InetAddressType(1..2)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Set the type of SpoofAddress for the VLAN."
::= { alaIgmpVlanEntry 18 }
alaIgmpVlanSpoofAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Set the SpoofAddress for the VLAN."
::= { alaIgmpVlanEntry 19 }
--
-- Group Membership Table
--
alaIgmpMember OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 3 }
alaIgmpMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the IGMP group membership information."
::= { alaIgmpMember 1 }
alaIgmpMemberEntry OBJECT-TYPE
SYNTAX IgmpMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to an IGMP group membership request."
INDEX {
alaIgmpMemberVlan,
alaIgmpMemberIfIndex,
alaIgmpMemberGroupAddress,
alaIgmpMemberSourceAddress
}
::= { alaIgmpMemberTable 1 }
IgmpMemberEntry ::= SEQUENCE {
alaIgmpMemberVlan Unsigned32,
alaIgmpMemberIfIndex InterfaceIndex,
alaIgmpMemberGroupAddress InetAddressIPv4,
alaIgmpMemberSourceAddress InetAddressIPv4,
alaIgmpMemberMode INTEGER,
alaIgmpMemberCount Counter32,
alaIgmpMemberTimeout TimeTicks
}
alaIgmpMemberVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group membership request's VLAN."
::= { alaIgmpMemberEntry 1 }
alaIgmpMemberIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group membership request's ifIndex."
::= { alaIgmpMemberEntry 2 }
alaIgmpMemberGroupAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group membership request's IPv4 group address."
::= { alaIgmpMemberEntry 3 }
alaIgmpMemberSourceAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The group membership request's IPv4 source address."
::= { alaIgmpMemberEntry 4 }
alaIgmpMemberMode OBJECT-TYPE
SYNTAX INTEGER { include(1), exclude(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group membership request's IGMP source filter mode."
::= { alaIgmpMemberEntry 5 }
alaIgmpMemberCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group membership request's counter."
::= { alaIgmpMemberEntry 6 }
alaIgmpMemberTimeout OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group membership request's timeout."
::= { alaIgmpMemberEntry 7 }
--
-- Static Group Membership Table
--
alaIgmpStaticMember OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 4 }
alaIgmpStaticMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpStaticMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the static IGMP group membership information."
::= { alaIgmpStaticMember 1 }
alaIgmpStaticMemberEntry OBJECT-TYPE
SYNTAX IgmpStaticMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to a static IGMP group membership request."
INDEX {
alaIgmpStaticMemberVlan,
alaIgmpStaticMemberIfIndex,
alaIgmpStaticMemberGroupAddress
}
::= { alaIgmpStaticMemberTable 1 }
IgmpStaticMemberEntry ::= SEQUENCE {
alaIgmpStaticMemberVlan Unsigned32,
alaIgmpStaticMemberIfIndex InterfaceIndex,
alaIgmpStaticMemberGroupAddress InetAddressIPv4,
alaIgmpStaticMemberRowStatus RowStatus
}
alaIgmpStaticMemberVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static group membership request's VLAN."
::= { alaIgmpStaticMemberEntry 1 }
alaIgmpStaticMemberIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static group membership request's ifIndex."
::= { alaIgmpStaticMemberEntry 2 }
alaIgmpStaticMemberGroupAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static group membership request's IPv4 group address."
::= { alaIgmpStaticMemberEntry 3 }
alaIgmpStaticMemberRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used in accordance with installation and removal conventions
for conceptual rows."
::= { alaIgmpStaticMemberEntry 4 }
--
-- Neighbor Table
--
alaIgmpNeighbor OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 5 }
alaIgmpNeighborTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the neighboring IP multicast routers."
::= { alaIgmpNeighbor 1 }
alaIgmpNeighborEntry OBJECT-TYPE
SYNTAX IgmpNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to an IP multicast router."
INDEX {
alaIgmpNeighborVlan,
alaIgmpNeighborIfIndex,
alaIgmpNeighborHostAddress
}
::= { alaIgmpNeighborTable 1 }
IgmpNeighborEntry ::= SEQUENCE {
alaIgmpNeighborVlan Unsigned32,
alaIgmpNeighborIfIndex InterfaceIndex,
alaIgmpNeighborHostAddress InetAddressIPv4,
alaIgmpNeighborCount Counter32,
alaIgmpNeighborTimeout TimeTicks
}
alaIgmpNeighborVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast router's VLAN."
::= { alaIgmpNeighborEntry 1 }
alaIgmpNeighborIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast router's ifIndex."
::= { alaIgmpNeighborEntry 2 }
alaIgmpNeighborHostAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast router's IPv4 host address."
::= { alaIgmpNeighborEntry 3 }
alaIgmpNeighborCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast router's counter."
::= { alaIgmpNeighborEntry 4 }
alaIgmpNeighborTimeout OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast router's timeout."
::= { alaIgmpNeighborEntry 5 }
--
-- Static Neighbor Table
--
alaIgmpStaticNeighbor OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 6 }
alaIgmpStaticNeighborTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpStaticNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the static IP multicast routers."
::= { alaIgmpStaticNeighbor 1 }
alaIgmpStaticNeighborEntry OBJECT-TYPE
SYNTAX IgmpStaticNeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to a static IP multicast router."
INDEX {
alaIgmpStaticNeighborVlan,
alaIgmpStaticNeighborIfIndex
}
::= { alaIgmpStaticNeighborTable 1 }
IgmpStaticNeighborEntry ::= SEQUENCE {
alaIgmpStaticNeighborVlan Unsigned32,
alaIgmpStaticNeighborIfIndex InterfaceIndex,
alaIgmpStaticNeighborRowStatus RowStatus
}
alaIgmpStaticNeighborVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static IP multicast router's VLAN."
::= { alaIgmpStaticNeighborEntry 1 }
alaIgmpStaticNeighborIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static IP multicast router's ifIndex."
::= { alaIgmpStaticNeighborEntry 2 }
alaIgmpStaticNeighborRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used in accordance with installation and removal conventions
for conceptual rows."
::= { alaIgmpStaticNeighborEntry 3 }
--
-- Querier Table
--
alaIgmpQuerier OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 7 }
alaIgmpQuerierTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpQuerierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the neighboring IGMP queriers."
::= { alaIgmpQuerier 1 }
alaIgmpQuerierEntry OBJECT-TYPE
SYNTAX IgmpQuerierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to an IGMP querier."
INDEX {
alaIgmpQuerierVlan,
alaIgmpQuerierIfIndex,
alaIgmpQuerierHostAddress
}
::= { alaIgmpQuerierTable 1 }
IgmpQuerierEntry ::= SEQUENCE {
alaIgmpQuerierVlan Unsigned32,
alaIgmpQuerierIfIndex InterfaceIndex,
alaIgmpQuerierHostAddress InetAddressIPv4,
alaIgmpQuerierCount Counter32,
alaIgmpQuerierTimeout TimeTicks
}
alaIgmpQuerierVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IGMP querier's VLAN."
::= { alaIgmpQuerierEntry 1 }
alaIgmpQuerierIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IGMP querier's ifIndex."
::= { alaIgmpQuerierEntry 2 }
alaIgmpQuerierHostAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IGMP querier's IPv4 host address."
::= { alaIgmpQuerierEntry 3 }
alaIgmpQuerierCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IGMP querier's counter."
::= { alaIgmpQuerierEntry 4 }
alaIgmpQuerierTimeout OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IGMP querier's timeout."
::= { alaIgmpQuerierEntry 5 }
--
-- Static Querier Table
--
alaIgmpStaticQuerier OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 8 }
alaIgmpStaticQuerierTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpStaticQuerierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the static IGMP queriers."
::= { alaIgmpStaticQuerier 1 }
alaIgmpStaticQuerierEntry OBJECT-TYPE
SYNTAX IgmpStaticQuerierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to a static IGMP querier."
INDEX {
alaIgmpStaticQuerierVlan,
alaIgmpStaticQuerierIfIndex
}
::= { alaIgmpStaticQuerierTable 1 }
IgmpStaticQuerierEntry ::= SEQUENCE {
alaIgmpStaticQuerierVlan Unsigned32,
alaIgmpStaticQuerierIfIndex InterfaceIndex,
alaIgmpStaticQuerierRowStatus RowStatus
}
alaIgmpStaticQuerierVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static IGMP querier's VLAN."
::= { alaIgmpStaticQuerierEntry 1 }
alaIgmpStaticQuerierIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static IGMP querier's ifIndex."
::= { alaIgmpStaticQuerierEntry 2 }
alaIgmpStaticQuerierRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used in accordance with installation and removal conventions
for conceptual rows."
::= { alaIgmpStaticQuerierEntry 3 }
--
-- Source Table
--
alaIgmpSource OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 9 }
alaIgmpSourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpSourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the IP multicast source information."
::= { alaIgmpSource 1 }
alaIgmpSourceEntry OBJECT-TYPE
SYNTAX IgmpSourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to an IP multicast source flow."
INDEX {
alaIgmpSourceVlan,
alaIgmpSourceGroupAddress,
alaIgmpSourceHostAddress,
alaIgmpSourceDestAddress,
alaIgmpSourceOrigAddress
}
::= { alaIgmpSourceTable 1 }
IgmpSourceEntry ::= SEQUENCE {
alaIgmpSourceVlan Unsigned32,
alaIgmpSourceIfIndex InterfaceIndex,
alaIgmpSourceGroupAddress InetAddressIPv4,
alaIgmpSourceHostAddress InetAddressIPv4,
alaIgmpSourceDestAddress InetAddressIPv4,
alaIgmpSourceOrigAddress InetAddressIPv4,
alaIgmpSourceType INTEGER
}
alaIgmpSourceVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast source flow's VLAN."
::= { alaIgmpSourceEntry 1 }
alaIgmpSourceIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast source flow's ifIndex."
::= { alaIgmpSourceEntry 2 }
alaIgmpSourceGroupAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast source flow's IPv4 group address."
::= { alaIgmpSourceEntry 3 }
alaIgmpSourceHostAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast source flow's IPv4 host address."
::= { alaIgmpSourceEntry 4 }
alaIgmpSourceDestAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast source flow's IPv4 tunnel destination address."
::= { alaIgmpSourceEntry 5 }
alaIgmpSourceOrigAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast source flow's IPv4 tunnel source address."
::= { alaIgmpSourceEntry 6 }
alaIgmpSourceType OBJECT-TYPE
SYNTAX INTEGER { mcast(1), pim(2), ipip(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast source flow's encapsulation type."
::= { alaIgmpSourceEntry 7 }
--
-- Forward Table
--
alaIgmpForward OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 10 }
alaIgmpForwardTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpForwardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the IP multicast forward information."
::= { alaIgmpForward 1 }
alaIgmpForwardEntry OBJECT-TYPE
SYNTAX IgmpForwardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to an IP multicast forwarded flow."
INDEX {
alaIgmpForwardVlan,
alaIgmpForwardGroupAddress,
alaIgmpForwardHostAddress,
alaIgmpForwardDestAddress,
alaIgmpForwardOrigAddress,
alaIgmpForwardNextVlan,
alaIgmpForwardNextIfIndex
}
::= { alaIgmpForwardTable 1 }
IgmpForwardEntry ::= SEQUENCE {
alaIgmpForwardVlan Unsigned32,
alaIgmpForwardIfIndex InterfaceIndex,
alaIgmpForwardGroupAddress InetAddressIPv4,
alaIgmpForwardHostAddress InetAddressIPv4,
alaIgmpForwardDestAddress InetAddressIPv4,
alaIgmpForwardOrigAddress InetAddressIPv4,
alaIgmpForwardType INTEGER,
alaIgmpForwardNextVlan Unsigned32,
alaIgmpForwardNextIfIndex InterfaceIndex,
alaIgmpForwardNextType INTEGER
}
alaIgmpForwardVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's VLAN."
::= { alaIgmpForwardEntry 1 }
alaIgmpForwardIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's ifIndex."
::= { alaIgmpForwardEntry 2 }
alaIgmpForwardGroupAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's IPv4 group address."
::= { alaIgmpForwardEntry 3 }
alaIgmpForwardHostAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's IPv4 host address."
::= { alaIgmpForwardEntry 4 }
alaIgmpForwardDestAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's IPv4 tunnel destination address."
::= { alaIgmpForwardEntry 5 }
alaIgmpForwardOrigAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's IPv4 tunnel source address."
::= { alaIgmpForwardEntry 6 }
alaIgmpForwardType OBJECT-TYPE
SYNTAX INTEGER { mcast(1), pim(2), ipip(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's encapsulation type."
::= { alaIgmpForwardEntry 7 }
alaIgmpForwardNextVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's next VLAN."
::= { alaIgmpForwardEntry 8 }
alaIgmpForwardNextIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's next ifIndex."
::= { alaIgmpForwardEntry 9 }
alaIgmpForwardNextType OBJECT-TYPE
SYNTAX INTEGER { mcast(1), pim(2), ipip(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast forwarded flow's next encapsulation type."
::= { alaIgmpForwardEntry 10 }
--
-- Tunnel Table
--
alaIgmpTunnel OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 11 }
alaIgmpTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the IP multicast tunnel information."
::= { alaIgmpTunnel 1 }
alaIgmpTunnelEntry OBJECT-TYPE
SYNTAX IgmpTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to an IP multicast tunneled flow."
INDEX {
alaIgmpTunnelVlan,
alaIgmpTunnelGroupAddress,
alaIgmpTunnelHostAddress,
alaIgmpTunnelDestAddress,
alaIgmpTunnelOrigAddress,
alaIgmpTunnelNextDestAddress
}
::= { alaIgmpTunnelTable 1 }
IgmpTunnelEntry ::= SEQUENCE {
alaIgmpTunnelVlan Unsigned32,
alaIgmpTunnelIfIndex InterfaceIndex,
alaIgmpTunnelGroupAddress InetAddressIPv4,
alaIgmpTunnelHostAddress InetAddressIPv4,
alaIgmpTunnelDestAddress InetAddressIPv4,
alaIgmpTunnelOrigAddress InetAddressIPv4,
alaIgmpTunnelType INTEGER,
alaIgmpTunnelNextDestAddress InetAddressIPv4,
alaIgmpTunnelNextType INTEGER
}
alaIgmpTunnelVlan OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's VLAN."
::= { alaIgmpTunnelEntry 1 }
alaIgmpTunnelIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's ifIndex."
::= { alaIgmpTunnelEntry 2 }
alaIgmpTunnelGroupAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's IPv4 group address."
::= { alaIgmpTunnelEntry 3 }
alaIgmpTunnelHostAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's IPv4 host address."
::= { alaIgmpTunnelEntry 4 }
alaIgmpTunnelDestAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's IPv4 tunnel destination address."
::= { alaIgmpTunnelEntry 5 }
alaIgmpTunnelOrigAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's IPv4 tunnel source address."
::= { alaIgmpTunnelEntry 6 }
alaIgmpTunnelType OBJECT-TYPE
SYNTAX INTEGER { mcast(1), pim(2), ipip(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's encapsulation type."
::= { alaIgmpTunnelEntry 7 }
alaIgmpTunnelNextDestAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's next IPv4 tunnel destination address."
::= { alaIgmpTunnelEntry 8 }
alaIgmpTunnelNextType OBJECT-TYPE
SYNTAX INTEGER { mcast(1), pim(2), ipip(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP multicast tunneled flow's next encapsulation type."
::= { alaIgmpTunnelEntry 9 }
--
-- Port Table for IP Multicast objects managed per port
--
alaIgmpPort OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 12 }
alaIgmpPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaIgmpPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the IP multicast port information."
::= { alaIgmpPort 1 }
alaIgmpPortEntry OBJECT-TYPE
SYNTAX AlaIgmpPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to IP multicast port information."
INDEX {
alaIgmpPortIfIndex
}
::= { alaIgmpPortTable 1 }
AlaIgmpPortEntry ::=
SEQUENCE {
alaIgmpPortIfIndex InterfaceIndex,
alaIgmpPortMaxGroupLimit Unsigned32,
alaIgmpPortMaxGroupExceedAction INTEGER
}
alaIgmpPortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast port's ifIndex."
::= { alaIgmpPortEntry 1 }
alaIgmpPortMaxGroupLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of IGMP Group memberships that can be learnt
on the port."
DEFVAL {0}
::= { alaIgmpPortEntry 2 }
alaIgmpPortMaxGroupExceedAction OBJECT-TYPE
SYNTAX INTEGER { none(0), drop(1), replace(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The action to be taken when IGMP group membership limit is
exceeded for the port."
DEFVAL { none }
::= { alaIgmpPortEntry 3 }
--
-- Port Vlan Table
--
alaIgmpPortVlan OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBObjects 13 }
alaIgmpPortVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaIgmpPortVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the IGMP group membership limit information
for a port/vlan instance."
::= { alaIgmpPortVlan 1 }
alaIgmpPortVlanEntry OBJECT-TYPE
SYNTAX AlaIgmpPortVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to IGMP group membership limit on a port/vlan."
INDEX {
alaIgmpPortIfIndex,
alaIgmpVlanId
}
::= { alaIgmpPortVlanTable 1 }
AlaIgmpPortVlanEntry ::= SEQUENCE {
alaIgmpVlanId Unsigned32,
alaIgmpPortVlanCurrentGroupCount Unsigned32,
alaIgmpPortVlanMaxGroupLimit Unsigned32,
alaIgmpPortVlanMaxGroupExceedAction INTEGER
}
alaIgmpVlanId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast group membership VLAN."
::= { alaIgmpPortVlanEntry 1 }
alaIgmpPortVlanCurrentGroupCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current IP multicast group memberships on a port/vlan
instance."
::= { alaIgmpPortVlanEntry 2 }
alaIgmpPortVlanMaxGroupLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum IGMP Group memberships on the port/vlan instance."
::= { alaIgmpPortVlanEntry 3 }
alaIgmpPortVlanMaxGroupExceedAction OBJECT-TYPE
SYNTAX INTEGER { none(0), drop(1), replace(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The action to be taken when IGMP group membership limit is
exceeded for the port/vlan instance."
::= { alaIgmpPortVlanEntry 4 }
--
-- Conformance Table
--
alcatelIND1IgmpMIBConformance OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIB 2 }
alcatelIND1IgmpMIBCompliances OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBConformance 1 }
alaIgmpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems running IPv4 multicast switch
and routing and implementing ALCATEL-IND1-IGMP-MIB."
MODULE
MANDATORY-GROUPS { alaIgmpGroup, alaIgmpVlanGroup, alaIgmpMemberGroup,
alaIgmpStaticMemberGroup, alaIgmpNeighborGroup,
alaIgmpStaticNeighborGroup, alaIgmpQuerierGroup,
alaIgmpStaticQuerierGroup, alaIgmpSourceGroup,
alaIgmpForwardGroup, alaIgmpTunnelGroup,
alaIgmpPortGroup, alaIgmpPortVlanGroup}
::= { alcatelIND1IgmpMIBCompliances 1 }
alcatelIND1IgmpMIBGroups OBJECT IDENTIFIER ::= { alcatelIND1IgmpMIBConformance 2 }
alaIgmpGroup OBJECT-GROUP
OBJECTS { alaIgmpStatus, alaIgmpQuerying, alaIgmpSpoofing, alaIgmpZapping,
alaIgmpVersion, alaIgmpRobustness, alaIgmpQueryInterval,
alaIgmpQueryResponseInterval, alaIgmpLastMemberQueryInterval,
alaIgmpRouterTimeout, alaIgmpSourceTimeout, alaIgmpProxying,
alaIgmpUnsolicitedReportInterval, alaIgmpQuerierForwarding,
alaIgmpMaxGroupLimit, alaIgmpMaxGroupExceedAction,
alaIgmpFloodUnknown, alaIgmpHelperAddressType, alaIgmpHelperAddress }
STATUS current
DESCRIPTION
"A collection of objects to support management of IPv4 multicast switching
and routing system configuration."
::= { alcatelIND1IgmpMIBGroups 1 }
alaIgmpVlanGroup OBJECT-GROUP
OBJECTS { alaIgmpVlanStatus, alaIgmpVlanQuerying, alaIgmpVlanSpoofing,
alaIgmpVlanZapping, alaIgmpVlanVersion, alaIgmpVlanRobustness,
alaIgmpVlanQueryInterval, alaIgmpVlanQueryResponseInterval,
alaIgmpVlanLastMemberQueryInterval, alaIgmpVlanRouterTimeout,
alaIgmpVlanSourceTimeout, alaIgmpVlanProxying,
alaIgmpVlanUnsolicitedReportInterval, alaIgmpVlanQuerierForwarding,
alaIgmpVlanMaxGroupLimit, alaIgmpVlanMaxGroupExceedAction,
alaIgmpVlanSpoofAddressType, alaIgmpVlanSpoofAddress }
STATUS current
DESCRIPTION
"A collection of objects to support management of IPv4 multicast switching
and routing vlan configuration."
::= { alcatelIND1IgmpMIBGroups 2 }
alaIgmpMemberGroup OBJECT-GROUP
OBJECTS { alaIgmpMemberMode, alaIgmpMemberCount, alaIgmpMemberTimeout }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
group membership information."
::= { alcatelIND1IgmpMIBGroups 3 }
alaIgmpStaticMemberGroup OBJECT-GROUP
OBJECTS { alaIgmpStaticMemberRowStatus }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
static group membership information tables."
::= { alcatelIND1IgmpMIBGroups 4 }
alaIgmpNeighborGroup OBJECT-GROUP
OBJECTS { alaIgmpNeighborCount, alaIgmpNeighborTimeout }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
IP multicast router information."
::= { alcatelIND1IgmpMIBGroups 5 }
alaIgmpStaticNeighborGroup OBJECT-GROUP
OBJECTS { alaIgmpStaticNeighborRowStatus }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
static IP multicast router information."
::= { alcatelIND1IgmpMIBGroups 6 }
alaIgmpQuerierGroup OBJECT-GROUP
OBJECTS { alaIgmpQuerierCount, alaIgmpQuerierTimeout }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
IGMP querier information."
::= { alcatelIND1IgmpMIBGroups 7 }
alaIgmpStaticQuerierGroup OBJECT-GROUP
OBJECTS { alaIgmpStaticQuerierRowStatus }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
static IGMP querier information."
::= { alcatelIND1IgmpMIBGroups 8 }
alaIgmpSourceGroup OBJECT-GROUP
OBJECTS { alaIgmpSourceIfIndex, alaIgmpSourceType }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
IP multicast source information."
::= { alcatelIND1IgmpMIBGroups 9 }
alaIgmpForwardGroup OBJECT-GROUP
OBJECTS { alaIgmpForwardIfIndex, alaIgmpForwardType, alaIgmpForwardNextType }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
IP multicast forward information."
::= { alcatelIND1IgmpMIBGroups 10 }
alaIgmpTunnelGroup OBJECT-GROUP
OBJECTS { alaIgmpTunnelIfIndex, alaIgmpTunnelType, alaIgmpTunnelNextType }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching and routing
IP multicast tunnel information."
::= { alcatelIND1IgmpMIBGroups 11 }
alaIgmpPortGroup OBJECT-GROUP
OBJECTS { alaIgmpPortMaxGroupLimit, alaIgmpPortMaxGroupExceedAction }
STATUS current
DESCRIPTION
"A collection of objects to support IPv4 multicast switching configuration."
::= { alcatelIND1IgmpMIBGroups 12 }
alaIgmpPortVlanGroup OBJECT-GROUP
OBJECTS { alaIgmpPortVlanCurrentGroupCount, alaIgmpPortVlanMaxGroupLimit, alaIgmpPortVlanMaxGroupExceedAction}
STATUS current
DESCRIPTION
"An object to support IPv4 multicast switching group limit information
for a port/vlan instance."
::= { alcatelIND1IgmpMIBGroups 13 }
END
|