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

What interaction is required for a Windows server and Cisco router to setup and destroy a Multicast session?

I'm trying to understand how Multicast actually works, and have read numerous articles and Wiki pages, and have gathered this: A multicast address takes up state on the router of the membership, which is a scalability concern There are commands to…
makerofthings7
  • 8,821
  • 28
  • 115
  • 196
3
votes
2 answers

Split multicast traffic on two vlans using IOS

Here is what I want to do: On a switch / router running cisco IOS ( Ideally it would work on a Lanbase image on a 3560G but it is possible to use 65xx routers also ) I receive two udp multicast streams on vlan 100: vlan 100, @239.34.1.1:1234 and…
Olivier S
  • 2,719
  • 1
  • 12
  • 14
3
votes
1 answer

Wireless Multicast Forwarding on OpenWRT

Good day! We need to connect an STB device over wi-fi to the router. STB uses multicast only. Using udpxy is not possible. Original firmware forwards multicast over wi-fi using mac changing technique. I.e. router changes destination mac address from…
igorv
  • 31
  • 1
  • 1
  • 2
3
votes
1 answer

is there a way to "multicast" a request with haproxy?

I have a configuration with a cloud of servers behind haproxy. Haproxy is loadbalancing between the servers. However there's some action that needs to be sent to each server. Currently I do it independently from haproxy, by going to each server in a…
Gavriel
  • 229
  • 2
  • 10
3
votes
3 answers

Should I create a multicast route on RHEL/CentOS for a blind sender?

A CentOS 5 system does not appear to come out-of-the-box with a route for multicast traffic. What it does appear to do is use a default route, if configured. In other words, a routing table like this: # netstat -rn Kernel IP routing…
zigg
  • 163
  • 1
  • 2
  • 12
3
votes
2 answers

Solaris doesn't know which MAC address to use to send an UDP multicast message

I have a pair of Solaris 10 boxes which are supposed to send multicast UDP packets to a group of hosts. One of them works just fine, whereas the other one does not. The problem with the second machine is that it doesn't know what MAC address to use…
3
votes
2 answers

MS NLB: why are multicast packets received by all servers on the LAN, not just members of the cluster

I have a MS NLB cluster (Win 2003) which includes just two hosts. The cluster is configured to use Multicast operation mode (not IGMP). For some reason I am seeing packets intended for the NLB cluster Destination:…
Afanasii
  • 53
  • 1
  • 5
3
votes
1 answer

How to make sysctl network bridge settings persist after a reboot?

I am setting up a notebook for software demo purpose. The machine has 8GB RAM, a Core i7 Intel CPU, a 128GB SSD, and runs Ubuntu 12.04 LTS 64bit. The notebook is used as a KVM host and runs a few KVM guests. All such guests use the virbr0 default…
user183394
  • 183
  • 1
  • 4
  • 8
3
votes
1 answer

Multicast doesn't seem to be working on RHEL 5.5

I'm trying to install Oracle Grid Infrastructure on two machines. Their documentation states: You must enable multicasting for the cluster on the IP address subnet ranges 224.0.0.0/24 and 230.0.1.0/24 So I ran: route add -net 224.0.0.0/24 dev…
NullUser
  • 143
  • 1
  • 2
  • 11
3
votes
1 answer

Streaming root/source in multicasting sparse mode

I'd like to verify if I understand multicasting correctly. In a pim sparse-mode configuration, the RP rtr becomes the "root" of the stream for the rest of the configured routers. Does this mean that destination hosts clients will get their stream…
mrtechalot
  • 67
  • 4
3
votes
1 answer

How to monitor a UDP multicast stream on a cisco network, hopefully with SNMP

We have a LAN with 2x Cisco 4500's as gateways running HSRP. We're using Exterity HD IP Encoders to take HD video and put it onto the network as a multicast UDP stream (playable in VLC). I have a fairely extensive Nagios setup on Linux and would…
Joeme
  • 180
  • 1
  • 7
3
votes
1 answer

What is the difference between bind, network (interface) and multicast addresses?

The DatagramSocketImpl in Java has a joinGroup method that takes a socket address (IP and PORT) plus the interface address (IP and PORT). I am trying to understand the difference and purpose of each of those three addresses in the multicast…
chrisapotek
  • 575
  • 2
  • 5
  • 17
3
votes
1 answer

IGMP V3 support in Linux-2.6.35

I am trying to start a bridge connection and force it to use IGMPV3. The following command will explain my issue better : The below is the output of force_igmp_version before issuing brctl commands / # cat…
lxusr
  • 131
  • 1
  • 2
3
votes
4 answers

Is there a good way to keep IPv6 multicast packets off WiFi?

I work on a product that consists of a number of headless Linux boxes that work together as a cluster. These boxes synchronize their state with each other by sending proprietary-format link-local IPv6 multicast packets (to ff12::xxxx%en0). These…
Jeremy Friesner
  • 1,311
  • 1
  • 14
  • 25
3
votes
2 answers

Multicast IP Addresses

I posted this on StackOverflow and was told it might be more appropriate here. I'm having trouble understanding how multicast addresses work. First off, is it true that if I have N clients or peers working on separate networks, they all subscribe to…
Josh G
  • 133
  • 3