Questions tagged [multicast]

In computer networking, multicast is the delivery of a message or information to a group of destination computers simultaneously in a single transmission from the source. Copies are automatically created in other network elements, such as routers, but only when the topology of the network requires it.

IP multicast is a technique for one-to-many communication over an IP infrastructure in a network. It scales to a larger receiver population by not requiring prior knowledge of who or how many receivers there are. Multicast uses network infrastructure efficiently by requiring the source to send a packet only once, even if it needs to be delivered to a large number of receivers. The nodes in the network take care of replicating the packet to reach multiple receivers only when necessary.

The most common transport layer protocol to use multicast addressing is User Datagram Protocol (UDP). By its nature, UDP is not reliable—messages may be lost or delivered out of order. Reliable multicast protocols such as Pragmatic General Multicast (PGM) have been developed to add loss detection and retransmission on top of IP multicast.

IP multicast is widely deployed in enterprises, commercial stock exchanges, and multimedia content delivery networks. A common enterprise use of IP multicast is for IPTV applications such as distance learning and televised company meetings.

Source: wikipedia

Related tags

Related sites

285 questions
2
votes
0 answers

Multicast not working on hp 5820 switch

I have a problem with getting multicast working on hp a5820 switch. I have 4 vlans vlan 1,20,30,40 with layerv3 vlans, I enabled multicast routing and pim dm and igmp on each vlan. On the vlan 1 I can watch multicast streams on where the source is…
2
votes
0 answers

IGMP Snooping limitations and when do you start to use PIM?

At a head end I've just inherited, all our multicast streams run on cisco switches with IGMP snooping enabled. Because all these streams are to be kept local and isolated we've never really looked into implementing routing protocols. However, I want…
rantsh
  • 145
  • 10
2
votes
3 answers

How to block all multicast traffic travelling through a Cisco Catalyst 3750

Something changed today. I can't seem to track down what, but one of our 3750s decided that it was going to forward all the multicast traffic it saw from the ghost server across every VLAN it has. I've tried writing a simple access group that…
TrueDuality
  • 1,844
  • 5
  • 27
  • 37
2
votes
0 answers

How to use Server 2012 WDS advanced multicast features?

First, can I be clear that I already know how to multicast, and using that without a problem. What I would like to know is... how to use the "Improved Multicast Features" that are new for Server 2012 using…
MrBeatnik
  • 83
  • 1
  • 8
2
votes
1 answer

Keepalived: multicast vs unicast

I'm planning to deploy a several keepalived routers to maintain floating IPs for different database clusters. The plan is to deploy a separate VRRP instance on each cluster locally according to this guide so there will be only two VRRP…
HTF
  • 3,050
  • 14
  • 49
  • 78
2
votes
2 answers

tcpreplay throughput on eth0 well below (iperf confirmed) max

I'm trying to replay captured UDP multicast packets at a rate of a couple of hundreds of Mbps, but it maxes out at about 86 Mbps. (For some strange reason, at other times during the day it consistently maxes out at one tenth of that rate, about 8.8…
Evgeniy Berezovsky
  • 851
  • 1
  • 8
  • 26
2
votes
1 answer

Ubuntu 14.04 Ipv6 multicast

I having troubles to setup an IPv6 multicast server with Ubuntu 14.04, the server fails with Invalid argument when try to bind to IPv6 multicast address, checked with mcfirst tool and got the same error. mcfirst -6 ff01::1:1 10000 bind [multicast]:…
José
  • 135
  • 6
2
votes
2 answers

What is the equivalent of 127.255.255.255 for OS/X machines so I can test broadcast udp packets without a network?

I am trying to test my program that makes use of broadcast UDP (not multicast!). In Linux, I can use the 127.255.255.255:64651 address and everything works beautifully, in other words, I send a packet to 127.255.255.255:64651 and multiple clients…
JohnPristine
  • 161
  • 1
  • 5
2
votes
1 answer

Setting up NLB in a VLAN

I have a network layout like this (ESXi hosts): Internal Network + +-----------------+ | | Host1 | …
Nathan C
  • 14,901
  • 4
  • 42
  • 62
2
votes
1 answer

Video-on-demand/surveillance server setup

I'm planning to set up a service that would allow people to connect their ip-cameras to and watch video embedded into a website. Scheduled saving and replaying would also be available. What hardware and software would you recommend for that? I'm…
Alex
  • 2,287
  • 5
  • 32
  • 41
2
votes
1 answer

Enable multicast on dummy interface on startup

I have a dummy interface on a Centos 6.3 machine which I would like to use for multicast traffic. The problem is it does not come up with the MULTICAST option by default; I need to manually add it with ifconfig dummy0 multicast. Is it possible to…
nickelaway
  • 21
  • 2
2
votes
3 answers

Why would IGMP and MLD be required to forward unregistered packets to all ports?

First, a little background: My understanding is that the purpose of IGMP (and its IPv6 cousin, MLD) is to avoid wasted bandwidth by ensuring that multicast packets only get transmitted to destinations that are actually interested in those packets. …
Jeremy Friesner
  • 1,311
  • 1
  • 14
  • 25
2
votes
1 answer

Does the IGMP querier have to be connected to the multicast source?

I've been reading Allied Telesis' guide on configuring IGMP, which has been quite enlightening so far. However, I'm still wondering whether the IGMP querier has to be connected directly to the multicast source, as it is shown in the example…
eWolf
  • 123
  • 3
2
votes
1 answer

How does iptables determine which packets are multicast?

Are packets assumed to be multicast solely based on their ip address? I've been looking at the RFC 1112 and a quick scan doesn't appear to indicate any other flags on the ip packet.
Colin Newell
  • 254
  • 2
  • 6
2
votes
1 answer

Manual Multicast forwarding with Linux router

I have a Linux router (Ubuntu). It is working well with unicast but with multicast routing/forwarding I have some trouble. The problem is that my hosts do not send igmp/mld messages thus the router does not learn that there are interested parties on…
tobias
  • 121
  • 1
  • 3