openhab/org.openhab.binding.zigbee

SLZB-06M does not connect

Closed this issue · 25 comments

Using SLZB-06M to connect to openhab does not work. It will say socket connection fail. Any way to support Ethernet connected devices?

Reply from vendor:

I can see that the communication between the SLZB-06 and openhab is working and packets are being forwarded but the requests that openhab is sending are incorrect.
SLZB-06 runs on koenk's z-stack firmware and it's designed to work with Z2M and ZHA, and it looks like some commands are different/missing in it so openhab won't work.
I also tested SLZB-06M here the situation is the same, communication starts but it seems that openhab is designed for the old version of ezsp and does not work with the new ones that are flashed into our coordinators.

Openhab Version: openHAB 4.1.1

It's an interesting device - I'd potentially be interested to look at supporting this, but I am not really sure what protocol it is using and don't have the device to test with so it's hard to support.

Currently is has EZSP firmware. It works well with Zigbee2MQTT using tcp://. I am willing to pay for purchase of the device.

I even tried to get https://github.com/darkxst/silabs-firmware-builder/tree/main/firmware_builds/slzb-06m to work. It does not connect.

As I mentioned, this looks like an interesting device and I'm happy to look at implementing it...

It's not the EZSP firmware specifically that Im concerned about, but more how it interfaces over ethernet as this is non-standard I guess. I saw from a look at their website today that they also have a configuration UI which could possibly also be implemented as an openHAB thing, but I'd need to get a device to test, and also find the interface definition, or possibly just read through the source which I found on GitHub would also work if there's no doc (I couldn't find any at least).

As I mentioned, this looks like an interesting device and I'm happy to look at implementing it...

It's not the EZSP firmware specifically that Im concerned about, but more how it interfaces over ethernet as this is non-standard I guess. I saw from a look at their website today that they also have a configuration UI which could possibly also be implemented as an openHAB thing, but I'd need to get a device to test, and also find the interface definition, or possibly just read through the source which I found on GitHub would also work if there's no doc (I couldn't find any at least).

The device works as a TCP server and acts as a UART-network bridge between the Zigbee chip and Z2M/ZHA or other software.
We can discuss sending a sample to you. Please write to info@smartlight.me

Any update on this?

The manufacturer have kindly sent me a unit and hopefully it will arrive in the next few days. Once it arrives I will take a look at implementing it for OH.

Following up to see how this is going.

I have received the device and done some initial testing with it using the USB and the library and it seems to work fine here. I need to test with OH - can you advise exactly how you define the tcp connection - is it just tcp://ip-address:port?

Also, I note that you tested this on OH4.1 - did you try OH 4.2 yet since the update for the latest EZSP was merged a couple of months back, but only into the 4.2 branch.

Yes, just tcp://ip-address:port. No issues with USB connection.

I haven't tried with 4.2 yet with IP connection.

Ok, thanks. It's interesting to note that it works ok for you on the USB as I understood from re-reading the comments above a week or so back that the issue was related to the version of EZSP which would mean that USB also doesn't work...

I will try and test with the TCP connection over the weekend.

Sorry about the confusion. From discussing with the developers I had impression, that the tcp did not work due to version issues.

Let me know if there is anything from my end I can test out.

Just a quick update on this...

I've implemented a new handler for the SLZB06. This has the advantage of tighter integration, and a better user experience (hopefully :)).

The new handler supports auto discovery through MDNS, and I'm looking to see if I can add information from the device as OH channels (eg the SLZB uptime, temperatures, etc).

@madhacker3kxl are you in a position to test this if I provide a JAR? It would be compiled against OH4.2 snapshot. In any case I'll try and get this linked here in the coming days.

That's excellent news!

Yes, I can test it later in the week.

@madhacker3kxl sorry - I've not had time over the past week or so to look at this too much. You can try this branch though if you want (and are able to compile the binding).

I think this works ok - discovery should work, polling of some of the info from the SLZB06 such as temperature should work, but I don't think I hooked up all the channels.

The thing I know I need to look at is the reconnection - if the network goes down, it doesn't seem to reconnect at the moment, which obviously is not good. Still, if you want to test, your feedback would be welcome.

If you can't compile the binding, let me know and I'll compile it - although I'd need to look at how to distribute as it can't be attached to an issue I think.

I was able to compile and connect! It took few attempts to get slzb connected due to serial buffer overruns.

image

I also added few devices and they seem to report just fine. One thing I noticed there wasn't a option to set up the baudrate.

Thanks.

I've not seen any "serial buffer overruns" here. Note that this isn't really "serial" and I should change this logging - it's network overruns (overruns of the receive buffer in the binding - it's received data from the SLZB06 but the binding hasn't processed it fast enough)... What are you running this on - I wonder if it's a "slow" computer? It might be worth enabling debug logging to better see what's happening there.

