Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
5k views

Multicast Join on Linux and IGMPv3

We've run into a thorny problem. We are writing a c++ program that receives multicast UDP traffic. We're in the process of moving our applications to a different network environment and our ...
1
vote
1answer
63 views

Snooping in on IGMP traffic

I built a library for doing IGMP stuff. Now, the silly thing is, my library also does presence monitoring to make sure others are still part of the group. IGMP does exactly the same thing at a lower ...
1
vote
1answer
432 views

Setting IGMP Version on Windows 7

I have a piece of software written "out there" (e.g. no source code available) that allows me to use it in multicast mode. I'm trying to use this software on a network that, for technical reasons, can ...
1
vote
0answers
71 views

C++ group management of computers over internet

I want to be able to send messages between computers on the internet network but with minimal functionality requirement are- 1)computers can join/leave the group (I expect the group size to be a ...
1
vote
1answer
812 views

Socket error:90:Message Too Long

I have an error from the following scenario with IGMP socket call; fd = socket(PF_INET, SOCK_RAW, IPPROTO_IGMP) ; setsockopt( fd, IPPROTO_IP, IP_HDRINCL, nval, sizeof(nval) ); /** Fill in the IP ...
1
vote
1answer
287 views

using IP_ADD_SOURCE_MEMBERSHIP unable to add more then 10 source address for a RAW socket

HI, I use set socket option IP_ADD_SOURCE_MEMBERSHIP to add more then 10 source address. But after 10 source address I am unable to add further. Can anyone tell me how can add more then 10 address ...
1
vote
2answers
230 views

Sending IGMP with PHP

Can I send out IGMP packets with a PHP script? Is IGMP even on the Transport Layer? I was looking at some JOIN packets that are destined for 224.0.0.251. I noticed that the IP header had no port ...
0
votes
1answer
91 views

How to use MLDv2 in C# (IPv6 Multicast)

In IPv4, Version 3 of IGMP adds support for "source filtering", that is, the ability for a system to report interest in receiving packets only from specific source addresses. I am using IGMPv3 in a ...
0
votes
1answer
440 views

How to join source specific multicast group in C# (IGMPv3)

We have a C# application that can join and receives data from a multicast group. This works well. We now want to support IGMPv3 and be able to specify the IP of the source when joining a multicast ...
0
votes
2answers
1k views

How to send an IP packet in Python?

I have sniffed an IGMP packet and now I would like to send it with the help of python. Is there any way to just send packet like 0x0000 01 00 5E 00 43 67 00 02-B3 C8 7F 44 81 00 00 DE ...
0
votes
3answers
332 views

Router Alert options on IGMPv2 packets

I'm trying to forge an IGMPv2 Membership Request packet and send it on a RAW socket. The RFC 3376 states: IGMP messages are encapsulated in IPv4 datagrams, with an IP protocol number of 2. Every ...
-1
votes
1answer
127 views

Sniffing IGMP messages on the local network

I'm trying to sniff all IGMP messages on the local network (for crazy reasons not to be discussed ;-)). I have some questions related to this, as I'm not really an IGMP/routing expert. Is it even ...