Multicast refers to one-to-many network transmission options, where packets will be automatically propagated just to those nodes wishing to receive them. IP-based multicast is the common case, though other multicast implementations exist.

learn more… | top users | synonyms

0
votes
1answer
26 views

NodeJS v.0.10.X is not backwards compatible with v0.8.X for multicast

NodeJS v.0.10.X is not backwards compatible with v0.8.X for multicast. bind seems to have changed from synchronous to async. I'm currently working around the issue with a horrible fudge: ...
0
votes
0answers
9 views

Is there a way to detect if a video cannot be multicast by VLC?

Is it possible to determine in C# code if a video can be multicast or not? I am currently on a project where I was told that a specific video could not be multi-cast due to some bug in our software ...
0
votes
1answer
21 views

Udp multicast group in Windows Store and Windows Desktop apps

I'm try to build up the communication between a Windows desktop app and a group of Windows Store and/or Windows Store apps, using UDP multicast groups. A communication module exists in all ...
0
votes
1answer
35 views

Joining multiple groups does not work with Netty 3.6.5.Final on SuSe Linux and JDK7

I'm implementing a UDP server using Netty 3.6.5.Final and JDK7 (Nio.2) on Suse Linux and I've run up against the wall. The problem specifically deals with the differences in binding to the wildcard ...
0
votes
0answers
26 views

UDP multicast not working without specifying jgroups.bind_addr

I have build up an application which can enable / disable UDP replication by run time. In simply what I did 1.) Take a number of multicast hops from the UI 2.) if (multicastHops < 0) ...
1
vote
1answer
38 views

Listen to multicast ranges in Python

This might sound stupid. Pardon my limited knowledge in these stuff. Is it possible to listen to multiple multicast groups, or more precisely, a range of addresses, for e.g. 224.128.*.* ? Usually ...
0
votes
2answers
54 views

what size of the buffer is sufficient for UDP case of recvfrom?

I'm using recvfrom to receive udp multicast data. As far as I know it receives not more than 1 datagram in call (is that correct?). What buffer size would be enough for such call then? I guess it ...
1
vote
1answer
50 views

2 Weblogic cluster in the same network

we have 2 servers (dev/int), one of this has 3 Weblogic clusters with one managed server and different mutlicast addresses. server 1 has the multicast addresses 239.192.3.7 and 239.192.3.8 and ...
2
votes
1answer
99 views

Java MulticastSocket with datagram source defined

I am trying to subscribe to a particular market data feed, distributed by multicast via FAST protocol. In Java, there is MulticastSocket and there is DatagramChannel supporting multicast. The FAST ...
0
votes
2answers
50 views

UdpClient does not receive multicast packets occasionally

I've written an server-application that is supposed to send and listen to upnp packets on several specified interfaces (but the problem already existed when there was only one network card). The code ...
1
vote
1answer
60 views

What is the best way to implement device discovery on a LAN

I have not much experience on network programming and I am writing a multi platform system which require each device able to find other devices within the same LAN, I am thinking what is a correct ...
0
votes
1answer
30 views

Host UDP Multicast Online, posible?

this may be a very stupid question but networking is not my strong. I have made a server that uses UDP multicast sockets. I am able to run the server on my local host and try with as many clients as ...
0
votes
0answers
62 views

SOLVED: How to get Multicast working in VirtualBox Guest OS on OSX

Im tearing my hair out trying to get Multicast to work under virtual box with an OSX host and Win7 guests. My multicast code in general works fine on a real network of Windows7 machines but i need to ...
-1
votes
0answers
13 views

Global (across network) enviroment variables: search for solution [closed]

Some of the programs I write are network services running on different hosts under special service user account. Often they need some configurable variables to be set. To designate certain DB server ...
1
vote
1answer
73 views

get UDP Multicast stream in PHP

I am trying to receive a UDP multicast stream in PHP. The receive command never gets anything and waits forever. I can watch the stream using VLC player so the stream is accessible on my machine. Any ...
1
vote
1answer
29 views

Under which conditions order of UDP packets may be changed?

I'm writing application than need to receive UDP multicast packets in the certain order. I'm trying to understand when and why I can receive packets in the wrong order. Because knowing how likely such ...
0
votes
1answer
83 views

Java SocketException Maximum number of datagram sockets reached

