4

I'm hesitant to ask this question as I may not be able to perform the diagnostic steps to find out what is up, but:

I need to re-image a lab in a school, possibly during school hours. I am using a multicast stream as it hardly makes sense for the server to share out one file 30 times. I adjust the speed way down so there would be headroom and the rest of the network should be reasonably unaffected.

What I found is that doing so appears to cut us off of the WAN. Other sites are inaccessible, as is the internet. The school can not be seen from elsewhere while the multicast restore is running. (The multicasting itself works fine).

I spoke to my coworker who is in charge of the networking when this happened at a different site, and he wasn't able to find out anything regarding what we were doing that would cause problems.

Details: I am doing an ASR multicast restore using DeployStudio on a Mac OS X Server. Most of our switches are Cisco gear. We do have a number of Wireless Access Points (and they seem to pass the multicast stream on wireless; not optimal, but not necessarily a problem.) I put the stream at a rate of 2 Mb/s (I think that is megabits, not bytes); systems restore fine at 8 and sometimes even 12 Mb/s (so I know there is head room).

It is my preference to do multicast streaming on a network physically separate from one in production use, or to do it over the summer when few staff members are around, but I don't have that luxury here.

What might account for this problem?

Clinton Blackmore
  • 3,510
  • 6
  • 35
  • 61

4 Answers4

4

The problem is probably that your switch doesn't handle correctly multicast groups and then send multicast as broadcast (and so flood your wan link, or at least the wan router) with useless data).
So you must have at least one switch acting as an IGMP Querier, this can be enabled on Cisco 2960 and 3750 with the command ip igmp snooping querier. If your network only has 2950 you will definitively have problem.
You can easily see if your switch are broadcasting the multicast by running wireshark on a PC while you reinstall image on others computers. (you should not see the multicast data if all is working fine)