Regarding baud rate - why do you need to set this? The binding side shouldn't care - it just sends the data to the SLZB06 across the network - the baud rate from the ESP32 (the host) in the SLZB06 and the EFR (the zigbee processor) is set in the SLZB06 and doesn't really matter to the binding.

I can probably make this configurable in the binding as well, but it doesn't really matter to openhab.

I ran this in a Windows 10 VM (given only 4GB of ram, 4 cores) to test it out with clean Openhab 4.1.2. It only made that error initially and after everything was online, no more buffer error.

Regarding baud rate - why do you need to set this? The binding side shouldn't care - it just sends the data to the SLZB06 across the network - the baud rate from the ESP32 (the host) in the SLZB06 and the EFR (the zigbee processor) is set in the SLZB06 and doesn't really matter to the binding.

I was curious if it did anything in openhab. If am fine either way.

Thanks @madhacker3kxl. As a matter of interest, are you using the SLZB06 network connection with other software? I'm wondering if the device is buffering up a load of data after you disconnect one software, and then when OH connects, it blasts out it's buffer... Does this happen every time when starting the binding, or was it a once off? Of if you leave it unconnected for (say) 5 minutes, and then start the binding does that cause this?

I've not seen any unsolicited data come in after connection, but I'm running this on a relatively small test network. I could imagine that if you had sensors sending out reports, then the SLZB06 might be buffering the data received from the EFR32 while the network is down, and then if this is all sent quickly when the network comes back up, it could possibly swamp the buffer in the binding.

Or I might be completely wrong :) If this is repeatable, it would be useful to see a debug log if possible.

I am only using it with OH. It seems like it is one off.

I reinstalled the binding and added the devices again to get a debug log.

openhab> log:display
15:54:29.940 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from UNINITIALIZED to INITIALIZING
15:54:30.009 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@15a024e2[provider=null,keyStore=null,trustStore=null]
15:54:30.009 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@15a024e2[provider=null,keyStore=null,trustStore=null]
15:54:51.234 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from INITIALIZING to ONLINE
15:55:20.717 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:55:20.776 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"54.44","zb_temp":"51.81","uptime":1099,"socket_uptime":49693,"ram_usage":94,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:55:50.780 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:55:50.835 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"54.44","zb_temp":"51.32","uptime":1129,"socket_uptime":79754,"ram_usage":94,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:56:20.836 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:56:20.888 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.00","zb_temp":"52.96","uptime":1159,"socket_uptime":109808,"ram_usage":95,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:56:46.054 [DEBUG] [covery.Slzb06MDNSDiscoveryParticipant] - SLZB-06: Discovery getServiceType '_slzb-06._tcp.local.'
15:56:46.257 [DEBUG] [covery.Slzb06MDNSDiscoveryParticipant] - SLZB-06: Discovery getServiceType '_slzb-06._tcp.local.'
15:56:50.889 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:56:50.945 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.00","zb_temp":"53.23","uptime":1189,"socket_uptime":139864,"ram_usage":95,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:57:04.600 [INFO ] [gbee.discovery.ZigBeeDiscoveryService] - 00124B0022417813: Starting ZigBee device discovery
15:57:04.609 [INFO ] [ig.discovery.internal.PersistentInbox] - Added new thing 'zigbee:device:dbfbac350b:00124b0022417813' to inbox.
15:57:04.609 [INFO ] [openhab.event.InboxAddedEvent        ] - Discovery Result with UID 'zigbee:device:dbfbac350b:00124b0022417813' has been added.
15:57:20.947 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:57:21.002 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"54.08","uptime":1219,"socket_uptime":169920,"ram_usage":95,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:57:38.086 [INFO ] [openhab.event.InboxRemovedEvent      ] - Discovery Result with UID 'zigbee:device:dbfbac350b:00124b0022417813' has been removed.
15:57:38.093 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:device:dbfbac350b:00124b0022417813' changed from UNINITIALIZED to INITIALIZING
15:57:38.096 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:device:dbfbac350b:00124b0022417813' changed from INITIALIZING to UNKNOWN
15:57:38.461 [INFO ] [openhab.event.FirmwareStatusInfoEvent] - Firmware status of thing zigbee:device:dbfbac350b:00124b0022417813 changed to UNKNOWN.
15:57:48.277 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:device:dbfbac350b:00124b0022417813' changed from UNKNOWN to ONLINE
15:57:51.004 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:57:51.058 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"53.76","uptime":1250,"socket_uptime":199977,"ram_usage":95,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:58:21.060 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:58:21.117 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"53.49","uptime":1280,"socket_uptime":230035,"ram_usage":94,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:58:25.673 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from NULL to 83.264 °F
15:58:31.872 [INFO ] [openhab.event.ItemUpdatedEvent       ] - Item 'test_Temperature' has been updated.
15:58:31.883 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from NULL to 83.264 °F
15:58:36.186 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 83.264 °F to 83.138 °F
15:58:45.669 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 83.138 °F to 83.066 °F
15:58:51.119 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:58:51.175 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"56.11","zb_temp":"52.83","uptime":1310,"socket_uptime":260093,"ram_usage":94,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:59:05.700 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 83.066 °F to 82.706 °F
15:59:21.177 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:59:21.234 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"52.08","uptime":1340,"socket_uptime":290152,"ram_usage":95,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
15:59:45.771 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 82.706 °F to 82.508 °F
15:59:51.235 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
15:59:51.288 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"56.11","zb_temp":"52.26","uptime":1370,"socket_uptime":320207,"ram_usage":95,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:00:12.573 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from ONLINE to OFFLINE (COMMUNICATION_ERROR)
16:00:12.574 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:device:dbfbac350b:00124b0022417813' changed from ONLINE to OFFLINE (BRIDGE_OFFLINE)
16:00:13.574 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:00:13.575 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:00:13.576 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:00:19.369 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - SLZB06: Error in ReceiveThread: Connection reset
16:00:19.369 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - SLZB06: ReceiveThread closed
16:00:19.370 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Network port '192.168.8.10' closed.
16:00:19.370 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:00:19.371 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:00:19.371 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:00:19.371 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:00:19.371 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:00:19.372 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:00:19.377 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@391e7396[provider=null,keyStore=null,trustStore=null]
16:00:19.378 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@391e7396[provider=null,keyStore=null,trustStore=null]
16:00:19.378 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:00:19.379 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:00:20.439 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:00:20.442 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Network port [192.168.8.10] is initialized.
16:00:20.444 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - SLZB06: ReceiveThread started
16:00:21.290 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:00:21.344 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"51.96","uptime":10,"socket_uptime":863,"ram_usage":87,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:00:35.455 [INFO ] [gbee.discovery.ZigBeeDiscoveryService] - 00124B0022417813: Starting ZigBee device discovery
16:00:36.200 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to ONLINE
16:00:51.345 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:00:51.399 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"54.32","uptime":40,"socket_uptime":30918,"ram_usage":96,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:01:21.401 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:01:21.453 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"53.98","uptime":70,"socket_uptime":60972,"ram_usage":96,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:01:31.321 [INFO ] [gbee.discovery.ZigBeeDiscoveryService] - 00124B0022417813: Starting ZigBee device discovery
16:01:51.454 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:01:51.507 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"51.93","uptime":100,"socket_uptime":91026,"ram_usage":96,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:02:21.510 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:02:21.563 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"55.56","zb_temp":"52.58","uptime":130,"socket_uptime":121082,"ram_usage":96,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}