I have a java app program run on centos 6.3 and tomcat 7 as the app container, currently I meet one error : java.io.socketexception Maximum number of datagram sockets reached we use MulticastSocket ...
0
votes
0answers
57 views

multicast on windows 7 not enabled even after RMP installation

I was streaming to a multicast IP address from my system that has Windows7+2 NIC cards(D-Link and Intel), but with intel's NIC card, I was not able to send multicast packets to a Laptop with single ...
0
votes
1answer
55 views

Multicast Client System for iOS with a Java Server-Side

CONTEXT: I am creating a cross-platform multicast client-server system for mobile. I have created the server side in Java. I also created the android client side and it works perfectly. WHAT I WANT ...
1
vote
1answer
24 views

Inconformity between RFC and implementation about ethernet IPv6 multicast address

In RFC2464, the prefix of ethernet IPv6 multicast address is defined as 33:33, but as I captured some packets in Wireshark, I found this prefix is actually implemented as 33:33:ff. For example, when ...
0
votes
1answer
21 views

Limitation of IP_ADD_SOURCE_MEMBERSHIP on a Windows 2008 Server

I want to build an application which wants to recive data from several multicast groups (up to 1.000!) Is this possible with the setsockopt function (IP_ADD_SOURCE_MEMBERSHIP)? Or is there a system ...
1
vote
1answer
97 views

Multicasting on loopback device

I wish to send UDP multicast packets to loopback address and receive the same in other application. All tests done on fedora core 17 Linux. The idea is to receive a video stream via RTSP/HTTP or any ...
0
votes
1answer
33 views

Can a multicast packet be forced to take a trip through a router before being looped back to the sender?

Short: Can a multicast packet be forced to take a trip through a router before being looped back to the sender (ie disable internal loopback but still receive the packet)? My purpose is to use ...
0
votes
0answers
53 views

Ganglia gmond file /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq: No such file or directory

I'm trying to run Ganglia within my private cluster, but when I try to launch it, it doesn't work. This is a virtual machine running on top of XenServer. When I run "/etc/rc.d/init.d/gmond start" , ...
0
votes
0answers
24 views

listing multicast sockets

I am trying to list all opened multicast sockets on a linux system? netstat -g lists the groups joined though. Is there any other utility that I can use for this sake? Thanks a lot for the help.
1
vote
1answer
89 views

Error 10049 on Windows Python Multicast

Here's some Python code to set up a multicast receiver. It works fine on mac and linux. import socket, struct ADDR='239.239.250.1' PORT=8001 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) ...
0
votes
0answers
53 views

Many-to-many multicast is intermittent. Why?

We have a problem with a system that uses a common multicast address to pass UDP data packets from a variety of applications on multiple hosts, attached to multiple Cisco switches, to a different ...
0
votes
0answers
13 views

How do I use multicast communication in java for silumar microblog (follow and be followed)?

I need help to define the architecture and / or structure on a university study of how to create a an application in java desktop or in console, similar to a microblog (twitter) with follower and ...
2
votes
0answers
75 views

Unable to capture the IPv6 multicast traffic for Windows 8

Following is the function I wrote to capture IPv6 multicast data coming on multicast address ff02::1 and port 9154. This code works fine on Windows Vista and Windows 7. But I am unable to capture the ...
0
votes
0answers
58 views

Does not join to a multicast address on Linux? [closed]

I run ip maddress add 224.5.5.5 dev eth0 ,but netstat -gn or ip maddr show does not show this maddress joined. Any idea? This is a redhat linux. multicast is enabled.
0
votes
0answers
57 views

JGroup 3.2.7 not performing a cluster when hosts are distributed

JGroup version : 3.2.7-final 1.) On same machine two instances of Demo Program java -Djava.net.preferIPv4Stack=true org.jgroups.demos.Draw WORKING FINE. 2.) On two different machines in same ...
2
votes
1answer
138 views

Multicast socket on Windows 7

this code works fine on Linux and Windows XP, however it always fails to add multicast membership on Windows 7 64bit and Windows Server 2008. uses Classes, Sockets, {$IFDEF MSWINDOWS} Windows, ...
0
votes
0answers
40 views

Ehcache Jgroups Replication - No implementation for JGroupsCachePeer getQuiet API