Please also tell us what multicast IP is used, some are reserved and should not be used, some can be routed and some are not routable (see http://iana.org/assignments/multicast-addresses/multicast-addresses.xml)

radius
  • 9,545
  • 23
  • 45
  • I've seen similar things happen when using a Ghostcast server as well, it was flooding everything and making the LAN unusable. – DanBig Sep 08 '09 at 18:58
  • Our backbone switch is a Catalyst 2960G, with 2950s connected to it. The switch that borders our LAN and the WAN is a 3550, and it is owned by the operators of our WAN. IIRC, the WAN speed is 6 Mb/s. The multicast address is 224.77.2.77, using port 7800 for the first stream. I know I've seen a large increase in wireless traffic when I've done this before, indicating you are right -- traffic is being broadcast, not multicast. – Clinton Blackmore Sep 08 '09 at 20:51
  • Not to be terribly pedantic, but the traffic you're seeing *is* still being multicast, not broadcast. It's just that your switch is by default flooding the multicast frames to every port. – Bob McCormick Sep 08 '09 at 22:22
  • So activating igmp querier on your 2960G should solve the problem on the whole network. – radius Sep 08 '09 at 22:25
1

Flooding the router that handles your gateway access, perhaps?

Is there a way for you to get SNMP info from the router or get logging information from it, CPU status, etc.?

Bart Silverstrim
  • 31,092
  • 9
  • 65
  • 87
  • I know we can get some data out of it over the web interface it provides (assuming of course that I can access it once I start the multicast stream). We (unfortunately) do not have SNMP data being collected. – Clinton Blackmore Sep 08 '09 at 20:57
1

How big is the WAN connection? Depending on the multicast address being used it could be that the multicast traffic is saturating the WAN interface, for instance multicast address 224.0.0.1 means "all hosts on this subnet", which means the WAN interface has to listen for and then discard the multicast traffic.

If the WAN interface has to listen for and then discard the multicast traffic, and the multicast traffic is flowing at a rate of 8 to 12 Mbps, and the WAN link is smaller than 8 to 12 mbps then I could see this causing the problem.

joeqwerty
  • 108,377
  • 6
  • 80
  • 171
  • IIRC, our WAN is 6 Mb/s. I would sure hope multicast data would not be going over the WAN link, but (especially if it is being broadcast, as seems to be the case), it might be causing the WAN interface some problems. – Clinton Blackmore Sep 08 '09 at 20:58
  • If there really is 8 to 12 Mbps of multicast traffic flowing, and if the WAN link has to listen to and then discard the traffic, I could see that causing the problem. Can you run a packet capture somewhere while the multicast is running to see what multicast address the traffic is being sent to? – joeqwerty Sep 08 '09 at 23:22
  • It was being sent to 224.77.2.77. – Clinton Blackmore Sep 09 '09 at 03:37
  • It's unlikely to be going across your WAN link, unless your WAN is bridged (rather than routed). – Bob McCormick Sep 09 '09 at 20:20
  • I don't think it's traversing the WAN link, but I do suspect that it's flooding the switch port that the WAN link is connected to. – joeqwerty Sep 09 '09 at 20:42
1

My guess would be that it's not a WAN problem per-se, but that the LAN side interface of your router is getting swamped by multicast frames flooded by your switch.

As has been mentioned in another comment, you'll need to enable IGMP snooping to enable your switch to properly constrain multicast frames. You'll also probably need to enable the IGMP snooping querier, unless you've got a multicast (PIM) router on each of your VLAN's. On a Cisco switch, you can enable IGMP snooping and the snooping querier by entering the following two commands in global config mode:

ip igmp snooping
ip igmp snooping querier

You should ensure igmp snooping is enabled on every switch in your network. The snooping querier only needs to be enabled on one switch, assuming that switch has an IP in each of your VLAN's. My understanding is it won't hurt though to enable the snooping querier on every switch. Note that for the snooping querier to work, your switch will need an IP in each of your VLAN's, or at least each VLAN that has multicast traffic you're concerned about constraining.

In case you're curious about why you need IGMP snooping:

As you probably know, normally a switch delivers traffic by consulting it's CAM table. The CAM table is populated by inspecting the source MAC address of every frame received by the switch. Every source MAC address the switch sees is added to the CAM table, along with the switch port that the frame in question entered the switch on. In this way the switch "learns" what MAC addresses are connected to each port.

The switch uses the CAM table to determine where to deliver incoming frames. If the destination MAC address is found in the CAM table, then the switch knows which port to deliver the frame to, and the frame is delivered to only that port. If the destination MAC address is NOT found in the CAM table, the frame is flooded out to every port on the switch.

With multicast traffic, the the source MAC address of the frame will be the MAC address of the multicast sender, but destination MAC address of the frame will be the MAC address of a multicast group, not the MAC address of any specific individual PC. This multicast MAC address should never normally be the source address of any frame, so in normal operation the switch will never know where to send multicast frames. It will have no choice but to flood the frames out of every port. When this happens with a really large multicast stream, these flooded frames can sometimes overwhelm other systems on the network.

IGMP is actually a layer 3 protocol designed to allow IP hosts to inform IP routers that they would like to join a multicast group. Technically IGMP has nothing to do switches and layer 2 operation, but a number of switch vendors, including Cisco, have added features to their switches that allow the switch to listen in (or snoop) on the IGMP traffic between IP hosts and multicast enabled IP routers.

Unfortunately IGMP snooping only works if there is a multicast router on the subnet(s) in question. If there's no multicast enabled router, then there's no IGMP conversation to "snoop" on. That's where the IGMP snooping querier comes in. It send out the IGMP membership queries that would normally be sent by a PIM multicast router, thereby initiating the exchange for the switch to "snoop".

It would be nice if IGMP snooping was enabled by default on most switches, but I suppose the reason it isn't is because, while IGMP is an IETF standard, there's no actual standard for IGMP snooping.

Bob McCormick
  • 333
  • 2
  • 6