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

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
  • 83
  • 1
  • 1
  • 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
  • 433
  • 1
  • 4
  • 13
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…
0
votes
0 answers

Does Ubuntu with Linux 3.5 having TX RX ring buffers or BQL

My linux uname -a command outputs: Linux Davinci001 3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:13:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux So, does NICs with this Ubuntu machine is working with BQL (Byte Queue Limit) algorithms or TX…
brb tea
  • 109
0
votes
1 answer

Wifi multicast stream bandwidth limit

i am doing a project with multicast video streaming. The problem i am facing is, in 802.11b and 802.11g WiFi modes the multicast streaming band width is limited to 1Mbps. But the video have a bitrate of 2Mbps. after some search i found that the…
Anjo John
  • 1
  • 3
0
votes
1 answer

Does the IP -> Ethernet multicast address mapping ambiguity matter for IGMP snooping switches?

There are 2^28 possible IP multicast addresses, but only 2^23 possible Ethernet (MAC) multicast addresses (http://technet.microsoft.com/en-us/library/cc957928.aspx), which is why e.g. 224.1.1.1 gets mapped to the same MAC address as…
Evgeniy Berezovsky
  • 851
  • 1
  • 8
  • 26
0
votes
2 answers

Possible to emulate an IGMP querier in software?

I have a L3 switch that does IGMP snooping, but it cannot act as an IGMP querier, and there is no IGMP querier connected to this network. Would it be possible to implement an IGMP querier in software, so that my L3 switch can snoop on it and route…
Evgeniy Berezovsky
  • 851
  • 1
  • 8
  • 26