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
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
  • 2
  • 10
0
votes
0 answers

route packets from specific hosts to virtual device

PIMv2 I think the issue is with multicast. I want to create a GRE tunnel that supports multicast PIMv2. I am seeing the server sending PIMv2 Hello messages to my gre tunnel but my machine is not responding. ip tunnel add [g0] mode gre remote [remote…
neoh
  • 1
  • 2
0
votes
1 answer

How to configure bird OSPF for ipip link?

I have a simple ipip tunnel between 192.168.56.254/31 and 192.168.56.255/31. My simple test config on 192.168.56.254/31 looks like: protocol ospf test { import none; export none; area 0.0.0.0 { interface…
divB
  • 538
  • 1
  • 6
  • 22
0
votes
0 answers

Subscribe to a multicast broadcast after connecting to GRE tunnel

I created a gre tunnel to a ip that's doing multicast broadcasting. I look at tcpdump and I see that there are two messages that keep repeating PIMv2 98 bytes long Info Hello IGMPv2 72 bytes long Info Membership Query, General I think the tunnel is…
0
votes
1 answer

Cannot receive multicast frames

I'm bringing up a new machine and it cannot receive multicast frames for some reason. Everything else about the network seems to work fine. Even multicast frame seems to get out fine because I can start avahi-daemon and on startup I can see…
Francois
  • 101
  • 2
0
votes
1 answer

Which VLANs need IGMP snooping?

My approximate understanding is that switches and similar L2 devices employ IGMP snooping to prevent multicast "streams" from propagating out of ports that have no multicast clients downstream of them. Questions: It would seem that IGMP snooping is…
sxc731
  • 297
  • 2
  • 15
0
votes
0 answers

Forward multicast and broadcast packets over subnets

I am trying to receive packets from the local network, including specifically broadcast and multicast on device B, which is connected to the local network though device A which is acting as a router with iptables. In other words, I am trying to…
APIUM
  • 1
  • 1
0
votes
0 answers

How to disable / remove multicast completely?

On one of my Windows Servers (Windows Server Standard 2019), I'd like to remove multicast handling completely. Completely really means completely - completely ignore incoming multicast traffic, and completely disable sending of outgoing multicast…
Binarus
  • 519
  • 3
  • 15
0
votes
0 answers

Router using smcroute stops routing multicast after some time

I have a problem with multicast routing on a "from scratch" (Debian, not LFS ;)) linux router/firewall. At home I've set up a user and a server net. Between the two is a router/firewall (APU2E4 board) which, among other things, should route media…
1 2 3
18
19