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
|
-- *****************************************************************
-- UBQS-MULTICAST-MIB: Ubiquoss Multicast MIB
--
-- May 2011, jisookim
--
-- Copyright (c) 2011 by Ubiquoss, Corp.
-- All rights reserved.
-- *****************************************************************
--
UBQS-MULTICAST-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32,Counter32
FROM SNMPv2-SMI
DisplayString
FROM RFC1213-MIB
RowStatus, MacAddress, TruthValue
FROM SNMPv2-TC
VlanIndex
FROM Q-BRIDGE-MIB
InetAddress
FROM INET-ADDRESS-MIB
InterfaceIndex
FROM IF-MIB
ubiMgmtv2
FROM UBQS-SMI
InetAddressIPv6
FROM INET-ADDRESS-MIB;
ubiMulticastMIB MODULE-IDENTITY
LAST-UPDATED "201105302000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
" Ubiquoss
Customer Service
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
Tel: 82-2-2190-3100"
DESCRIPTION
"This MIB module defines multicast information"
::= { ubiMgmtv2 21 }
-- *****************************************************************
-- Textual Conventions
-- *****************************************************************
-- *****************************************************************
-- ubiMulticastMIB
-- *****************************************************************
ubiMulticastMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiMulticastMIB 0 }
ubiIgmpSnoopingMIBObjects OBJECT IDENTIFIER ::= { ubiMulticastMIB 1 }
ubiMvrMIBObjects OBJECT IDENTIFIER ::= { ubiMulticastMIB 2 }
ubiIgmpStatsMIBObjects OBJECT IDENTIFIER ::= { ubiMulticastMIB 3 }
ubiMldSnoopingMIBObjects OBJECT IDENTIFIER ::= { ubiMulticastMIB 4 }
ubiIgmpProxyRoutingMIBObjects OBJECT IDENTIFIER ::= { ubiMulticastMIB 5 }
ubiMulticastMIBConformance OBJECT IDENTIFIER ::= { ubiMulticastMIB 10 }
-- ***********************************************************
-- ubiMulticastMIBNotificationPrefix
-- **********************************************************
ubiIgmpSnoopVlanNotification NOTIFICATION-TYPE
OBJECTS {
ubiIgmpSnoopVlanIndex,
ubiIgmpSnoopVlanEnabled
}
STATUS current
DESCRIPTION
""
::= { ubiMulticastMIBNotificationPrefix 1 }
-- ***********************************************************
-- ubiIGMPSnoopVlanConfigTable(1)
-- ***********************************************************
ubiIgmpSnoopVlanConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopVlanConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains VLAN based configuration information
for IGMP Snooping."
::= { ubiIgmpSnoopingMIBObjects 1 }
ubiIgmpSnoopVlanConfigEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopVlanConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each active VLAN in the device
and deleted when the VLAN becomes inactive."
INDEX { ubiIgmpSnoopVlanIndex}
::= { ubiIgmpSnoopVlanConfigTable 1 }
UbiIgmpSnoopVlanConfigEntry ::= SEQUENCE {
ubiIgmpSnoopVlanIndex VlanIndex,
ubiIgmpSnoopVlanEnabled TruthValue,
ubiIgmpSnoopVlanFastLeaveEnabled TruthValue,
ubiIgmpSnoopVlanReportSuppressionEnabled TruthValue,
ubiIgmpSnoopVlanForcedSourceIP IpAddress,
ubiIgmpSnoopVlanRowStatus RowStatus,
ubiIgmpSnoopVlanSnoopingQuerier TruthValue,
ubiIgmpSnoopVlanLastMemberQuery TruthValue,
ubiIgmpSnoopVlanVlantagCos Integer32
}
ubiIgmpSnoopVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopVlanConfigEntry 1 }
ubiIgmpSnoopVlanEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When this object is set to 'true' IGMP Snooping
is enabled on this VLAN else disabled."
::= { ubiIgmpSnoopVlanConfigEntry 2 }
ubiIgmpSnoopVlanFastLeaveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether Fast-Leave mechanism
(also known as Immediate-Leave) is to be performed by IGMP
Snooping or not. When enabled, IGMP Snooping will remove
the interface from the group mentioned in the IGMP Leave
message received on that interface without waiting for the
IGMP Group-Specific Query to timeout to determine whether
there are any more hosts on that interface for that group."
::= { ubiIgmpSnoopVlanConfigEntry 3 }
ubiIgmpSnoopVlanReportSuppressionEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to 'true', IGMP Snooping will
suppress duplicate IGMP Reports. When this object is set
to 'false', all IGMP Reports are forwarded to all multicast
routers in the VLAN."
::= { ubiIgmpSnoopVlanConfigEntry 4 }
ubiIgmpSnoopVlanForcedSourceIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopVlanConfigEntry 5 }
ubiIgmpSnoopVlanRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"create or remove IGMP-snooping vlan entry"
::= { ubiIgmpSnoopVlanConfigEntry 6 }
ubiIgmpSnoopVlanSnoopingQuerier OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to 'true',
IGMP snooping will send general query.
When this object is set to 'false',
IGMP snooping will not send general query."
::= { ubiIgmpSnoopVlanConfigEntry 7 }
ubiIgmpSnoopVlanLastMemberQuery OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to 'true',
IGMP snooping will send group query only to last member.
When this object is set to 'false',
IGMP snooping will send group query to all members."
::= { ubiIgmpSnoopVlanConfigEntry 8 }
ubiIgmpSnoopVlanVlantagCos OBJECT-TYPE
SYNTAX Integer32 (0..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether VLAN tag COS in Ethernet
Header of IGMP Messages is to be filled to the configured
value or keeped by received IGMP Messages. When this
object is set to <0~7>, VLAN tag COS of forwarding or
sending IGMP Messages will be filled to configured value.
When this object is set to <8>, VLAN tag COS of received
IGMP Messages will be keeped and sended."
::= { ubiIgmpSnoopVlanConfigEntry 9 }
-- ***********************************************************
-- ubiIGMPSnoopMrouterTable(2)
-- ***********************************************************
ubiIgmpSnoopMrouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopMrouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains VLAN based configuration information
for IGMP Snooping."
::= { ubiIgmpSnoopingMIBObjects 2 }
ubiIgmpSnoopMrouterEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopMrouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each active VLAN in the device
and deleted when the VLAN becomes inactive."
INDEX { ubiIgmpSnoopMrouterVlanIndex, ubiIgmpSnoopMrouterIfIndex }
::= { ubiIgmpSnoopMrouterTable 1 }
UbiIgmpSnoopMrouterEntry ::= SEQUENCE {
ubiIgmpSnoopMrouterVlanIndex VlanIndex,
ubiIgmpSnoopMrouterIfIndex Integer32,
ubiIgmpSnoopMrouterSVlanID VlanIndex,
ubiIgmpSnoopMrouterRowStatus RowStatus
}
ubiIgmpSnoopMrouterVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopMrouterEntry 1 }
ubiIgmpSnoopMrouterIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates interface index is configured."
::= { ubiIgmpSnoopMrouterEntry 2 }
ubiIgmpSnoopMrouterSVlanID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopMrouterEntry 3 }
ubiIgmpSnoopMrouterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"create or remove IGMP-snooping vlan entry"
::= { ubiIgmpSnoopMrouterEntry 4 }
-- ***********************************************************
-- ubiIGMPSnoopStaticGroupTable(3)
-- ***********************************************************
ubiIgmpSnoopStaticGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopStaticGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains VLAN based configuration information
for IGMP Snooping."
::= { ubiIgmpSnoopingMIBObjects 3 }
ubiIgmpSnoopStaticGroupEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopStaticGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each active VLAN in the device
and deleted when the VLAN becomes inactive."
INDEX { ubiIgmpSnoopStaticGroupVlanIndex,
ubiIgmpSnoopStaticGroupIfIndex,
ubiIgmpSnoopStaticGroupAddress}
::= { ubiIgmpSnoopStaticGroupTable 1 }
UbiIgmpSnoopStaticGroupEntry ::= SEQUENCE {
ubiIgmpSnoopStaticGroupVlanIndex VlanIndex,
ubiIgmpSnoopStaticGroupIfIndex Integer32,
ubiIgmpSnoopStaticGroupAddress IpAddress,
ubiIgmpSnoopStaticGroupRowStatus RowStatus
}
ubiIgmpSnoopStaticGroupVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopStaticGroupEntry 1 }
ubiIgmpSnoopStaticGroupIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates port's index
is configured."
::= { ubiIgmpSnoopStaticGroupEntry 2 }
ubiIgmpSnoopStaticGroupAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopStaticGroupEntry 3 }
ubiIgmpSnoopStaticGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"create or remove IGMP-snooping vlan entry"
::= { ubiIgmpSnoopStaticGroupEntry 4 }
-- ***********************************************************
-- ubiIGMPSnoopPortConfigTable(4)
-- ***********************************************************
ubiIgmpSnoopPortConfigAclTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopPortConfigAclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains VLAN based configuration information
for IGMP Snooping."
::= { ubiIgmpSnoopingMIBObjects 4 }
ubiIgmpSnoopPortConfigAclEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopPortConfigAclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is created for each active VLAN in the device
and deleted when the VLAN becomes inactive."
INDEX { ubiIgmpSnoopPortConfigAclIfIndex,
ubiIgmpSnoopPortConfigAclVlanID
}
::= { ubiIgmpSnoopPortConfigAclTable 1 }
UbiIgmpSnoopPortConfigAclEntry ::= SEQUENCE {
ubiIgmpSnoopPortConfigAclIfIndex Integer32,
ubiIgmpSnoopPortConfigAclVlanID VlanIndex,
ubiIgmpSnoopPortConfigAclName DisplayString,
ubiIgmpSnoopPortConfigAclRowStatus RowStatus
}
ubiIgmpSnoopPortConfigAclIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopPortConfigAclEntry 1 }
ubiIgmpSnoopPortConfigAclVlanID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN in which IGMP Snooping
is configured."
::= { ubiIgmpSnoopPortConfigAclEntry 2 }
ubiIgmpSnoopPortConfigAclName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates port's index
is configured."
::= { ubiIgmpSnoopPortConfigAclEntry 3 }
ubiIgmpSnoopPortConfigAclRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"create or remove IGMP-snooping vlan entry"
::= { ubiIgmpSnoopPortConfigAclEntry 4 }
-- ***********************************************************
-- ubiIGMPSnoopReporterTable(5)
-- ***********************************************************
ubiIgmpSnoopReporterTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopReporterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopingMIBObjects 5 }
ubiIgmpSnoopReporterEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopReporterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { ubiIgmpSnoopVlanIndex,
ubiIgmpSnoopReporterIfIndex,
ubiIgmpSnoopReporterGroupAddress,
ubiIgmpSnoopReporterAddress }
::= { ubiIgmpSnoopReporterTable 1 }
UbiIgmpSnoopReporterEntry ::= SEQUENCE {
ubiIgmpSnoopReporterIfIndex Integer32,
ubiIgmpSnoopReporterGroupAddress IpAddress,
ubiIgmpSnoopReporterAddress IpAddress,
ubiIgmpSnoopReporterUptime TimeTicks,
ubiIgmpSnoopReporterExpireTime TimeTicks
}
ubiIgmpSnoopReporterIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopReporterEntry 1 }
ubiIgmpSnoopReporterGroupAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopReporterEntry 2 }
ubiIgmpSnoopReporterAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopReporterEntry 3 }
ubiIgmpSnoopReporterUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopReporterEntry 4 }
ubiIgmpSnoopReporterExpireTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopReporterEntry 5 }
-- ***********************************************************
-- ubiIGMPSnoopCacheTable(6)
-- ***********************************************************
ubiIgmpSnoopCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the IP multicast groups for
which the host is a member on a particular interface."
::= { ubiIgmpSnoopingMIBObjects 6 }
ubiIgmpSnoopCacheEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the ubiIgmpSnoopCacheTable."
INDEX { ubiIgmpSnoopCacheVlanIndex, ubiIgmpSnoopCacheIfIndex,
ubiIgmpSnoopCacheAddress }
::= { ubiIgmpSnoopCacheTable 1 }
UbiIgmpSnoopCacheEntry ::= SEQUENCE {
ubiIgmpSnoopCacheVlanIndex InterfaceIndex,
ubiIgmpSnoopCacheIfIndex InterfaceIndex,
ubiIgmpSnoopCacheAddress InetAddress ,
ubiIgmpSnoopCacheUpTime TimeTicks,
ubiIgmpSnoopCacheExpireTime TimeTicks,
ubiIgmpSnoopCacheLastReporter InetAddress
}
ubiIgmpSnoopCacheVlanIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vlan interface for which this entry contains information
for an IP multicast group address."
::= { ubiIgmpSnoopCacheEntry 1 }
ubiIgmpSnoopCacheIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface for which this entry contains information
for an IP multicast group address."
::= { ubiIgmpSnoopCacheEntry 2 }
ubiIgmpSnoopCacheAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE(4|16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast group address for which this entry
contains information. The InetAddressType, e.g., IPv4 or
IPv6, is identified by the ubiIgmpSnoopCacheAddressType variable
in the ubiIgmpSnoopCache table."
::= { ubiIgmpSnoopCacheEntry 3 }
ubiIgmpSnoopCacheUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time elapsed since this entry was created."
::= { ubiIgmpSnoopCacheEntry 4 }
ubiIgmpSnoopCacheExpireTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopCacheEntry 5 }
ubiIgmpSnoopCacheLastReporter OBJECT-TYPE
SYNTAX InetAddress (SIZE(4|16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the source of the last membership report
received for this IP multicast group address on this
interface. If no membership report has been received, this
object has a value of 0. The InetAddressType, e.g., IPv4 or
IPv6, is identified by the ubiIgmpSnoopCacheAddressType variable
in the ubiIgmpSnoopCache table."
::= { ubiIgmpSnoopCacheEntry 6 }
-- ***********************************************************
-- ubiMvrMIBObjects
-- ***********************************************************
ubiMvrGlobalConfigEnable OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The enabled status of MVR function on this system.
This table is used to activate entries in the ubiMvrPortConfigTable."
::= { ubiMvrMIBObjects 1 }
ubiMvrPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiMvrPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains PORT based configuration information for MVR."
::= { ubiMvrMIBObjects 2 }
ubiMvrPortConfigEntry OBJECT-TYPE
SYNTAX UbiMvrPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A logical row in the ubiMvrPortConfigTable."
INDEX
{
IfIndex,
ubiMvrPortConfigVlanid,
ubiMvrPortConfigGroupaddress,
ubiMvrPortConfigGroupCount
}
::= { ubiMvrPortConfigTable 1 }
UbiMvrPortConfigEntry ::= SEQUENCE {
ubiMvrPortConfigVlanid Integer32,
ubiMvrPortConfigGroupaddress IpAddress,
ubiMvrPortConfigGroupCount Integer32,
ubiMvrPortConfigRowStatus RowStatus
}
ubiMvrPortConfigVlanid OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates vlan ID is configured."
::= { ubiMvrPortConfigEntry 1 }
ubiMvrPortConfigGroupaddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates multicast group address is configured."
::= { ubiMvrPortConfigEntry 2 }
ubiMvrPortConfigGroupCount OBJECT-TYPE
SYNTAX Integer32 (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates multicast group count is configured."
::= { ubiMvrPortConfigEntry 3 }
ubiMvrPortConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"create or remove entries in the ubiMvrPortConfigEntry."
::= { ubiMvrPortConfigEntry 4 }
-- ***********************************************************
-- ubiIgmpStatsMIBObjects
-- ***********************************************************
ubiIgmpClearStatistics OBJECT-TYPE
SYNTAX INTEGER
{
clear(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { ubiIgmpStatsMIBObjects 1 }
ubiIgmpVlanStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpVlanStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiIgmpStatsMIBObjects 2 }
ubiIgmpVlanStatsEntry OBJECT-TYPE
SYNTAX UbiIgmpVlanStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
ubiVlanIfIndex
}
::= { ubiIgmpVlanStatsTable 1 }
UbiIgmpVlanStatsEntry ::= SEQUENCE {
ubiIgmpVlanStatsEntryCount Counter64,
ubiIgmpVlanStatsReportTxTotal Counter64,
ubiIgmpVlanStatsReportRxTotal Counter64,
ubiIgmpVlanStatsReportRxSuccess Counter64,
ubiIgmpVlanStatsReportRxUnsuccess Counter64,
ubiIgmpVlanStatsLeaveTxTotal Counter64,
ubiIgmpVlanStatsLeaveRxTotal Counter64,
ubiIgmpVlanStatsGeneralQueryTxTotal Counter64,
ubiIgmpVlanStatsGeneralQueryRxTotal Counter64,
ubiIgmpVlanStatsGroupSpecificQueryTxTotal Counter64,
ubiIgmpVlanStatsGroupSpecificQueryRxTotal Counter64,
ubiIgmpVlanStatsInvalidMessageRxTotal Counter64
}
ubiIgmpVlanStatsEntryCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 1 }
ubiIgmpVlanStatsReportTxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 2 }
ubiIgmpVlanStatsReportRxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 3 }
ubiIgmpVlanStatsReportRxSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 4 }
ubiIgmpVlanStatsReportRxUnsuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 5 }
ubiIgmpVlanStatsLeaveTxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 6 }
ubiIgmpVlanStatsLeaveRxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 7 }
ubiIgmpVlanStatsGeneralQueryTxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 8 }
ubiIgmpVlanStatsGeneralQueryRxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 9 }
ubiIgmpVlanStatsGroupSpecificQueryTxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 10 }
ubiIgmpVlanStatsGroupSpecificQueryRxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 11 }
ubiIgmpVlanStatsInvalidMessageRxTotal OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpVlanStatsEntry 12 }
-- ***********************************************************
-- ubiIgmpStatsMIBObjects(3)
-- ***********************************************************
ubiIgmpSnoopMembershipCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiIgmpSnoopMembershipEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { ubiIgmpStatsMIBObjects 3 }
ubiIgmpSnoopMembershipCountEntry OBJECT-TYPE
SYNTAX UbiIgmpSnoopMembershipEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX
{
ubiVlanIfIndex,
ubiIgmpSnoopCacheAddress
}
::= { ubiIgmpSnoopMembershipCountTable 1 }
UbiIgmpSnoopMembershipEntry ::= SEQUENCE {
ubiIgmpSnoopMembershipCount Counter64
}
ubiIgmpSnoopMembershipCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { ubiIgmpSnoopMembershipCountEntry 1 }
-- ***********************************************************
-- ubiIgmpProxyRoutingMIBObjects
-- ***********************************************************
ubiIgmpProxyRoutingIfMRouteCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProxyRoutingIfMRouteCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Multicast mroute count table for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingMIBObjects 1 }
ubiIgmpProxyRoutingIfMRouteCountEntry OBJECT-TYPE
SYNTAX ProxyRoutingIfMRouteCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Multicast mroute count entry for interface (IGMPRT)"
INDEX { IfIndex }
::= { ubiIgmpProxyRoutingIfMRouteCountTable 1 }
ProxyRoutingIfMRouteCountEntry ::= SEQUENCE {
ubiIgmpProxyRoutingIfMRouteCountInterface OCTET STRING
,ubiIgmpProxyRoutingOutIfMRouteCount Counter
}
ubiIgmpProxyRoutingIfMRouteCountInterface OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION "Interface name for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingIfMRouteCountEntry 1 }
ubiIgmpProxyRoutingOutIfMRouteCount OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION "Multicast mroute count for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingIfMRouteCountEntry 2 }
ubiIgmpProxyRoutingOutIfMRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProxyRoutingOutIfMRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Multicast mroute table for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingMIBObjects 2 }
ubiIgmpProxyRoutingOutIfMRouteEntry OBJECT-TYPE
SYNTAX ProxyRoutingOutIfMRouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Multicast mroute entry for interface (IGMPRT)"
INDEX { IfIndex, ubiIgmpProxyRoutingOutIfMRouteGroup, ubiIgmpProxyRoutingOutIfMRouteSource }
::= { ubiIgmpProxyRoutingOutIfMRouteTable 1 }
ProxyRoutingOutIfMRouteEntry ::= SEQUENCE {
ubiIgmpProxyRoutingOutIfMRouteInterface OCTET STRING
,ubiIgmpProxyRoutingOutIfMRouteGroup IpAddress
,ubiIgmpProxyRoutingOutIfMRouteSource IpAddress
}
ubiIgmpProxyRoutingOutIfMRouteInterface OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION "Interface name of mroute entry for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingOutIfMRouteEntry 1 }
ubiIgmpProxyRoutingOutIfMRouteGroup OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION "Group IP address of mroute entry for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingOutIfMRouteEntry 2 }
ubiIgmpProxyRoutingOutIfMRouteSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS mandatory
DESCRIPTION "Source IP address of mroute entry for interface (IGMPRT)"
::= { ubiIgmpProxyRoutingOutIfMRouteEntry 3 }
-- *****************************************************************
-- ubiMulticastMIBConformance
-- *****************************************************************
--
-- conformance information
--
ubiMulticastMIBCompliances OBJECT IDENTIFIER ::= { ubiMulticastMIBConformance 1 }
ubiMulticastMIBGroups OBJECT IDENTIFIER ::= { ubiMulticastMIBConformance 2 }
-- compliance statements
ubiMulticastMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Ubiquoss Multicast MIB."
MODULE
MANDATORY-GROUPS { ubiIgmpSnoopConfigGroup,
ubiIgmpSnoopInfoGroup
}
GROUP ubiIgmpSnoopConfigGroup
DESCRIPTION
""
GROUP ubiIgmpSnoopInfoGroup
DESCRIPTION
""
::= { ubiMulticastMIBCompliances 1 }
-- units of conformance
ubiIgmpSnoopConfigGroup OBJECT-GROUP
OBJECTS {
ubiIgmpSnoopVlanIndex,
ubiIgmpSnoopVlanEnabled,
ubiIgmpSnoopVlanFastLeaveEnabled,
ubiIgmpSnoopVlanReportSuppressionEnabled,
ubiIgmpSnoopVlanForcedSourceIP,
ubiIgmpSnoopVlanRowStatus,
ubiIgmpSnoopMrouterVlanIndex,
ubiIgmpSnoopMrouterIfIndex,
ubiIgmpSnoopMrouterSVlanID,
ubiIgmpSnoopMrouterRowStatus,
ubiIgmpSnoopStaticGroupVlanIndex,
ubiIgmpSnoopStaticGroupIfIndex,
ubiIgmpSnoopStaticGroupIpAddress,
ubiIgmpSnoopStaticGroupRowStatus,
ubiIgmpSnoopPortConfigAclIfIndex,
ubiIgmpSnoopPortConfigAclID,
ubiIgmpSnoopPortConfigAclVlanID,
ubiIgmpSnoopPortConfigAclRowStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to
configure the mp snooping."
::= { ubiMulticastMIBGroups 1 }
ubiIgmpSnoopInfoGroup OBJECT-GROUP
OBJECTS {
ubiIgmpSnoopReporterIfIndex,
ubiIgmpSnoopReporterGroupAddress,
ubiIgmpSnoopReporterUptime,
ubiIgmpSnoopReporterExpireTime,
ubiIgmpSnoopReporterLastAddress
}
STATUS current
DESCRIPTION
"The collection of objects which are used to manager the
information related to igmp snooping."
::= { ubiMulticastMIBGroups 2 }
END
|