Bluefox
Bluefox
You can install different instances and set the timeouts separatly
How many devices IDs do you have?
It is possible with: ``` sendTo('ping.0', 'ping', '192.168.1.1', (res) => { console.log('Result: ' + JSON.stringify(res)); // Result: {"result": {"host": "192.168.1.1", "alive": true, "ms": 250}} }); ```
should be fixed by https://github.com/ioBroker/adapter-react-v5/blob/main/schemas/jsonConfig.json#L4865
This command `hping3 -2 -c 10 -p 5353 -i u1 192.168.1.1` tries to send UDP packet to port 5353 and waits for 1 millisecond for answer. 10 times retry
It could be implemented (only TCP, because UDP may just not answer) when node.js opens TCP socket and closes it immediately after handshake or after timeout. No hping3 required
Fixed in 7.0.18 admin
Yes. > This should be fixed in 1.1.0? Try 1.1.2
Implemented in next version
Fixed. But the data must be synchronized again 