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
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
  • 568
  • 1
  • 7
  • 23
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
  • 3
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
  • 307
  • 2
  • 16
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
  • 558
  • 5
  • 16
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…
0
votes
0 answers

High CPU usage on Cisco WS-4900M by multicast(PIM-SM)

Good evening I have a network with few Cisco routers (WS-4900M and 7606(as main core)) on backbone network and different connected to them l3 switches as client access routers, which receives igmp messages for IPTV multicast traffic. It's simple…
0
votes
1 answer

Add/Remove altnet directives to pimd at runtime?

Our network supports many multicast streams using pimd. Many (but not all) of those multicast streams only flow if we use the "altnet multicast_source_ip masklen 24" statement in the phyint section of the pimd.conf file. Those multicast flows are…
dutsnekcirf
  • 249
  • 2
  • 4
  • 16
0
votes
0 answers

multicast on windows 10

I have implemented an app in Android which communicates with another Windows app using multicast. It is working properly on most Windows 10 machines, but on some others the app won't receive multicast packets. I have firewall disabled to test. The…
takluiper
  • 101
  • 2
0
votes
0 answers

Use interface IP address for response to incoming multicast packet

I have a multicast routing setup with forwarding on the receiving side, as follows (all Linux): +----------------+ +----------------+ +-------------+ | openvpn-server |tun0 tun0| openvpn-client | forward port 53 |…
Peter Thomassen
  • 169
  • 1
  • 7
0
votes
1 answer

Set up multicast route across a middle hop

I have a host with two Docker containers (with NET_ADMIN capability): backend with an interface eth0 (172.16.7.3) openvpn-server with interfaces eth0 (172.16.7.2) and tun0 (10.8.0.1), running an OpenVPN server (tun mode) There is an OpenVPN client…
Peter Thomassen
  • 169
  • 1
  • 7
-1
votes
1 answer

multicast traffic across vlan

Suppose I have a layer 2 managed switch which can be programmed to have multiple VLANs. Lets say there are 2 configured VLANs as of now vlan-1 and vlan-2. I also have a linux machine with 2 ethernet NIC with each ethernet port 1 and 2 connected to a…
-1
votes
1 answer

How many available IPv6 multicast prefixes are there?

How many freely available multicast prefixes are there? The RFC specifies every ff00::/8 as the required prefix. Accordingly, there are 16*16 = 256 multicast prefixes. However, a large part are already taken (e.g., ff02::2 ). So how many are there…
-1
votes
1 answer

Multicast and duplicate IP addresses

I've developed a Multicast UDP client/server application, which allows a user to remotely change the network configuration of devices belonging to the same multicast group. But what if a device was assigned the same IP address as another device…
H_squared
  • 228
  • 2
  • 10
1 2 3
19
20