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

IGMP Router Mode VS Proxy Mode

I am trying to understand the difference between IGMP Router Mode and IGMP Proxy Mode here, http://technet.microsoft.com/en-us/library/cc957920.aspx There is a question for an exam I am studying that asks You are the network administrator for the…
Glowie
  • 169
  • 3
  • 11
1
vote
0 answers

IPSEC on linux with multiple remote ISP

I have configured 2 ipsec VPN connection from my linux server to my clients locations. the reason being the client has two ISPs a primary and a secondary on. The client wants to switch to secondary automatically when the primary is down. When two…
1
vote
1 answer

How to set up custom multicast address

What would it take to setup a custom made multicast ip address in the network? Machines are linux. Let's say I want to have a multicast address with only some machines from the network as group members. I suppose machines in the network should be…
vbartoni
  • 63
  • 5
1
vote
0 answers

ospf hello not forwarded

I am trying to change the destination ip of ospf hello packet (224.0.0.5) to link local address using iptables rule (DNAT) . It does not seem to work. A similar rule for unicast packet (BGP control) has worked for me. Any idea? Both the incoming…
Malathi
  • 11
  • 1
1
vote
0 answers

Multicast route setup for multiple interface

Currently I have the below eth5 to receive multicast data for 239.1.1.31. It works. $ ifconfig eth5 Link encap:Ethernet HWaddr E4:11:5B:94:E1:F3 inet addr:10.185.2.2 Bcast:10.185.2.31 Mask:255.255.255.224 ... Routes: $ sudo ip…
alex
  • 11
  • 1
  • 2
1
vote
1 answer

Many 'Deny IPv6-ICMP reverse path check' alerts from multicast addresses on Cisco ASA

In an effort to prevent IP Source Address Spoofing (RFC 2827) I've enabled reverse path filtering (RPF) on my Cisco ASA 5505. The topology is aprox. like this. Each segment has its own IPv4 subnet and IPv6 subnet. guests …
Martijn Heemels
  • 7,438
  • 6
  • 39
  • 62
1
vote
1 answer

Is IGMP multicast traffic to a Xen VM host legitimate?

I run two Xen/CentOS 6.5 based VMs, both hosted by the same company, but connected to different networks (basic /24s w/ a single gateway at .1) in different physical locations. I developed an iptables firewall on the first host, part of which logged…
1
vote
1 answer

What affects multicast rates?

I'm experimenting the Trinity Rescue Kit (TRK) http://trinityhome.org/Home/index.php?wpid=1&front_id=12 and it's ability to clone hard disks to many computers at one time using multicast techniques. Quite cool software! All of the computers are…
Scott Bussinger
  • 1,761
  • 4
  • 23
  • 27
1
vote
2 answers

How to make a Cisco AP1142N speak Bonjour?

I have an autonomous Cisco access point (model AP1142N) and an Apple TV that are on the same physical and logical network. Bonjour does not work across the access point — both WiFi-to-WiFi and Wired-to-Wired seem to work, but as soon as multicast…
dorian
  • 397
  • 1
  • 7
  • 22
1
vote
0 answers

ARP Tables on Windows vs Linux

I noticed on Windows Server 2008, Windows Server 2008 R2, and Windows 7 that IP multicast groups joined by a computer are recorded in the ARP table as static addresses automatically. However, the same does not seem to hold true for the ARP tables on…
Feussy
  • 156
  • 5
1
vote
0 answers

How do get multicast to work on a Cisco AP1240?

I have a Cisco AP1142N in standalone mode acting as a simple AP. On the wired segment of the LAN, there is an Apple TV that is used to mirror laptop screens to a large TV screen. As long as clients are in the wired LAN, they can see and stream to…
dorian
  • 397
  • 1
  • 7
  • 22
1
vote
1 answer

Multicast Listener Report Message v2

I run an ICMPv6 protocol and I have made a capture using wireshark. In the capture I have some Multicast Listener Report Message v2. Some of the has the source ip, the ipv6 link local address, but some of them has :: as the source address? Please…
Dragos
  • 11
  • 1
  • 3
1
vote
0 answers

linux kernel configuration to filter multicast traffic based on interface

I have two virtual interfaces (eth0.2, eth0.3) in my PC. I am sending multicast data from eth0.2 to eth0.2. Multicast data is received in eth0.2 but also received in eth0.3, the other virtual interface. After a study I understand that Linux kernel…
arr
  • 19
  • 4
1
vote
1 answer

If I have a process which is supposed to be receiving data from multicast, how can I check if it actually is?

I can check gstack, but just because I see the listener threads on the recv call does not mean that call is not returning. One other thing I thought was to do something like: netstat -lupe | grep to check the inodes of the sockets…
Palace Chan
  • 151
  • 1
  • 3
1
vote
0 answers

How can I set up multicast tunnel between hosts on the same net

Dealing with AWS, where multicast packets won't travel even between systems on the same net (VPC). Generally, this is not specific to AWS, as this is generally possible in any network (i.e. you have a switch that sinks multicast for some…
Pawel Veselov
  • 744
  • 8
  • 19