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
7
votes
5 answers

Convey multicast (to another LAN) through WAN disabling multicast

My Server and Client softwares run both on Linux. The Server broadcasts multicast, the Client listens multicast. My Client has to migrate to another site, and unfortunately multicast is not allowed between the two sites :-( How to convey multicast…
oHo
  • 515
  • 1
  • 6
  • 14
7
votes
4 answers

Capturing multicast data with Wireshark with IGMP Snooping Enabled at the switch

I am trying to capture multicast traffic via Wireshark (actually TShark), however the switch has IGMP snooping enabled and will only send Multicast traffic on the ports that have an active IGMP subscription. I am currently getting around this by…
Chuu
  • 213
  • 1
  • 2
  • 6
7
votes
1 answer

windws server 2008 udp multicast performance problem

I encounter a strange performance problem on 2008 R2 Enterprise SP1. Here is the setup: Many processes listening to distinct Multicast UDP streams (5 multicasts listen by process) bound on a single NIC Across processes,all multicasts using the…
dweeves
  • 121
  • 5
7
votes
1 answer

Multicast hostname lookups on OSX

I have a problem with hostname lookups on my OSX computer. According to Apple's HK3473 document it says for v10.6: Host names that contain only one label in addition to local, for example "My-Computer.local", are resolved using Multicast DNS…
KARASZI István
  • 207
  • 3
  • 13
7
votes
5 answers

Multicast File Transfers

I'm looking for some multicast file transfer software. Do you have any suggestions? Must be "quickly implementable", i.e. no Tivoli or other stuff that requires a massive infrastructure. Must run on Linux. Note that I'm not looking for cloning…
Jed Daniels
  • 7,172
  • 2
  • 33
  • 41
6
votes
1 answer

iperf max udp multicast performance peaking at 10Mbit/s?

I'm trying to test UDP multicast throughput via iperf but it seems like it's not sending more than 10Mbit/s from my dev machine: C:\> iperf -c 224.0.166.111 -u -T 1 -t 100 -i 1 -b…
TJF
  • 391
  • 6
  • 15
6
votes
2 answers

Stateful matching of multicast responses in iptables

A central part of my firewall configuration is: -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT It seems that RELATED does not work for multicast responses: when the host sends to a multicast group (in my case a UPnP SSDP discovery, to…
Christian
  • 163
  • 1
  • 5
5
votes
1 answer

Machine with bonded interface does not receive multicast packets on all slave interfaces

After an upgrade of our machines from RHEL 6.6 to RHEL 6.7 we observed a problem where 4 of our 30 machines only receive multicast traffic on one of their two slave interfaces. It is unclear if the upgrade is related or if the included restart…
K Erlandsson
  • 635
  • 1
  • 9
  • 13
5
votes
1 answer

Why would I ever (really) want to implement dense mode when dealing with PIM routing?

I'm introducing some PIM routing into my network to make some multicast traffic available across routers. I have read a bit on PIM, sparse mode versus dense mode. After reading, I am trying to figure out, under what circumstances would I want to…
mbrownnyc
  • 1,825
  • 8
  • 30
  • 50
5
votes
2 answers

Can I test broadcast packets on a single machine?

I want to have a server sending broadcast UDP packets and two other clients, in the same machine, receiving them. Can I do that somehow? What IP address would I use? @gravyface gave me hope but I tried: Server sending to 127.255.255.255:54321 and…
chrisapotek
  • 575
  • 2
  • 5
  • 17
5
votes
1 answer

Why is pfSense blocking multicast traffic when it is explicitly enabled?

I have a pair of pfSense firewall/routers set up in CARP/XML Config cluster. On the LAN side, the switch also has a pair of servers running corosync/pacemaker/drbd. These are on a different ip network, but still generate multicast packets. For the…
Bryan Agee
  • 1,179
  • 2
  • 10
  • 27
5
votes
5 answers

Troubleshooting UDP multicast on Windows

I'm a programmer, not a system adminstrator, so please forgive my administrative naivete. My software, written in C#, relies on UDP multicasting. One machine, the server, streams events to an known UDP group address (configurable, but 224.130.103.5…
Aaron Haspel
  • 53
  • 1
  • 1
  • 4
5
votes
1 answer

ntp multicast address

A silly question probably, but guess I need to ask. If I've got four centos boxes that are acting as ntpd multicast servers, will the multicast address configured in each box's ntp.conf all be the same (like 224.0.1.1) on all four boxes? Or does…
user52874
  • 819
  • 2
  • 10
  • 25
5
votes
1 answer

Lot of Multicast traffic on LAN

Recently the whole network at work is being hit by multicast traffic originating on the LAN itself. I did some investigating and the service which seems to be responsible is ws-discovery. I have attached a screenshot of wireshark capturing the…
Nel
  • 179
  • 1
  • 11
5
votes
2 answers

Multicast over SSH

I have two LANs: 10.x.x.x and 192.x.x.x. On each LAN I have a Linux machine (10.x.x.5 and 192.x.x.5) but they are not routers. I can open ssh from 192.x.x.5 to 10.x.x.5. There are multicast udp channels available for lan 10.x.x.x. Namely, I may…
Boris
  • 101
  • 2
  • 6
1
2
3
18 19