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
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
  • 12
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
  • 8
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
  • 295
  • 1
  • 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
  • 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
0
votes
1 answer

Multicast causes link down on Mikrotik RB2011UiAS-RM switch2

I am trying to simply push multicast traffic through the second switch of the router... for now I connected swtich 2 port 8 to my ISP router iPTV port and port9 to SagemonUHD88 IPTV decoder. I set master port port 6, and added slaves port 8,9. I…
mastier
  • 119
  • 6
0
votes
1 answer

How to find all link local ipv6 devices on a certain interface?

We have a setup where a program on a linux server controls its linux subordinates (talks to them via TCP and UDP). There are several groups of subordinates. Each group is connected via ethernet to a single network interface card on the server. It is…
Adam
  • 1
  • 1
0
votes
2 answers

Using Clonezilla Server Edition with multiple multicast restore operations

I run a computer refurbishing operation for a local non-profit I am a part of. I have been looking into using Clonezilla to do network-based image-restoration. I am very interested in the multicast functionality provided by Clonezilla. I want to…
HalfBrian
  • 155
  • 1
  • 6
0
votes
0 answers

OpenVPN: possible to block multicast traffic in bridged mode?

I have a bridged-mode VPN using two DD-WRT routers connected to cellular modems. To avoid excessive bandwidth usage and fees, it would be nice to block multicast traffic originating from Allen Bradley PLCs on both sides of the network from crossing…
Ryan Griggs
  • 885
  • 2
  • 12
  • 27