Disconnected the network waited ~5min and connected it again

openhab> log:display
16:07:42.104 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:07:42.105 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:07:42.105 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:07:42.105 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:07:42.105 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:07:42.110 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@796bcbcc[provider=null,keyStore=null,trustStore=null]
16:07:42.110 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@796bcbcc[provider=null,keyStore=null,trustStore=null]
16:07:42.110 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:07:42.111 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:07:43.120 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:07:43.130 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:07:43.130 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:07:43.130 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:07:43.131 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:07:43.131 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:07:48.132 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:07:48.132 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:07:48.133 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:07:48.142 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:07:48.143 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:07:48.143 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:07:48.143 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:07:48.143 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:07:48.143 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:07:48.147 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@6957a68f[provider=null,keyStore=null,trustStore=null]
16:07:48.148 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@6957a68f[provider=null,keyStore=null,trustStore=null]
16:07:48.148 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:07:48.148 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:07:49.157 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:07:49.158 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:07:49.158 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:07:49.158 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:07:49.158 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:07:49.159 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:07:51.774 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:07:51.778 [WARN ] [lzb06.internal.api.Slzb06Communicator] - Could not connect to SLZB06 with exception:
java.util.concurrent.ExecutionException: java.net.NoRouteToHostException: No route to host: getsockopt
        at org.eclipse.jetty.client.util.FutureResponseListener.getResult(FutureResponseListener.java:118) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.util.FutureResponseListener.get(FutureResponseListener.java:101) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.HttpRequest.send(HttpRequest.java:732) ~[bundleFile:9.4.52.v20230823]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.sendGet(Slzb06Communicator.java:109) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.getSensors(Slzb06Communicator.java:95) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.handler.Slzb06Handler$1.run(Slzb06Handler.java:166) [bundleFile:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?]
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) [?:?]
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
        at java.lang.Thread.run(Thread.java:840) [?:?]
