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
3
votes
4 answers

Unicast to multicast via iptables

Note: While there is an accepted answer now, it is only part; check the final iptables rule below. I'm receiving a unicast RTP stream on one interface and wish to send it out via multicast on a second interface. The system in question is an embedded…
Arthur Shipkowski
  • 133
  • 1
  • 1
  • 6
3
votes
2 answers

IGMP/Multicast routing in Linux

I need to route IGMP/Multicast traffic across two networks. I have a Linux box with two NICs, one public, one private. Need devices on the private network to flow to public. I'm pretty certain I have iptables set up right, been trying to do this…
user18330
  • 174
  • 1
  • 6
3
votes
11 answers

Most resilient form of (private) DNS clustering?

I'm working on a setup with two datacenters linked by a MAN (bridged) and everything is doubled between them, in fail-over mode with RedHat Cluster, DRBD and that kinf of things. I have one DNS server for each location, but it turns out that having…
niXar
  • 2,023
  • 17
  • 23
3
votes
1 answer

Clustering on cloud/VPS providers

I'm wondering if anyone can give some clustering recommendations to me. I'm currently on Linode, which I'm impressed and happy with, but they (along with just about every other VPS provider I know of) don't allow broadcast/multicast addressing, only…
andrew
  • 299
  • 4
  • 11
2
votes
1 answer

How can I make my libvirt/KVM guest see all IPv4/UDP multicast traffic?

I have an issue with IPv4/UDP multicast traffic not being fully visible from within a KVM guest. The guest has a dedicated NIC which is attached using MacVTap. Both the host OS and the OS in the guest are Ubuntu 18.04. This is the VM’s network…
aaronk6
  • 284
  • 1
  • 11
2
votes
0 answers

Redhat No IGMP response

I'm setting up my server to ingest a multicast. The server will initiate the request and can join the multicast for about 2:30-3:30 min. After that, it gets dropped from the multicast group due to no IGMP response. The server is running Redhat…
Jamie
  • 21
  • 1
2
votes
1 answer

Arista switch - Forward multicast traffic from vlan to vlan on different switch ports with different subsets

I have an Arista DCS-7150S-24-R I got a cross connect from provider X into port #1 (port marked as vlan 100) I got a linux host connected to to the switch at port #2 (port marked as vlan 200) Ports are on different subnets. Port #1 receives…
Y.S
  • 61
  • 1
  • 7
2
votes
2 answers

OS X network stack ignores IGMP membership queries

We have a remote site where the Macs are not responding to IGMP membership queries, but the Windows boxes do respond. Consequently, after about 10 minutes, the IGMP-aware network switch cuts off the multicast stream to the Macs. Here is a screen…
Warren Young
  • 472
  • 1
  • 5
  • 19
2
votes
2 answers

Can FOG and/ or WDS do multicast over an ordinary unmanaged Gigabit Switch? or does it need hardware with specific multicast features?

Can FOG and/ or WDS do multicast over an ordinary unmanaged Gigabit Switch? or does it need hardware with specific multicast features? Trying to help a small non profit in Asia with a poor budget. Currently Scenario: 2 x Windows 2008 DCs (one…
2
votes
1 answer

UDP multicast send/receive: Routing or socat issues?

I'm using 'socat' on Linux Centos 7 to diagnose some problems. Server and clients are all linux centos7, they all have multiple interfaces. Server 10.1.1.1 is on Switch 1, 10.1.1.2 is on Switch 2. Switch 1 and Switch 2 are Layer3 switches,…
surfcode
  • 245
  • 2
  • 5
  • 15
2
votes
1 answer

Hyper-V Windows hosts see/count multicast traffic that they shouldn't

I have some of my Hyper-V VM's on a network segment that pushes a lot of UDP multicast traffic (several 100MBit/s). Now, all Hyper-V Windows hosts actually see and count the traffic on the Ethernet ports without joining the multicast group. I can…
TJF
  • 391
  • 6
  • 15
2
votes
3 answers

Peer to peer communication in complicated multi-subnets LAN

We are developing a P2P application and stucked at the part of making communication between 2 peers which are in same local LAN but 2 different subnets. We know that there are a lot of cases that 2 certain PCs in same LAN are definitely…
2
votes
0 answers

Is global IP one-to-many communication practical today?

One-to-many communication over the internet is an enabling technology for many fascinating business and research projects. In principle, IPv4 and IPv6 allow for such communication by the specification of IP multicast, see e.g. this post from 2012.…
Max Flow
  • 121
  • 2
2
votes
1 answer

Multicast works only in promiscuous mode

I'm trying to receive MPEG-TS over UDP multicast transport in Arch Linux. So when I run ffprobe -i udp://@224.1.1.240:6000 it hangs forever with no result. Then I run tcpdump and it shows no multicast traffic from the address. But if there is…
TrueBers
  • 21
  • 3
2
votes
1 answer

VPN for Video stream

I work at a digital TV broadcast company (cable), we have 2 head ends, one in the US and one in the Caribbean, we currently connect both sites with a cisco L2TPv3 pseudowire VPN between both sites, however, because we're running video streams over…
rantsh
  • 145
  • 10