I am using Ehcache JGroups Multicast replication for my application. I have some requirement where I want to retrieve some specific cache keys from neighboring cache peers. I do not want to use ...
0
votes
1answer
47 views

How do I implement multicast dynamic join/prune using ns3

Is there a way to implement the dynamic prune/graft of nodes in a multicast network using ns3. The resources I could find all implements only static routing for multicast networks.
1
vote
1answer
89 views

Centos 6.3 Server ignoring IGMP Queries

I am using a centos 6.3 server to subscribe to UDP multicast data and I noticed that my server doesn't answer to the IGMP queries sent by the switch it is connected to. As a result, when I open my ...
0
votes
0answers
27 views

Play sound buffer from multicast with DirectSound

I'm working on a video/audio conference p2p system. I've already done the one to one streaming,fully synchronized.On a receive thread i wait for audio packets which can arrive from any user who joined ...
0
votes
0answers
34 views

2 simultaneous multicast broadcasts over same ethernet

I'm trying to send out two different encoded TS streams over the same ethernet cable with multicast IP addresses and port number different for both the instances. But in VLC, I see only one TS stream ...
0
votes
1answer
136 views

C# UdpSocket starts receiving after send and stops receiving after a few packages

I'm trying to receive data via an UdpSocket from a multicast address. The Socket doesn't receive data, before I sent data over the socket. After sending, i can receive a few packages, and then i have ...
1
vote
1answer
44 views

Getting local UDP server information into c++

So, I got this program running on my mac, ipMidi, that allows me to send midi events through my ethernet connection. It works under UDP protocol and is sending midi from my Ableton Live daw. I'm ...
0
votes
1answer
103 views

MulticastSocket dont disable loopback on mac os x

I have a serious problem in mac os x. Im developing an backup distributed application in mac os x. The application have to send a file to the network and the peers of network have to backup the file. ...
0
votes
1answer
43 views

Is there a Node.js equivalent of JGroups to provide reliable multicast?

Does anyone know if there is an equivalent of JGroups for node.js? I'm looking for something that can provide reliable multicast, and ideally some of the "value add" features of JGroups that are very ...
0
votes
0answers
42 views

Multicast over layer 2

Pardon my limited knowledge in networks. I am trying to setup two small programs as client and server, which join to a particular multicast group. The servers sends some arbitrary data to the group ...
1
vote
2answers
225 views

zeromq epgm pub/sub not working

I am working with the node.js example. I have installed openpgm and zeromq 3.2 on my ubuntu 12.10 machine. Here's the code: var zmq = require('zmq') , port = 'epgm://eth0;239.192.1.1:5555'; var ...
0
votes
1answer
61 views

Multicast socket on windows XP?

I've a small software that works fine on windows 7. It makes some discovery using multicast on udp. I started to make some tests on windows XP and I got some errors. Socket sendSocket = new ...
0
votes
0answers
44 views

Communication between Broker in a Multicast Environment using ActiveMQ and Java

I can't get several Broker to communicate with each other. Everything else works as expected (including the communication between producer and consumer). But how to I manage that Broker talk to each ...
0
votes
0answers
68 views

How to implement publish/subscribe in Linux without manually bookkeeping the subscriptions list and without userspace helpers like D-Bus?

I want something like multicast AF_UNIX datagram sockets (something similarly low-level). Is there something already implemented in Linux kernel for this? I want it to keep the publish/subscribe ...
0
votes
1answer
41 views

Sending Multicast Packets does just work over P2P

I am stucked within a weired problem. I have two little programs (written in C, using Win API), the one sends a multicast package, the other one receives it. Well, I tried it between two notebooks, ...
0
votes
0answers
152 views

Python - bind error on multicast bind on windows

I need to use multicast in Python application, after googling a bit I found snippets of code that works, here it is: # UDP multicast examples, Hugo Vincent, 2005-05-14. import socket import sys ...
0
votes
2answers
364 views

Receive multicast UDP datagrams with python on Linux

I have a hardware device that sends multicast data on my network. I have written a python script that receives the data and prints it. However, I've found that it only works on my Windows XP PC and ...
7
votes
1answer
181 views

Socket exception on Hyper-V machine

Recently, our entire QA environment moved from VMWare to Hyper-V virtual machines. One of our applications sends UDP packets to a multicast cloud by a rate of 20K packets per second. While that ...

1 2 3 4 5 11