Caused by: java.net.NoRouteToHostException: No route to host: getsockopt
        at sun.nio.ch.Net.pollConnect(Native Method) ~[?:?]
        at sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[?:?]
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) ~[?:?]
        at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:355) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:347) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.access$1700(ManagedSelector.java:65) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processSelected(ManagedSelector.java:676) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:535) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:362) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:186) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:137) ~[?:?]
        ... 3 more
16:07:51.779 [ERROR] [g.zigbee.slzb06.handler.Slzb06Handler] - SLZB06: retreiving API information: Could not connect to SLZB06 with exception: java.net.NoRouteToHostException: No route to host: getsockopt
16:07:54.159 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:07:54.159 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:07:54.160 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:07:54.173 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:07:54.173 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:07:54.173 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:07:54.174 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:07:54.174 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:07:54.174 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:07:54.180 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@747b3a4f[provider=null,keyStore=null,trustStore=null]
16:07:54.180 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@747b3a4f[provider=null,keyStore=null,trustStore=null]
16:07:54.180 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:07:54.181 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:07:55.192 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:07:55.194 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:07:55.194 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:07:55.194 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:07:55.194 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:07:55.195 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:00.195 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:00.196 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:00.196 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:00.202 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:00.202 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:00.202 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:00.202 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:00.203 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:00.203 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:00.207 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@a593eaf[provider=null,keyStore=null,trustStore=null]
16:08:00.207 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@a593eaf[provider=null,keyStore=null,trustStore=null]
16:08:00.208 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:00.208 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:01.221 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:01.231 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:01.231 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:01.232 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:01.232 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:01.233 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:06.234 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:06.234 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:06.235 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:06.248 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:06.248 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:06.248 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:06.249 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:06.249 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:06.249 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:06.256 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@2eaa5049[provider=null,keyStore=null,trustStore=null]
16:08:06.257 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@2eaa5049[provider=null,keyStore=null,trustStore=null]
16:08:06.257 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:06.258 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:07.267 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:07.267 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:07.268 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:07.268 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:07.268 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:07.268 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:12.270 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:12.270 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:12.270 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:12.279 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:12.279 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:12.280 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:12.280 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:12.280 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:12.280 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:12.284 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@cee290b[provider=null,keyStore=null,trustStore=null]
16:08:12.284 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@cee290b[provider=null,keyStore=null,trustStore=null]
16:08:12.285 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:12.285 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:13.301 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:13.302 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:13.302 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:13.303 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:13.304 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:13.304 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:18.305 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:18.305 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:18.305 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:18.312 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:18.312 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:18.312 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:18.312 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:18.312 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:18.312 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:18.317 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@21688add[provider=null,keyStore=null,trustStore=null]
16:08:18.317 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@21688add[provider=null,keyStore=null,trustStore=null]
16:08:18.317 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:18.317 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:19.334 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:19.335 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:19.335 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:19.336 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:19.336 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:19.336 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:21.782 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:08:21.785 [WARN ] [lzb06.internal.api.Slzb06Communicator] - Could not connect to SLZB06 with exception:
java.util.concurrent.ExecutionException: java.net.NoRouteToHostException: No route to host: getsockopt
        at org.eclipse.jetty.client.util.FutureResponseListener.getResult(FutureResponseListener.java:118) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.util.FutureResponseListener.get(FutureResponseListener.java:101) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.HttpRequest.send(HttpRequest.java:732) ~[bundleFile:9.4.52.v20230823]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.sendGet(Slzb06Communicator.java:109) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.getSensors(Slzb06Communicator.java:95) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.handler.Slzb06Handler$1.run(Slzb06Handler.java:166) [bundleFile:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?]
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) [?:?]
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
        at java.lang.Thread.run(Thread.java:840) [?:?]
Caused by: java.net.NoRouteToHostException: No route to host: getsockopt
        at sun.nio.ch.Net.pollConnect(Native Method) ~[?:?]
        at sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[?:?]
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) ~[?:?]
        at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:355) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:347) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.access$1700(ManagedSelector.java:65) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processSelected(ManagedSelector.java:676) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:535) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:362) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:186) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:137) ~[?:?]
        ... 3 more
