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

Multicast communication betwen two subnets connected to one switch

Computers A and and B are connected to the same switch. A is in subnet 192.168.1.0/24, B in 192.168.2.0/24, so they cannot communicate directly using unicast. But what about multicast communication? Will it work or not? There are no other devices or…
0
votes
1 answer

cisco 4948 IGMP flooding on all ports

everyone Having trouble with multicast on cisco WS-C4948-10GE (MPC8540). I have two switches running: System image file is "bootflash:cat4000-i5k91s-mz.122-25.EWA9.bin" and System image file is "bootflash:cat4500-entservicesk9-mz.122-46.SG.bin" Both…
Tomato
  • 79
  • 1
  • 8
0
votes
0 answers

running snort and IGMP v2 flooding

I am not a network guru so please bear with me. I am running snort on a PLC (running rt-linux) along with an application that needs to communicate with another instance of the same application residing on another PLC, via multicast. I have…
awatan
  • 101
  • 1
  • 4
0
votes
1 answer

routing multicast trough debian miniPC eth0->eth1

Hello i have probably noob question by i already spent some time on it and messed a local network as well so: I have miniPC for real time log purposes between network and IPTV set-top box. The box has DHCP on it so it can provide IP to the box as…
J B
  • 93
  • 9
0
votes
1 answer

iptables translate multicast to unicast

I'm attempting to translate multicast traffic to unicast to send over the Internet. I enabled ip forwarding and tried using the following rule: iptables -t nat -A PREROUTING -i eth0 -d 239.0.0.0 -j DNAT --to-destination 192.0.2.1 However, the…
Ryan Bair
  • 489
  • 4
  • 13
0
votes
2 answers

WDS stopped working - no servers under Windows Deployment Services 2008 R2

I have three Windows 2008 R2 servers with MDT and WDS installed. It was reported multicasting stopped working on all of them. I made sure the multicast option was selected in the deployment shares' properties, but when I went to Windows Deployment…
0
votes
0 answers

Forwarding traffic - passive behavior

I spent some time trying to figuring this out. I found my core solution, but iam not satisfied, or more likely i dont fully understand the result, which buggs me. My setting: I have wall plug(port) with attached internal VLAN on which multicast IPTV…
J B
  • 93
  • 9
0
votes
1 answer

Java Multicast Socket doesn't receive anything on Windows

I need to send and receive in multicast. I posted the question on StackOverflow Forum for checking my code: https://stackoverflow.com/questions/50131973/java-multicast-socket-doesnt-receive-anything-on-windows I tried my code on Ubuntu and it works…
0
votes
1 answer

Named multicast address

Is it possible to name a multicast or broadcast address? Usually for a single machine I'd put a line in /etc/hosts. Will that work for a multicast address?
z0r
  • 165
  • 2
  • 9
0
votes
1 answer

SSH TAP tunnel & multicast groups

Is it possible to do UDP multicasting over an SSH TAP tunnel? I have set up a TAP tunnel using SSH between my Ubuntu PC and a Raspberry Pi sitting in a remote office, using this command: $ ssh -o Tunnel=ethernet -w 0:0 me@remotehost $ sudo dhclient…
Tom
  • 327
  • 2
  • 11
0
votes
0 answers

What routing/topology protocol(s) should be used with P2P devices with sporadic, changing connectivity?

I have several IoT devices that will sporadically come into and out of range, and connect in a partial mesh topology. For illustration purposes, imagine the interconnectivity of a Web of Trust, or Social Graph ... each has similar properties. What…
0
votes
1 answer

What are good host firewall rules to allow UDP multicast?

I have a system with a restrictive firewall that will be participating in UDP multicasting (sending and receiving). What's a good set of rules to make the host's firewall allow this? This is my current setup, using ipf on Solaris: # Enable UDP…
Joshua Swink
  • 162
  • 1
  • 8
0
votes
1 answer

How can I tunnel multicast traffic?

I am trying to receive multicast on 1 machine, forward it to another machine, and then replay it on that machine. test_env: the machine which has access to the original multicast stream mcast_sender: the machine which I'm trying to forward the…
Steve Lorimer
  • 175
  • 11
0
votes
2 answers

Change linux multicast interface

Why my multicast traffic always goes through wlan0 interface? I try ip route add 224.0.0.0/4 dev lo ip link set dev lo multicast on ip route flush cache But VLC casting to 224.0.0.1:1111 always goes through wlan0 interface. ip route: default via…
zim32
  • 141
  • 1
  • 4
0
votes
0 answers

OpenVPN and multicast routing

I have setup an OpenVPN server for remote clients to access a server that will be sending them multicast traffic, however I am unable to receive any multicast traffic. The application makes a successful connection to the server in question, but…
scott
  • 1
  • 1
  • 1