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
1 answer

Ubuntu transmits TTL 0 multicast packets

IP packets with TTL 0 shall not leave host. But when I start application which multicasts UDP packets with TTL 0, I see packets with TTL 0 leaving host for few seconds, and coming to normal behavior of TTL 0. This most likely happens after reboot…
nullptr
  • 151
  • 7
2
votes
1 answer

Why don't GCP, AWS or Azure support IGMP multicast/broadcast?

It's well known that GCP/AWS/Azure do not support IGMP multicast or broadcast. Some state it's because of security concerns, but don't mention what those concerns are. Is there a reason why these cloud providers do not support such long-standing,…
1
vote
2 answers

MDNS response “storm” with “localhost_prl: 127.0.0.1”

We are experiencing occasional performance problems in our WIFI. With Wireshark I see a high number (currently 50/s) of MDNS responses for localhost_prl:127.0.0.1. I don't think that this is normal. A MDNS response with 127.0.0.1 seem pointless to…
GxB
  • 401
  • 1
  • 3
  • 8
1
vote
1 answer

"Cannot set device ring parameters: Operation not supported"

I'm trying to change the RX and TX for an HP BL460C server by using ethtool and get the following: ethtool -G eth0 rx 4078 tx 4078 Cannot set device ring parameters: Operation not supported My driver information is as follows: driver: be2net …
rahrahruby
  • 577
  • 5
  • 12
  • 20
1
vote
2 answers

Multicast for Tomcat servers on Google Cloud

Google Cloud VPC networks only support IPv4 unicast traffic [1], they do not support broadcast, multicast or IPv6 traffic within the network. I have several tomcat servers and I'd like to group them into a cluster, but without multicast it seems I…
1
vote
0 answers

Change network interface for multicast subscription

My laptop has 2 network interfaces: ethernet (eno1, 600 Metric) and wireless (wlo1, 1000 Metric) Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 10.200.100.1 0.0.0.0 UG…
Mustafa Chelik
  • 143
  • 1
  • 8
1
vote
0 answers

Is it possible to configure an IPv6 multicast address to a NIC?

Is it possible to configure an address from ff00::/8 address block to a NIC? Looks like it is not possible: # ip a add ff99::1/8 dev p2p1 RTNETLINK answers: Cannot assign requested address # # ip maddr add ff99::1/8 dev p2p1 "ff99" is invalid…
Martin
  • 332
  • 3
  • 10
  • 28
1
vote
0 answers

Windows 10 Falls Back to IGMPv2

I have a setup where I have a Linux server running an 802.11n WPA2 encrypted Wi-Fi network. There are two devices connected to this network. One is a device which generates reports and the other is a Windows 10 laptop which downloads these reports.…
DMiess
  • 11
  • 3
1
vote
3 answers

Do all ethernet switches support multicast?

I'm playing with LANs here at home and I want to support multicast. Do all switches nowadays support multicast? Even the cheap ones? I'm buying a 5-port gigabit switch. Will it support multicast?
bruxa_de_blar
  • 31
  • 1
  • 2
1
vote
0 answers

What does having a network that would allow a multicast address to find host computers mean?

I'm dealing with a scenario with a service that's saying the following: "... [this service] uses multicast address 239.170.165.207 on port 49838 to find host computers, so your network must allow this." First, what does this actually mean? It…
ylluminate
  • 1,001
  • 2
  • 15
  • 29
1
vote
1 answer

How to disable IGMP in Raspbian

I am writing testcases for the IGMP and MLD implementation of a network switch. Those testcases run on Raspbian. However, Raspbian seems to regularly send IGMP reports/queries of its own, which interfere with my testcases. How can I disable those…
icehawk
  • 111
  • 2
1
vote
1 answer

Multicast port 40000 and safetynetp

I have a vendor that is sending multicast messages using port 40000. When I watch the traffic using tcpdump the port is reporting as safetynetp as can be seen below. The application that is listening for the traffic on 40000 never receives the…
Joe W
  • 205
  • 3
  • 11
1
vote
0 answers

How can I route Multicast between segregated interfaces on Sonicwall

I realize this question might be a little too specific, and I've read all the other questions about multicast on VPN, multicast on multiple interfaces, etc. But, I've applied all the information from those questions, and I'm down to what I believe…
Dexter
  • 111
  • 3
1
vote
0 answers

STP packets dropped (1 packet every 2 seconds) when irrelevant multicast group joined on the interface

I'm trying to understand weird packet drop issue when joining particular multicast group. I think this issue is related to patch introduced in kernel ver 2.6.37 Beginning with kernel 2.6.37, it has been changed the meaning of dropped packet count.…
pst
  • 11
  • 4
1
vote
0 answers

Multicast at high speed over Wifi/AP? higher speed?

I have a small dedicated wifi network setup specifically to carry a multicast multimedia package.. no other use (no web or other data on this network, due to the arrangement). The issue I've found is that clients are not receiving a true multicast…