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

Create NSC-File for multicast streaming with Windows Media Streaming

For streaming multicast I need to create a NSC-file for the players - this file is pseudo-coded by Microsoft. Now I need to create this file for each proxy-publishingpoint. Is there any way to stream multicast without the NSC-file or can I create…
da_didi
  • 255
  • 4
  • 11
1
vote
3 answers

Windows Network Load Balancing on ESX Cluster with Dell PowerConnect stacks

We recently switched out our Cisco 6500 core switch for a pair of Dell PowerConnect 6248 stacks. Since then, our Network Load Balanced Sharepoint, which runs on two virtual machines on an ESX cluster has been behaving very poorly. The symptoms are…
dunxd
  • 9,632
  • 22
  • 81
  • 118
1
vote
0 answers

Linux bridge does not propagate multicast ntp messages

My hardware, based on imx8, has two ethernet interfaces. These are connected together as a bridge, all messages not for this he are forwarded. Everything works as expected except multicast messages: ntp server sends time as a multicast message…
H.Arslan
  • 11
  • 1
1
vote
1 answer

Is there a way to add multicast to loopback interface on a kubernetes pod?

Using an in-prem kubernetes installation on baremetal (Ubuntu) servers, installed with kubeadm. Kubernetes version is 1.25.3 Need to have multicast on a pod's loopback for the automated tests running, and I didn't find a way to get it. For a…
Mikha
  • 123
  • 4
1
vote
1 answer

How do multicast addresses on the public internet resolve

A service we use is asking us to whitelist the IP 255.0.0.1 in order for us to use them. I understand this is a limit broadcast address and falls under the category of multicast addresses. How do I see what IPs it "resolves" to? Is there a list of…
Andy Jackson
  • 41
  • 1
  • 4
1
vote
1 answer

WCF Discovery on Windows Server 2019 getting ICMP Typ 3 Code 3

The problem: I've installed Windows Server 2019 and I am trying to discover my WCF services running on a Windows Server 2012R2. But that's not working and in Wireshark I see a ICMP Destination unreachable (Port unreachable). My current…
squadwuschel
  • 111
  • 1
1
vote
1 answer

Using multicast DNS to broadcast name of my machine like raspberrpi does

Raspberry pi has a feature where when it's connected to a LAN, you can find its IP using raspberrypi.local (source). It mentions multicast DNS. I'd like to do this for my own linux devices on LAN, giving them names of my choice (e.g. "xyz.local")…
1
vote
3 answers

Cisco multicast configuration

I'm on an isolated (for now) catalyst 3560e. I have a multicast source, which when enabled, causes flooding to all switch interfaces. I have a second different multicast source, which does not cause flooding, it only gets delivered to the sinks who…
Dustin Getz
  • 251
  • 2
  • 9
1
vote
1 answer

Multicast not working on macvtap device

I have a problem with my virtual network and IPv6 network discovery (multicast traffic). (The setup might seem a little bit involved and I don't remember the exact reasons for every design decision. Nevertheless the network proved to be stable and…
1
vote
1 answer

Cannot Create QEMU Socket Networking in Windows Host using Multicast Fails with Unknown Error

I am trying to create a simulated VLAN using socket networking, and the only way to connect multiple VMs in one network in QEMU using socket networking is by using the multicast mcast option of the socket network backend, to create a shared…
falhumai96
  • 123
  • 6
0
votes
1 answer

How can I see multicast traffic from the same host?

On Fedora 30, I'm trying to see multicast packets in another process on the same host. Using netstat, iperf, and tcpdump, I've verified that the group is joined and packets are sent to the multicast address, but the server-mode iperf never receives…
JasonN
  • 111
  • 1
  • 4
0
votes
0 answers

How can I forward port from two multicast addreses with the same port using iptables on debian?

I wrote a multithread program in Python, that analyses traffic from two multicast addresses with the same port, however it looks like my threads don't distinguish from where are datagram's coming. Information: 1st multicast address:…
0
votes
0 answers

Can a linux client in a multicast network get to know the source ip?

Supose I'm added as a client in a small multicast network with L2 switches and one unique router that is the LHR that uses IGMPv2. Can I (legally if possible) forward some signal that will give me the LHR or the source IP address?
mranon
  • 1
0
votes
1 answer

Multicast not reaching application layer - Windows 10

I have a python application that receives multicast packets from one of the ethernet ports set to a static ip on a windows machine. The other ethernet port is a usb-eth dongle configured for another network (dhcp). When running, wireshark shows the…
scs675
  • 3
  • 4
0
votes
1 answer

multicast routing between vlan

I am trying to create a multicast messaging service between vlans. When both multicast client and server are in same vlan, the client receives the packet without any issues. When client and server in different vlans, I need to route the multicast…