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

290 questions
0
votes
2 answers

UPD Multicast (Class D) = How can this be routed over the internet?

is there a simple way (without setting up a local network via VPN) to route UPD Multicast Packets (224.0.0.0 to 239.255.255.255) from one server to another server (both residing in completely different networks as they are hosted with different…
jens
0
votes
0 answers

Streaming records corrupted

I have two Debian servers. On server A, I am producing a video multicast stream, and on server B, I record this stream. The problem is that when I watch the records I see freezing/pixelization, but If I capture the stream directly from server A…
0
votes
1 answer

Casting videos from one PC to multiple displays over an Ethernet Network

have a set of 6 television displays spread over 3 floors and a central personal computer at one of these floors. There exists an Ethernet cat6 cable network in the building with ports at the location of the displays and the PC. All these ports are…
0
votes
1 answer

Use container hostname resolution with network=host

I have two docker container. One is the "backend", the other "connector".. The connector needs to have its network type set to "host" (To receive udp multicast: ssdp/mdns packets). But it also needs to be able to use docker dns system so i can…
Marc
  • 127
  • 1
  • 7
0
votes
1 answer

What are the downsides of using IPv6 Multicast for majority of all communication including one-to-one?

Given IPv6 Multicast allows for a sub-pub communication model, it seems like a no-brainer for the vast majority of communication, but its very rarely used beyond video streaming, and I'd like to know if this is because its only efficient for large…
0
votes
0 answers

Scapy packets are not being recognized

I am manually sending MDNS response packets from the server using SCAPY to the mobile (Both in same network) when it looks for a chrome cast (The cast device is in another network). The packet is been sent to the 224.0.0.251 by the server, I have…
Avis
  • 1
0
votes
1 answer

Dynamic multicast in AWS not working using IGMPv2

I have a java application running on tomcat on multiple ec2 instances, and I want to deploy it in cluster mode which is working when I configure in each tomcat server a StaticMembershipInterceptor for the other instances. But this is not a viable…
0
votes
0 answers

Multicast resolution overrides hosts file on Windows 10

I have a Windows application that publishes itself with a DNS multicast record. Let's say myapp.local. When it is installed, it stores a record in hosts file under systemroot/drivers/etc folder. 127.0.0.1 myapp This configuration has worked for…
Tobia
  • 1,272
  • 9
  • 41
  • 81
0
votes
2 answers

Multicast packets never received by socat

I have three machines running Manjaro, two work just fine, but the third (a Raspberry Pi) seems to not pass multicast packets to the registering application. This is similar to this question. On the problem machine, I ran: socat…
Nate
  • 319
  • 2
  • 3
  • 8
0
votes
0 answers

CARP getting confused with 2 interconnected switches and bonding

I'm having a pretty straight forward 10G switch setup: +-----+----+ +-----+----+ | |port2 ISL port2| | | switch A +--------------------------+ switch B | | | | …
xsign
  • 1
  • 1
0
votes
0 answers

I want to test IGMP capability of a OpenWRT based router. How caan i test?

This is what I want to test out, SEE IMAGE: Router connected to users and is accessible over the internet as well PC1 and PC2 should be able to join some group(s). Should be able to leave group as well. When joined they should receive the multicast…
0
votes
1 answer

802.1q multicast blocked by Cisco router

We are using Cisco Catalyst 1000 switch (C100-16P-2G-L to be precise) and having a trouble of passing tagged multicast from one its port to another. We would like to pass it as it is (tagged), I assume it should be possible but how to configure (we…
pmod
  • 155
  • 9
0
votes
1 answer

Does Windows automatically leave unused multicast groups?

When troubleshooting multicast, I found no reference on the meaning of the fields returned by this command: C:\Users\Administrator>netsh int ip show joins level=verbose Interface 5: Ethernet0 Multicast Address : 224.0.0.1 Scope …
kuma
  • 158
  • 9
0
votes
0 answers

up directive not working when dhcp is selected in /etc/network/interfaces.d/eth0

I have to add the multicast route, that is needed when no default gateway is configured. Mono needs this in order to join multicast groups. The configuring is done in /etc/network/interfaces.d/eth0 Now the peculiar thing is: If eth0 is configured…
0
votes
1 answer

IGMP v3 JOIN sent but no traffic from switch

I'm trying to join an IGMP multicast stream from a Centos 8 machine but after sending a JOIN, there is no traffic coming from the switch. Simple connection: MUX <-----------> cisco3850 <--------> Centos8 192.168.117.13 …
Danny
  • 235
  • 3
  • 10