16:08:21.787 [ERROR] [g.zigbee.slzb06.handler.Slzb06Handler] - SLZB06: retreiving API information: Could not connect to SLZB06 with exception: java.net.NoRouteToHostException: No route to host: getsockopt
16:08:24.337 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:24.337 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:24.337 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:24.344 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:24.344 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:24.346 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:24.346 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:24.346 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:24.346 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:24.351 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@5a5f227[provider=null,keyStore=null,trustStore=null]
16:08:24.352 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@5a5f227[provider=null,keyStore=null,trustStore=null]
16:08:24.352 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:24.352 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:25.360 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:25.372 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:25.372 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:25.372 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:25.372 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:25.372 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:30.374 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:30.375 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:30.375 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:30.386 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:30.387 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:30.387 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:30.387 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:30.387 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:30.387 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:30.392 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@748eb84c[provider=null,keyStore=null,trustStore=null]
16:08:30.392 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@748eb84c[provider=null,keyStore=null,trustStore=null]
16:08:30.393 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:30.393 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:31.406 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:31.407 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:31.407 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:31.407 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:31.407 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:31.407 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:36.408 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:36.409 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:36.409 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:36.421 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:36.422 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:36.422 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:36.422 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:36.424 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:36.424 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:36.430 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@a60a0ef[provider=null,keyStore=null,trustStore=null]
16:08:36.430 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@a60a0ef[provider=null,keyStore=null,trustStore=null]
16:08:36.431 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:36.431 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:37.448 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:37.449 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:37.449 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:37.450 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:37.450 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:37.451 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:42.451 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:42.452 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:42.452 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:42.464 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:42.464 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:42.464 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:42.464 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:42.465 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:42.465 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:42.471 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@14a55436[provider=null,keyStore=null,trustStore=null]
16:08:42.471 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@14a55436[provider=null,keyStore=null,trustStore=null]
16:08:42.472 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:42.472 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:43.481 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:43.491 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:43.491 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:43.491 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:43.492 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:43.492 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:48.493 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:48.494 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:48.494 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:48.506 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:48.507 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:48.507 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:48.507 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:48.507 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:48.507 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:48.514 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@7b647cbb[provider=null,keyStore=null,trustStore=null]
16:08:48.514 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@7b647cbb[provider=null,keyStore=null,trustStore=null]
16:08:48.515 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:48.515 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:49.522 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:49.533 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:49.533 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:49.534 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:49.534 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:49.534 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:08:51.787 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:08:51.791 [WARN ] [lzb06.internal.api.Slzb06Communicator] - Could not connect to SLZB06 with exception:
java.util.concurrent.ExecutionException: java.net.NoRouteToHostException: No route to host: getsockopt
        at org.eclipse.jetty.client.util.FutureResponseListener.getResult(FutureResponseListener.java:118) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.util.FutureResponseListener.get(FutureResponseListener.java:101) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.HttpRequest.send(HttpRequest.java:732) ~[bundleFile:9.4.52.v20230823]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.sendGet(Slzb06Communicator.java:109) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.getSensors(Slzb06Communicator.java:95) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.handler.Slzb06Handler$1.run(Slzb06Handler.java:166) [bundleFile:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?]
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) [?:?]
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
        at java.lang.Thread.run(Thread.java:840) [?:?]
Caused by: java.net.NoRouteToHostException: No route to host: getsockopt
        at sun.nio.ch.Net.pollConnect(Native Method) ~[?:?]
        at sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[?:?]
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) ~[?:?]
        at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:355) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:347) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.access$1700(ManagedSelector.java:65) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processSelected(ManagedSelector.java:676) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:535) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:362) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:186) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:137) ~[?:?]
        ... 3 more
