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
1
vote
0 answers

Wrong Multicast MAC address with more than one network interface

I am trying to subscribe to a multicast group from a Red Hat machine with four network interfaces, each one is on a different subnet. It only works if I bind the multicast socket on the network interface on which the gateway matches with the…
Yorchus
  • 11
  • 4
1
vote
2 answers

Office 365 Skype/Lync: Support for stream multicast or mirroring?

Does Skype for Business / Lync when used via the hosted Office 365 service have the ability to do any stream multicasting or mirroring for group meetings? Background: I’m in a branch office with a few dozen users. I’ve not done a full analysis, but…
1
vote
1 answer

One of two machines on same network doesn't receive multicast group memberships

in remote network, we have two machines. one of them receives multicast subscriptions, another one doesn't machine one receives only igmp query: sudo tcpdump -nevv -i eth1 -s 1515 igmp tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture…
Pavel K.
  • 267
  • 2
  • 8
1
vote
0 answers

Is there a way to tell a machine accesible via a gre tunnel to join multicast groups via pimd or smcroute?

this has been stumping me for some time and would love any help on this. So I am subscribed to a data vendor through an intermediary firm. The intermediary firm has physical connections to the data vendor, and has given me a tunnel that they say…
FinDev
  • 123
  • 4
1
vote
0 answers

Joining a UDP multicast through a server on the other side of the tunnel

I've drawn a diagram below to help with this question! So a company published a multicast UDP feed (company A) and another company connects to it (Company B). I have a point-to-point tunnel to Company B. How can I get our machine to join the…
FinDev
  • 123
  • 4
1
vote
0 answers

how to find the number of members in a Windows IP multicast

I am able to find multicast groups by using this in Command Prompt (I found this at serverfault How do I know if IP Multicasting is enabled on my network in Windows?). netsh interface ip show joins Here is the result: Scope References Last …
1
vote
0 answers

IP Multicast between Windows and Linux

Our team is developing linux/windows applications for our network that are talking to each other via multicast. We had it working when we only had linux boxes on the network, but we recently added a few windows machines into the loop, and are unable…
dberm22
  • 111
  • 4
1
vote
1 answer

When a host joins a multicast group, does it needs to change its ip address to the multicast group's ip address?

I'm talking about IPv4. If not, does the host use 2 IP addresses, one for multicast communication and one for "regular" communication?
PrashanD
  • 113
  • 4
1
vote
0 answers

individual windows machine refuses to join multicast group on any network interface

I have written a piece of software which joins a multicast group and processes packets. This seems to work on a number of machines I've tested with, both with Windows (tested on XP through to 8.1) and linux. Except for one machine: a laptop with…
rod
  • 111
  • 1
  • 3
1
vote
1 answer

In Infiniband networks, what is an MGID and how does it relate to multicast group?

I have this error in my Open Subnet manager log. Sep 22 01:49:53 router3-1 docker[12431]: Sep 22 01:49:53 089580 [68860700] 0x01 -> mcmr_rcv_join_mgrp: ERR 1B11: Port 0x10c37b1f7ebb0001 (MT25408 ConnectX Mellanox Technologies) failed to join…
hookenz
  • 14,132
  • 22
  • 86
  • 142
1
vote
0 answers

Centos. infiniband multicast join failed for status -22

I have a cluster with Linux Centos 6.5 as OS. All the machines are connected by infiniband, the network is working fine but in the /var/log/messages of all the machines I can see the following message ib0: multicast join failed for…
jmlero
  • 11
  • 2
1
vote
0 answers

Multicast destination NAT on same network interface, with netem

For testing purpose, in a big network where IT will shoot me if multicast data are not streamed in the right VLAN, I am trying to degrade multicast packets with a server running netem configuration. In the examples below, 237.1.2.3:5000 stands for…
user1556814
  • 111
  • 2
1
vote
1 answer

Receiving multicast traffic on host-only interface

I have a VirtualBox host (linux) with a Windows 8.1 guest. The virtual network configuration for that guest: After disabling auto metric on the host-only Adapter2 (in the guest OS) and fixing it to either 1 or 800 (i.e. it doesn't matter if it is…
Evgeniy Berezovsky
  • 851
  • 1
  • 8
  • 26
1
vote
1 answer

How to duplicate multicast packets on several interfaces?

I would like to send a stream from a Linux server to several Linux clients via a multicast address. The clients are directly connected to the server but on different interfaces: bnep0 and bnep1. Besides, as far as I understand, my multicast packets…
1
vote
0 answers

how multicast stream passes when receiving locally

If suppose I have TX application which transmits UDP multicast to 239.0.0.1:1234. And I have RX application which joins multicast (239.0.0.1:1234), and receives this multicast (239.0.0.1:1234). I have this RX application running in different…
nullptr
  • 151
  • 7