Unsolved
This post is more than 5 years old
6 Posts
0
20479
December 7th, 2004 17:00
Powerconnect 6024F and multicasting
Ok here is the issue i am having. Currently i have 2 6024F that act as a core switch with a 7gig fiber link between them. On one side I have my novell server, my fiber link to the other building, and all my XP workstations. On the other side i have my MAC's, X-Server, and my ISP link. I use Ghost to image all my XP workstation and i know these switches support multicasting. However, the switches at my other buildings do not support multicasting. Currently if i multicast, it is broadcasted through my fiber line to the other buildings and those switches crash. Is there i way to block the multicast from being broadcasted to the port that my fiber uplink is connected to.
0 events found
No Events found!


GregG1
2 Intern
•
812 Posts
0
December 8th, 2004 11:00
To allow dynamic multicast registration, you would need to enable IGMP Querying on one of the 6024s and enable IGMP Snooping and Bridge Multicast Filtering on both switches.
To enable IGMP Querying for VLAN 1, you would use the following commands:
console# config
console(config)# interface vlan 1
console(config-if)# ip igmp
console(config)# ip igmp snooping
console(config)# interface vlan 1
console(config-if)# ip igmp snooping
schwartzmeier
6 Posts
0
December 8th, 2004 11:00
schwartzmeier
6 Posts
0
December 8th, 2004 15:00
This is my current config file.
conf
hostname A220-6024F-01
int vlan 1
ip address 10.0.10.1 255.255.0.0
ip igmp
ip igmp snoop
exit
ip igmp snoop
bridge multi filter
username admin password xxxxxxxx level 15
ip http auth local
aaa auth login default local
enable password xxxxxxxx
ip route 0.0.0.0 0.0.0.0 10.0.0.6
interface range ethernet g(1-7)
channel-group 1 mode on
exit
Message Edited by schwartzmeier on 12-08-2004 11:19 AM
Message Edited by schwartzmeier on 12-08-2004 11:23 AM
aksearle
8 Posts
0
December 9th, 2004 15:00
Jim
I have an on going problem with a couple of Powerconnect 5212's that have IGMP snooping and IGMP Querier running on them. If they receive multicast data addressed to a group for which they have no hosts connected that have actually joined tha group, they revert bact to broadcasting it on all ports. I would expect this with a stardard L2 switch but not one with IGMP snooping and IGMP Querier running.
So far Dell have been unable to provide a reason why this is happening except to say I need a L3 router in my network......but again, not why I need one!!
regards
Andy
schwartzmeier
6 Posts
0
December 9th, 2004 17:00
GregM_1
2 Intern
•
112 Posts
0
December 9th, 2004 20:00
Aksearle,
The 5212s are working as they should. The IGMP querier feature is only used if you have no router. This in turn helps IGMP snooping do its job. If an unknown multicast group enters the switch, and their is no mapping for it, or no one is subscribed, it floods. This is normal layer 2 behavior.
By having the IGMP querier feature enabled, you can trigger a response for join/leave requests, which in turn the IGMP snooping feature can 'hear' and map to the appropriate port.
The only way to keep unknown multicast groups from flooding is to stop them at a layer 3 interface, which the 5212 does not support. I believe your are confusing the ability of the 5212 to use a layer 3 feature such as IGMP querier as the ability to be a total layer 3 switch.
GregM_1
2 Intern
•
112 Posts
0
December 9th, 2004 21:00
Schwartzmeir,
Your issue sounds similar to the one above. You are having multicast traffic cross your fiber. This would be expected because it seems you have both 6024s in the same VLAN 1. There is no layer-3 interface defined. Therefore, unknown multicast groups will still flood. In addition, if any node across the fiber 'hears' the IGMP querier it may decide to 'join' and then the multicast stream will be propagated across the link.
What you can do is put the uplink into a different subnet. The make sure you enable DVMRP. This will stop all multicast traffic at the layer-3 interface and will only route a multicast stream if it 'hears' a 'join' request from the other subnet.
schwartzmeier
6 Posts
0
December 10th, 2004 10:00
GregG1
2 Intern
•
812 Posts
0
January 4th, 2005 15:00