16:08:51.793 [ERROR] [g.zigbee.slzb06.handler.Slzb06Handler] - SLZB06: retreiving API information: Could not connect to SLZB06 with exception: java.net.NoRouteToHostException: No route to host: getsockopt
16:08:54.536 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:08:54.536 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:08:54.536 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:08:54.545 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:08:54.545 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:08:54.545 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:08:54.545 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:08:54.546 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:08:54.546 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:08:54.550 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@5019a70b[provider=null,keyStore=null,trustStore=null]
16:08:54.550 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@5019a70b[provider=null,keyStore=null,trustStore=null]
16:08:54.550 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:08:54.551 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:08:55.561 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:08:55.572 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:08:55.572 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:08:55.574 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:08:55.574 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:08:55.574 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:00.575 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:00.576 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:00.576 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:00.590 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:00.590 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:00.590 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:00.592 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:00.592 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:00.592 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:00.598 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@503cba18[provider=null,keyStore=null,trustStore=null]
16:09:00.598 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@503cba18[provider=null,keyStore=null,trustStore=null]
16:09:00.598 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:00.598 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:01.606 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:01.618 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:01.618 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:01.618 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:01.618 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:01.618 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:06.620 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:06.620 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:06.620 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:06.627 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:06.627 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:06.627 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:06.627 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:06.627 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:06.627 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:06.632 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@5adc70da[provider=null,keyStore=null,trustStore=null]
16:09:06.632 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@5adc70da[provider=null,keyStore=null,trustStore=null]
16:09:06.632 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:06.632 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:07.640 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:07.651 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:07.651 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:07.652 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:07.652 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:07.652 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:12.653 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:12.653 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:12.653 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:12.663 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:12.663 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:12.663 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:12.663 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:12.664 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:12.664 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:12.668 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@1f9d5d19[provider=null,keyStore=null,trustStore=null]
16:09:12.668 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@1f9d5d19[provider=null,keyStore=null,trustStore=null]
16:09:12.669 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:12.669 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:13.683 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:13.694 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:13.694 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:13.695 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:13.695 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:13.695 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:18.696 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:18.696 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:18.696 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:18.702 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:18.702 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:18.702 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:18.702 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:18.702 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:18.702 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:18.708 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@6146ad46[provider=null,keyStore=null,trustStore=null]
16:09:18.708 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@6146ad46[provider=null,keyStore=null,trustStore=null]
16:09:18.708 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:18.709 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:19.719 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:19.720 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:19.720 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:19.720 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:19.720 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:19.722 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:21.794 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:09:21.796 [WARN ] [lzb06.internal.api.Slzb06Communicator] - Could not connect to SLZB06 with exception:
java.util.concurrent.ExecutionException: java.net.NoRouteToHostException: No route to host: getsockopt
        at org.eclipse.jetty.client.util.FutureResponseListener.getResult(FutureResponseListener.java:118) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.util.FutureResponseListener.get(FutureResponseListener.java:101) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.HttpRequest.send(HttpRequest.java:732) ~[bundleFile:9.4.52.v20230823]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.sendGet(Slzb06Communicator.java:109) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.getSensors(Slzb06Communicator.java:95) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.handler.Slzb06Handler$1.run(Slzb06Handler.java:166) [bundleFile:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?]
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) [?:?]
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
        at java.lang.Thread.run(Thread.java:840) [?:?]
Caused by: java.net.NoRouteToHostException: No route to host: getsockopt
        at sun.nio.ch.Net.pollConnect(Native Method) ~[?:?]
        at sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[?:?]
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) ~[?:?]
        at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:355) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:347) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.access$1700(ManagedSelector.java:65) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processSelected(ManagedSelector.java:676) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:535) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:362) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:186) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:137) ~[?:?]
        ... 3 more
16:09:21.796 [ERROR] [g.zigbee.slzb06.handler.Slzb06Handler] - SLZB06: retreiving API information: Could not connect to SLZB06 with exception: java.net.NoRouteToHostException: No route to host: getsockopt
16:09:24.722 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:24.722 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:24.722 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:24.729 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:24.729 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:24.729 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:24.729 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:24.729 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:24.729 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:24.734 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@ff2e5f3[provider=null,keyStore=null,trustStore=null]
16:09:24.734 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@ff2e5f3[provider=null,keyStore=null,trustStore=null]
16:09:24.734 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:24.734 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:25.742 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:25.743 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:25.743 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:25.743 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:25.745 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:25.745 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:30.746 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:30.746 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:30.746 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:30.752 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:30.753 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:30.753 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:30.753 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:30.753 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:30.753 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:30.758 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@3714854[provider=null,keyStore=null,trustStore=null]
16:09:30.758 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@3714854[provider=null,keyStore=null,trustStore=null]
16:09:30.758 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:30.758 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:31.768 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:31.770 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:31.770 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:31.771 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:31.771 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:31.771 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:36.771 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:36.771 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:36.771 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:36.778 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:36.778 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:36.779 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:36.779 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:36.779 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:36.779 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:36.783 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@88244d7[provider=null,keyStore=null,trustStore=null]
16:09:36.783 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@88244d7[provider=null,keyStore=null,trustStore=null]
16:09:36.784 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:36.784 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:37.796 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:37.796 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:37.796 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:37.798 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:37.798 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:37.799 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:42.800 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:42.800 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:42.800 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:42.806 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:42.807 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:42.807 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:42.807 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:42.807 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:42.807 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:42.811 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@6f701885[provider=null,keyStore=null,trustStore=null]
16:09:42.811 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@6f701885[provider=null,keyStore=null,trustStore=null]
16:09:42.812 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:42.812 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:43.819 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:43.830 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:43.830 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:43.830 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:43.830 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:43.830 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:48.838 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:48.838 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:48.838 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:48.838 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@7c424f8a[provider=null,keyStore=null,trustStore=null]
16:09:48.838 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@7c424f8a[provider=null,keyStore=null,trustStore=null]
16:09:48.838 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:48.838 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:49.858 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:49.874 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:49.874 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:49.875 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:49.875 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:49.875 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:09:51.800 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:09:51.800 [WARN ] [lzb06.internal.api.Slzb06Communicator] - Could not connect to SLZB06 with exception:
java.util.concurrent.ExecutionException: java.net.NoRouteToHostException: No route to host: getsockopt
        at org.eclipse.jetty.client.util.FutureResponseListener.getResult(FutureResponseListener.java:118) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.util.FutureResponseListener.get(FutureResponseListener.java:101) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.client.HttpRequest.send(HttpRequest.java:732) ~[bundleFile:9.4.52.v20230823]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.sendGet(Slzb06Communicator.java:109) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.internal.api.Slzb06Communicator.getSensors(Slzb06Communicator.java:95) [bundleFile:?]
        at org.openhab.binding.zigbee.slzb06.handler.Slzb06Handler$1.run(Slzb06Handler.java:166) [bundleFile:?]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) [?:?]
        at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) [?:?]
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
        at java.lang.Thread.run(Thread.java:840) [?:?]
