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 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
  • 101
  • 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
  • 963
  • 2
  • 14
  • 29
0
votes
1 answer

Best practices for setting up multicast destinations

I am setting up a small LAN(20ish hosts) with a many devices which output multicast traffic. I am able to select their destination IP address and port number. There are 1-10 computers on the LAN which will subscribe to 0-to-all multicast streams.…
fooOnYou
  • 101
0
votes
1 answer

multicast in private network

I'am confused about multicast in a private subnet. Currently I have the following situation: subnet 10.0.0.0/24 NAT router 10.0.0.1 (ubuntu) pc1 10.0.0.2 pc2 10.0.0.3 pc1 and pc2 using the multicast address 228.0.0.4. Does this mean its only for…
0
votes
1 answer

How to ACCEPT multicast connection with iptables's rule?

I obtain this row with iptables logging option: IN= OUT=eno49 SRC=192.168.0.72 DST=224.1.0.2 LEN=196 TOS=0x00 PREC=0x00 TTL=5 ID=53310 DF PROTO=UDP SPT=9100 DPT=8100 this packet is DROPPED I think this is a multicast connection. Which is the rule…
karmax
  • 3
  • 3
0
votes
1 answer

Is it possible to override the destination MAC of multicast frame via a static ARP entry?

I have what I believe is a somewhat obscure question. I have a very specific use case here, so please consider this question purely academic. I have a device (running Linux 2.4 kernel) which transmits IP UDP multicast packets via Ethernet. I need…
0
votes
1 answer

Cisco Nexus 7000 Multicast IGMP Snooping enabled - packets got to all interfaces

I have connected three servers to Cisco Nexus 7000 switch. Server1 send multicast packets, server2 subscribes to multicast packets and server3 is for the tests. No matter if I subscribe to multicast from server2 or not all interfaces are flooded by…
killdaclick
  • 101
  • 3
0
votes
0 answers

how to forward multicast to multicast via iptables

I want to forward incoming multicast traffic to other multicast address listened on my server interface. My machine running on Ubuntu 14.04. Have a incoming traffic on 239.0.0.1 udp port 1001, want to forward to 224.0.0.1. I wrote the following…
azatuni
  • 93
  • 1
  • 2
  • 9
0
votes
0 answers

Sending multicast over VPN (with buffering)

I am trying to connect two sites using VPN (OpenVPN) to transmit multicasts (IPTV) from one site to another. I have created a layer2 VPN and it works, however, multicasts are very sensitive to packet loss on the network and I inevitably have some…
Pentium100
  • 453
  • 1
  • 5
  • 15
0
votes
1 answer

10GB Ethernet latency, unsaturated cross-connect

I'm using shared (between few clients of a vendor) 10GB cross-connect in exchange data center. We receive few multicast data streams (each stream delivers data on some group of "stocks"/derivatives). In total all the streams do not exceed 10GB line…
0
votes
2 answers

Who is reached by IP multicast?

We have a piece of software here that seems to be phoning home quite a bit. Using wireshark we figured out that it sends quite a few UDP packets each second to 224.168.168.168. Google tells me, this is a reserved multicast IP. Can I somehow find out…
Dakkaron
  • 111
  • 3
0
votes
2 answers

pfSense: Cannot filter flood of multicast packets being blocked by default

There are multiple devices under a different subnet on our LAN sending a flood of multicast packets. I've tried to allow this type of traffic, but it does not seem to work.
Marc05
  • 253
  • 1
  • 2
  • 12
0
votes
1 answer

IPv6: I'm confused about addresses

I'm starting studying IPv6 and I'm having some troubles understanding some aspects. Let's clarify if I'm getting this right! A single host may have: - a unicast global address - a link local address Then it joins multicast groups, solicited node…