When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. If several independent instances of my application are in use on the same network, they could each use their own multicast address - but if they don't, they will be able to coexist anyway, they'll just have a small amount of overhead ignoring each others' packets. My packets already contain a "magic number" to avoid problems

  3. What does it mean to bind a multicast (UDP) socket?

    stackoverflow.com/questions/10692956

    The "join multicast group" operation (IP_ADD_MEMBERSHIP) is needed because it basically tells your network adapter to listen not only for ethernet frames where the destination MAC address is your own, it also tells the ethernet adapter to listen for IP multicast traffic as well for the corresponding multicast ethernet address. Each multicast IP ...

  4. Wireshark: Filter by Multicast in GUI - Stack Overflow

    stackoverflow.com/questions/11400046

    Since a multicast address begins "1110" (128+64+32+0 = 224), a packet sent to a an IP address beginning 1110 is destined for a multicast address. Therefor, a packet matching the mask 224.0.0.0/4 is destined for a multicast address. This display filter should therefor filter packets to multicast addresses only: ip.dst==224.0.0.0/4

  5. 13. I am trying to get some simple UDP communication working on my local network. All i want to do is do a multicast to all machines on the network. Here is my sending code. public void SendMessage(string message) var data = Encoding.Default.GetBytes(message); using (var udpClient = new UdpClient(AddressFamily.InterNetwork))

  6. Binding to your multicast address will prevent this and ensure you only get multicast packets on that port. EDIT: Fixed the code based on above comment, binding to multicast address, stored in 'group', as opposed to INADDR_ANY to receive only multicast packets sent to multicast address. addr.sin_family = AF_INET;

  7. 1 Answer. Sorted by: 19. If I remember correctly it's something like. netsh interface ip show joins. in the DOS prompt to see what multicast groups are being listened to. answered Nov 17, 2010 at 18:05. Nikolai Fetissov. 83.9k 13 117 173.

  8. Windows handles it just fine, but on Linux systems the multicast packets weren't received by the app. I had to remove the feature in the next release. Note that you are allowed to bind directly to the multicast address: addr.sin_addr.s_addr = inet_addr(group); In this case, you'll receive traffic only for that multicast address on that socket.

  9. I'm trying to view traffic transmitted to a specific multicast address on a network in order to analyze a protocol we're using. I don't have Wireshark available on the setup (unfortunately). TCPDump is available though. So, can anyone show me a command have TCPDump filter to only view messages transmitted to a secific multicast group address?

  10. After this multicast IP address is added to specific network (on image added to Wi-Fi) I tried to play it on LAN card. Video can't be played anymore. I checked Wireshark and packets are coming to LAN device but video can't be played. My question is how to remove joined multicast from a specific network adapter? I tried . route delete 225.1.2.3

  11. How do you UDP multicast in Python? - Stack Overflow

    stackoverflow.com/questions/603852

    sample usage: # assume the receiver binds to the below multicast group address and that some program requests to join that group. And to simplify the case, assume the receiver and the sender are under the same subnet. python3 multicast_send.py --mcast-group '224.1.1.2' python3 multicast_send.py --mcast-group '224.1.1.4'