Wyświetl listę urządzeń w sieci lokalnej za pomocą polecenia ping

Próbuję utworzyć funkcję, która wyświetla listę wszystkich podłączonych urządzeń w sieci lokalnej. To, co robię, to pingowanie dowolnego adresu z adresu x.x.x.0 do x.x.x.255, ale nie działa poprawnie. Czy ktoś mógłby jakoś wyjaśnić lub rozszerzyć mój kod? Otrzymuję odpowiedź z telefonu (10.0.0.17) i bramy domyślnej (10.0.0.138). Ten ostatni nie powinien nawet istnieć (nie wiem, co to jest brama domyślna, ale zignoruj ​​ją). Brakuje mi adresu IP z tego komputera.

public ArrayList<InetAddress> getConnectedDevices(String YourPhoneIPAddress) {
    ArrayList<InetAddress> ret = new ArrayList<InetAddress>();

    LoopCurrentIP = 0;

    //        String IPAddress = "";
    String[] myIPArray = YourPhoneIPAddress.split("\\.");
    InetAddress currentPingAddr;

    for (int i = 0; i <= 255; i++) {
        try {

            // build the next IP address
            currentPingAddr = InetAddress.getByName(myIPArray[0] + "." +
                    myIPArray[1] + "." +
                    myIPArray[2] + "." +
                    Integer.toString(LoopCurrentIP));

            // 50ms Timeout for the "ping"
            if (currentPingAddr.isReachable(50)) {
                if(currentPingAddr.getHostAddress() != YourPhoneIPAddress){
                    ret.add(currentPingAddr);

                }
            }
        } catch (UnknownHostException ex) {
        } catch (IOException ex) {
        }

        LoopCurrentIP++;
    }
    return ret;
}

questionAnswers(1)

yourAnswerToTheQuestion