I'm trying to send a UDP broadcast on IP address "255.255.255.255" for device discovery in my network. The program executes, but I don't see anything in Wireshark. when I'm changing the IP address to a known IP in my network, I can see the packets in Wireshark. what's going on ?

This is my code:

public static void main(String args[]) throws Exception
{
    String Broadcastaddress = new String("255.255.255.255");
    int port = 9876;
    DatagramSocket serverSocket = new DatagramSocket();
    serverSocket.setBroadcast(true);
    InetAddress IPAddress = InetAddress.getByName(Broadcastaddress);
    System.out.println("Sending Discovery message to " + IPAddress + "Via UDP port " + port);

    byte[] sendData = new byte[4];
    sendData[0] = 'F';
    sendData[1] = 'I';
    sendData[2] = 'N';
    sendData[3] = 'D';

    DatagramPacket sendPacket = new DatagramPacket(sendData,sendData.length,IPAddress,port);

    while (true)
    {
        serverSocket.send(sendPacket);
        System.out.println("Packet sent");
    }


}
link|improve this question

70% accept rate
feedback

2 Answers

Try a broadcast on the local subnet only. IE if your subnet is 255.255.255.0 try a broadcast of 172.16.75.255. It may be that windows, a router or even network card automatically block universal broadcasts as a preventative measure.

link|improve this answer
I tried that, this actually works, but I need to write a software that needs to work on every subnet it will be put on... I removed the windows firewall and it didn't work, so I guess the only possible explanation is that it's a router or a network card problem... – Mellowcandle Sep 20 '11 at 8:20
How about using something like this: oser.org/~hp/ds/node27.html I think you will have more luck with getting this on any router. – Roel Van Nyen Sep 20 '11 at 8:24
This will not work, the device is defined to listen to 255.255.255.255 for discovery, I can't change it, it's firmware... I must broadcast to that address. you suggested to use multicast, where the clients register with the server, it's not possible to do it here. – Mellowcandle Sep 20 '11 at 8:35
1  
The purpose of broadcast is to only send on the same subnet. Even if you get the PC to send it, the router would have to be configured to forward the broadcast. The device can listen to anything, but it has to be on the same subnet to get a broadcast. – Peter Lawrey Sep 20 '11 at 8:39
I know now for sure that it used to work on Windows XP, and apparently it's not working on Windows 7... – Mellowcandle Sep 22 '11 at 15:33
feedback
up vote 0 down vote accepted

OK, I found an answer. Windows 7 doesn't support 255.255.255.255 broadcasts anymore, apparently it was an opening to various threats. To broadcast, one needs to use a different approach.

This is a small explenation from Wikipedia:

The broadcast address for an IPv4 host can be obtained by performing a bitwise logical OR operation between the bit complement of the subnet mask and the host's IP address. Example: to broadcast a packet to an entire IPv4 subnet using the private IP address space 100.16.0.0/12, which has the subnet mask 255.240.0.0, the broadcast address is: 100.16.0.0 | 0.15.255.255 = 100.31.255.255.

A special definition exists for the IP broadcast address 255.255.255.255. It is the broadcast address of the zero network or 0.0.0.0, which in Internet Protocol standards stands for this network, i.e. the local network. Transmission to this address is limited by definition, in that it is never forwarded by the routers connecting the local network to the Internet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.