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
2 answers

Unable to ping multicast IP

Let me prefix this by saying I'm not entirely clear on how multicast works. I have the gist of it, but not the underlying functionality. A customer has configured a RHEL6 cluster between two Jboss nodes. Multicast is configured and I can ping…
theillien
  • 425
  • 3
  • 10
  • 26
2
votes
0 answers

network leave/unscribe multicast group

I have debian based server where I need to subscribe a multicast. After doing it with headless mpalyer I can see the following: root@ca1:~# netstat -g IPv6/IPv4 Group Memberships Interface RefCnt Group --------------- ------…
ykhrustalev
  • 121
  • 3
2
votes
1 answer

altnet parameter into pimd.conf file

I need to route a multicast streams in my private network. I'm using pimd for multicast routing. The multicast routing did not work until I put altnet masklen 24 to the pimd.conf file. The problem that I do not always know what…
Dima
  • 485
  • 3
  • 7
  • 15
2
votes
1 answer

How to setup a static multicast ARP entry with Cisco SG300?

We're running a Microsoft NLB cluster in multicast mode as a loadbalancer. Using our old Cisco IOS switches we propagate access to the cluster to our branches using a static ARP entry in the core router: arp 10.20.1.226 03bf.0a14.01e2 ARPA But how…
2
votes
2 answers

multicast tcpdump and subscriptions

From the multicast howto: IP_ADD_MEMBERSHIP. Recall that you need to tell the kernel which multicast groups you are interested in. If no process is interested in a group, packets destined to it that arrive to the host are discarded. If…
Karoly Horvath
  • 334
  • 1
  • 4
  • 14
2
votes
2 answers

virtualization with multicast receive

I need a virtualization solution with the following properties: guest OSes can receive multicast traffic from the host machine. some services running on the guest OS (eg: port 80) can be port forwarded, so it's visible on the host and other…
Karoly Horvath
  • 334
  • 1
  • 4
  • 14
2
votes
1 answer

openSUSE 11.3 multicast IGMP v2 works on one vlan, but not the other vlan

I have a server running openSUSE 11.3, with vlan5 and vlan40 configured on eth7. I want to join two multicast IGMP v2 groups, one on vlan5 and one on vlan40. When I send out the IGMP v2 Membership Report on vlan40, the multicast datagrams arrive and…
James Brock
  • 131
  • 5
2
votes
3 answers

Basic multicast network performance problems

I've been using mpong from 29west's mtools package to get some basic idea of multicast latency across various Cisco switches: 1Gb 2960G, 10Gb 4900M and 10Gb Nexus N5548P. The 1Gb is just for comparison. I have the following results for ~400 runs of…
2
votes
1 answer

Multicast over 802.11b wireless

How do wireless routers behave with regards to multicast traffic? Given that nature of the shared physical medium routing to specific ports is not possible. Therefore, are mutlticast packets essentially broadcast or are they redundantly transmitted…
S73417H
  • 123
  • 3
2
votes
1 answer

Windows Deployment workflow

I've been digging around and getting WDS, WAIK, and the Deployment Workbench all configured and installed on a server we'll be using to roll images out to classrooms. I want to make sure I understand the process right, and am hoping the SF community…
Ixobelle
  • 137
  • 8
2
votes
3 answers

Why are my listener-less multicast packets affecting Wifi performance?

I've got a program that sends out a IPv6 multicast packet (to ff12::2:0:8afb:382b:c053:85f%en1) every 50ms. I've got it running on a very simple single-computer LAN (Mac mini <-wifi-> Linksys wifi router <-cat5-> DSL modem <-> Internet). In my…
Jeremy Friesner
  • 1,311
  • 1
  • 14
  • 25
2
votes
1 answer

Multicast accross the subnets

My application sends some UDP packets on a multicast address. In our office we have 3 subnets connected via routers. Sitting in my subnet I'm able to ping the IP of the other subnet. Will multicast packets cross my subnet and reach the machines of…
Muhammad Hasan Khan
  • 376
  • 2
  • 7
  • 18
2
votes
1 answer

Confusion about HSRP Groups

If I have a router that has several LANs on it, and each of these LAN is attached to a second router, do I need to use different HSRP groups for each LAN? With this set up, each virtual gateway will be on a Layer 2 segment. And within a router, no…
Kyle Brandt
  • 82,107
  • 71
  • 302
  • 444
2
votes
2 answers

Can a TCP/IP be efficiently multicast among clients without UDP

I have a high bandwidth application in which a server is to be producing data a rate of ~300Mb/s on a gigabit network. Is there a way other than UDP to multicast to 1 to 10 clients through a reliable transport mechanism? This application is very…
JeffV
  • 123
  • 5
2
votes
1 answer

How to make reverse mDNS through IPv6 on OSX?

I am looking for a way to make reverse mDNS query on OSX over IPv6 only. I am not interested by solution using IPv4. The following works on Linux with dig 9.16.1: dig +short @ff02::fb -p 5353 -x 2001:db8::1 I've installed dig 9.16.7 with homebrew…
djoproject
  • 147
  • 2
  • 7