AW: Problem receiving multicast/promiscuous-mode with kernel.2.6.24

2008-02-19 Thread Reither Robert
Visit AVD on prolight+sound in Frankfurt from 12.-15. March 2008 - Hall 8.0, Stand G16 Hi, ok, i managed to shrink down my code to show the behaviour in small size ;-) It shows the same effect as my app, sometimes i get

Re: AW: Problem receiving multicast/promiscuous-mode with kernel.2.6.24

2008-02-11 Thread David Stevens
Another relevant piece of information is what the socket is bound to; "netstat -au" will tell you if you're bound to an address that will match the incoming multicast packets. If you suspect that the VLAN device is the problem, then it'd be a good idea to try it on ordinary ethernet. Re: imr_ifin

AW: Problem receiving multicast/promiscuous-mode with kernel.2.6.24

2008-02-11 Thread Reither Robert
Visit AVD on prolight+sound in Frankfurt from 12.-15. March 2008 - Hall 8.0, Stand G16 OK, after some more testing, things become clearer ... joining eth0.3 gives this strange unreliable behaviour... Joining eth0 , and

AW: Problem receiving multicast/promiscuous-mode with kernel.2.6.24

2008-02-11 Thread Reither Robert
endet: Donnerstag, 07. Februar 2008 17:09 An: Reither Robert Cc: netdev@vger.kernel.org Betreff: Re: Problem receiving multicast/promiscuous-mode with kernel.2.6.24 You need to join the multicast group on the interface you want to receive it. If you're setting both imr_address and imr_index to 0,

Re: Problem receiving multicast/promiscuous-mode with kernel.2.6.24

2008-02-07 Thread David Stevens
You need to join the multicast group on the interface you want to receive it. If you're setting both imr_address and imr_index to 0, you haven't specified an interface. Instead of setting imr_ifindex to 0, try setting it like this: imr.imr_ifindex = if_nametoindex("eth0"); (or whatever interfac

Problem receiving multicast/promiscuous-mode with kernel.2.6.24

2008-02-07 Thread Reither Robert
Visit AVD on prolight+sound in Frankfurt from 12.-15. March 2008 - Hall 8.0, Stand G16 Hi, i'm working on a realtime-audio application, which should be capeable to receive RTP packets via multicast addresses. App did wo