Caused by: java.net.NoRouteToHostException: No route to host: getsockopt
        at sun.nio.ch.Net.pollConnect(Native Method) ~[?:?]
        at sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[?:?]
        at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) ~[?:?]
        at org.eclipse.jetty.io.SelectorManager.doFinishConnect(SelectorManager.java:355) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.processConnect(ManagedSelector.java:347) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector.access$1700(ManagedSelector.java:65) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.processSelected(ManagedSelector.java:676) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.io.ManagedSelector$SelectorProducer.produce(ManagedSelector.java:535) ~[bundleFile:9.4.52.v20230823]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produceTask(EatWhatYouKill.java:362) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:186) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173) ~[?:?]
        at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.produce(EatWhatYouKill.java:137) ~[?:?]
        ... 3 more
16:09:51.800 [ERROR] [g.zigbee.slzb06.handler.Slzb06Handler] - SLZB06: retreiving API information: Could not connect to SLZB06 with exception: java.net.NoRouteToHostException: No route to host: getsockopt
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:09:54.887 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:09:54.887 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:09:54.887 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:09:54.887 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@fc93d9b[provider=null,keyStore=null,trustStore=null]
16:09:54.887 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@fc93d9b[provider=null,keyStore=null,trustStore=null]
16:09:54.887 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:09:54.887 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:09:55.910 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:09:55.910 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:09:55.918 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:09:55.920 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:09:55.922 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:09:55.922 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:10:00.924 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:10:00.924 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:10:00.924 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:10:00.924 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@60c061e6[provider=null,keyStore=null,trustStore=null]
16:10:00.924 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@60c061e6[provider=null,keyStore=null,trustStore=null]
16:10:00.924 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:10:00.924 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:10:01.949 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:10:01.949 [ERROR] [bee.slzb06.internal.Slzb06NetworkPort] - Network Error: Device cannot be opened on [192.168.8.10:2003]. Caused by No route to host: getsockopt, call stack: java.net.NoRouteToHostException: No route to host: getsockopt
        at java.base/sun.nio.ch.Net.pollConnect(Native Method)
        at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
        at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
        at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
        at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
        at java.base/java.net.Socket.connect(Socket.java:639)
        at org.openhab.binding.zigbee.slzb06.internal.Slzb06NetworkPort.open(Slzb06NetworkPort.java:120)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialiseEzspProtocol(ZigBeeDongleEzsp.java:1289)
        at com.zsmartsystems.zigbee.dongle.ember.ZigBeeDongleEzsp.initialize(ZigBeeDongleEzsp.java:432)
        at com.zsmartsystems.zigbee.ZigBeeNetworkManager.initialize(ZigBeeNetworkManager.java:418)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.initialiseZigBee(ZigBeeCoordinatorHandler.java:431)
        at org.openhab.binding.zigbee.handler.ZigBeeCoordinatorHandler.lambda$2(ZigBeeCoordinatorHandler.java:557)
        at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539)
        at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
        at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
        at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
        at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
        at java.base/java.lang.Thread.run(Thread.java:840)

16:10:01.949 [ERROR] [.zigbee.dongle.ember.ZigBeeDongleEzsp] - EZSP Dongle: Unable to open serial port
16:10:01.958 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Already running!
16:10:01.958 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to OFFLINE: Failed to open communications port
16:10:01.958 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE: Failed to open communications port to OFFLINE (COMMUNICATION_ERROR)
16:10:06.961 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. Reinitializing ZigBee
16:10:06.961 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 0
16:10:06.962 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 1
16:10:06.972 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 2
16:10:06.972 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 3
16:10:06.972 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 4
16:10:06.972 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - Initializing ZigBee SLZB06 network bridge handler.
16:10:06.973 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 Coordinator opening Port:'192.168.8.10:2003' PAN:84d9, EPAN:66DCF2BE80D4CD5C, Channel:11
16:10:06.973 [DEBUG] [g.zigbee.slzb06.handler.Slzb06Handler] - ZigBee SLZB06 end device poll timeout set to (169 * 2^9) = 86528 seconds
16:10:06.978 [WARN ] [tty.util.ssl.SslContextFactory.config] - Trusting all certificates configured for Client@52ad3a02[provider=null,keyStore=null,trustStore=null]
16:10:06.978 [WARN ] [tty.util.ssl.SslContextFactory.config] - No Client EndPointIdentificationAlgorithm configured for Client@52ad3a02[provider=null,keyStore=null,trustStore=null]
16:10:06.978 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 communicator created for 192.168.8.10
16:10:06.979 [INFO ] [gbee.handler.ZigBeeCoordinatorHandler] - ZigBee dongle inactivity timer. 5
16:10:07.995 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Connecting to network port [192.168.8.10:2003]
16:10:08.004 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - Network port [192.168.8.10] is initialized.
16:10:08.006 [DEBUG] [bee.slzb06.internal.Slzb06NetworkPort] - SLZB06: ReceiveThread started
16:10:21.805 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:10:21.862 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"56.67","zb_temp":"52.78","uptime":610,"socket_uptime":601379,"ram_usage":98,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:10:34.712 [INFO ] [gbee.discovery.ZigBeeDiscoveryService] - 00124B0022417813: Starting ZigBee device discovery
16:10:35.956 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:coordinator_slzb06:dbfbac350b' changed from OFFLINE (COMMUNICATION_ERROR) to ONLINE
16:10:51.863 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:10:51.918 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"57.22","zb_temp":"54.44","uptime":640,"socket_uptime":631436,"ram_usage":98,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:11:21.920 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:11:21.974 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"57.22","zb_temp":"55.73","uptime":670,"socket_uptime":661492,"ram_usage":98,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:11:44.997 [INFO ] [gbee.discovery.ZigBeeDiscoveryService] - 00124B0022417813: Starting ZigBee device discovery
16:11:51.975 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:11:52.029 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"57.22","zb_temp":"55.94","uptime":701,"socket_uptime":691546,"ram_usage":97,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}
16:12:16.290 [INFO ] [hab.event.ThingStatusInfoChangedEvent] - Thing 'zigbee:device:dbfbac350b:00124b0022417813' changed from OFFLINE (BRIDGE_OFFLINE) to ONLINE
16:12:16.295 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 82.004 °F to 80.636 °F
16:12:16.301 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 80.636 °F to 80.438 °F
16:12:16.301 [INFO ] [openhab.event.ItemStateChangedEvent  ] - Item 'test_Temperature' changed from 80.438 °F to 80.636 °F
16:12:22.030 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 request: http://192.168.8.10/ha_sensors
16:12:22.085 [DEBUG] [lzb06.internal.api.Slzb06Communicator] - SLZB06 response: {"Sensors":{"esp32_temp":"57.22","zb_temp":"53.99","uptime":731,"socket_uptime":721600,"ram_usage":97,"fs_used":244,"ethernet":true,"wifi_connected":false,"wifi_status":255,"disable_leds":false,"night_mode":false,"auto_zigbee":false}}

The buffer overrun never appeared again. I dont believe there is any buffer in this device as my other setup is with Zigbee2mqtt and after the service is off for a while, it only gets the latest informaion.

Is the port 2003 correct? It's (I think) not the standard. I'm just wondering why the error here is that there's no route - clearly the SLZB is working and there's a route since the sensor data is being received ok... That said, the socket_uptime is not zero which (I think) means there's already a connection to the socket, and this might be preventing another connection. I would assume that the SLZB closes connections after some time if it's broken.

I apologize for not telling my setup. Yes, I set the port to be 2003. The log above is from disconnect (16:07:42.104) to reconnect. 16:10:06.972 is the time when I connected OH back to the network.

OH connected moments after the network came back online.

Ok, thanks. So if it's connecting after the network is back up, that all sounds like it's working ok. I also noted in your log that the periodic reconnection seems to be working ok which is something that I thought wasn't working properly for me. I'll take another look at that when I get a chance (probably next week), but it's encouraging that it looks to be working in your system.

Anyway, please let me know if you have any problems, queries, or ideas for improvement.

@madhacker3kxl I just wanted to know how this is working for you? I've been using this now on my system for the past few weeks and have had no problems at all.

So far, I have not had any issues, that I noticed anyways. I am still running the branch I compiled 3 weeks ago. Can't wait till Openhab v4.2 to come out! As always, many thanks!

Great - thanks for the feedback. I've not made any significant changes to the SLZB-06 branch since you compiled your version so I think we're good. I'll look to get this merged soon so you can test with an official build if you want and it will then be available for 4.2.