Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Gen 2 HTTP communication error behind reverse proxy #1088

Open
3 tasks done
uthmanna opened this issue Nov 22, 2024 · 4 comments
Open
3 tasks done

[Bug]: Gen 2 HTTP communication error behind reverse proxy #1088

uthmanna opened this issue Nov 22, 2024 · 4 comments
Labels
bug Something isn't working not-latest-version Beta version not found in issue

Comments

@uthmanna
Copy link

uthmanna commented Nov 22, 2024

I'm sure that

  • This issue is still present in the current beta version of this adapter
  • There is no other (open) issue with the same topic (use the search!)
  • This issue is not described in the adapter documentation / FAQ (read the docs!)

Shelly device

Gen2 Devices

Shelly firmware version

Different, e.g. latest

Protocol

MQTT

The problem

Hello everyone, First of all, I would like to thank you for your work! Unfortunately, I don't really find the time to program in my free time besides work. Respect :).

So, that brings us to my problem. I use the IOBroker in a not necessarily everyday setup. I run the IOB in a K3s cluster behind a reverse proxy (Traefik).
All Gen1 devices work perfectly via MQTT and Http. The MQTT communication also works for the Gen2 devices, but the HTTP requests do not.

In my opinion, this is because the “hostname” is initialized with the internal IP from K3s (see log), but then no longer updated with the real IP via MQTT. This host name is used for the request, as far as I know. The mechanism for “updating” the IP is done via a question and answer from the adapter and Shelly. '/rpc' -method MQTTShelly.GetDeviceInfo see Request: Line 435
Response: Line 542
This is also sent, see log. However, the response is not received (not subscribed?) The rest, so if an answer came, it looks right to me again in the code (i.e. structure of the Json message, etc.)

I also tested it without an adapter, just with an MqttBroker, and a response was received there. That's why I would exclude the Shellys as problem.
Next step in my analysis. I ran the IOBroker in a single Docker container, without Kubernetes, proxies, etc. I saw the same behavior there, i.e. the message/response was never received. However, the Shellies work here because the “hostname” IP initial was of course initialized with the correct IP.

iobroker.current.log (in debug mode!)

2024-11-08 15:28:54.580 - debug: shelly.0 (718) Objects client ready ... initialize now
2024-11-08 15:28:54.586 - debug: shelly.0 (718) Objects create System PubSub Client
2024-11-08 15:28:54.590 - debug: shelly.0 (718) Objects create User PubSub Client
2024-11-08 15:28:54.642 - debug: shelly.0 (718) Objects client initialize lua scripts
2024-11-08 15:28:54.666 - debug: shelly.0 (718) Objects connected to redis: 127.0.0.1:9001
2024-11-08 15:28:54.701 - debug: shelly.0 (718) Redis States: Use Redis connection: 127.0.0.1:9000
2024-11-08 15:28:54.717 - debug: shelly.0 (718) States create System PubSub Client
2024-11-08 15:28:54.719 - debug: shelly.0 (718) States create User PubSub Client
2024-11-08 15:28:54.787 - debug: shelly.0 (718) States connected to redis: 127.0.0.1:9000
2024-11-08 15:28:54.833 - debug: shelly.0 (718) Plugin sentry Do not initialize Plugin (enabled=false)
2024-11-08 15:28:54.843 - debug: shelly.0 (718) Plugin sentry destroyed because not initialized correctly
2024-11-08 15:28:55.144 - info: shelly.0 (718) starting. Version 8.2.1 in /opt/iobroker/node_modules/iobroker.shelly, node: v20.18.0, js-controller: 6.0.11
2024-11-08 15:28:55.380 - info: shelly.0 (718) [firmwareUpdate] Auto-Update enabled - devices will be updated automatically
2024-11-08 15:28:55.382 - info: shelly.0 (718) Starting in MQTT mode. Listening on 0.0.0.0:1882 (QoS 0)
2024-11-08 15:28:55.390 - debug: shelly.0 (718) [MQTT Server] Started listener on 0.0.0.0:1882
2024-11-08 15:29:05.383 - debug: shelly.0 (718) [firmwareUpdate] Starting update on every device
2024-11-08 15:29:34.070 - debug: shelly.0 (718) [MQTT Server] New connection from 10.42.2.112
2024-11-08 15:29:34.092 - debug: shelly.0 (718) [MQTT] Client connected: {"cmd":"connect","retain":false,"qos":0,"dup":false,"length":119,"topic":null,"payload":null,"protocolId":"MQTT","protocolVersion":4,"will":{"retain":true,"qos":0,"topic":"shellyplus2pm-485519968144/online","payload":{"type":"Buffer","data":[102,97,108,115,101]}},"clean":true,"keepalive":60,"clientId":"shellyplus2pm-485519968144","username":"mqttuser","password":{"type":"Buffer","data":[************************]}}
2024-11-08 15:29:34.094 - info: shelly.0 (718) [MQTT] Device with client id "shellyplus2pm-485519968144" connected!
2024-11-08 15:29:34.223 - debug: shelly.0 (718) [createObjects] Starting object creation of (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) for mode:
2024-11-08 15:29:38.442 - debug: shelly.0 (718) [createObjects] Finished object creation of (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1)
2024-11-08 15:29:38.443 - debug: shelly.0 (718) [MQTT] Last will for client id "shellyplus2pm-485519968144" saved: {"retain":true,"qos":0,"topic":"shellyplus2pm-485519968144/online","payload":{"type":"Buffer","data":[102,97,108,115,101]}}
2024-11-08 15:29:38.444 - debug: shelly.0 (718) [setIP] New IP for device shellyplus2pm#485519968144#1: 10.42.2.112 (source: MQTT connect)
2024-11-08 15:29:38.458 - debug: shelly.0 (718) [deviceStatusUpdate] shellyplus2pm#485519968144#1: true
2024-11-08 15:29:38.508 - debug: shelly.0 (718) [deviceStatusUpdate] Online devices: ["shellyplus2pm#485519968144#1"]
2024-11-08 15:29:38.595 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Shelly.GetStatus": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.608 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Shelly.GetDeviceInfo": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.617 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Sys.GetConfig": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.624 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/WiFi.GetConfig": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.632 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Mqtt.GetConfig": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.639 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Cloud.GetConfig": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.647 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Switch.GetConfig?id=0": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.655 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Switch.GetConfig?id=1": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.664 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Input.GetConfig?id=0": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.679 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Input.GetConfig?id=1": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.685 - debug: shelly.0 (718) [httpIoBrokerState] HTTP request error for 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) "/rpc/Cover.GetConfig?id=0": Error: connect ECONNREFUSED 10.42.2.112:80
2024-11-08 15:29:38.686 - debug: shelly.0 (718) [MQTT] setMqttPrefixByWill (Gen 2+): shellyplus2pm-485519968144
2024-11-08 15:29:38.820 - debug: shelly.0 (718) [MQTT] Send state to 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) with QoS 0: shellyplus2pm-485519968144/rpc = {"id":1,"src":"iobroker-init","method":"Shelly.GetDeviceInfo","params":{"ident":true}} (2)
2024-11-08 15:29:38.823 - debug: shelly.0 (718) [MQTT] Send state to 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) with QoS 0: shellyplus2pm-485519968144/rpc = {"id":2,"src":"iobroker-init","method":"Shelly.GetStatus"} (3)
2024-11-08 15:29:38.877 - debug: shelly.0 (718) [MQTT] Subscribe 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): {"cmd":"subscribe","retain":false,"qos":1,"dup":false,"length":35,"topic":null,"payload":null,"subscriptions":[{"topic":"shellyplus2pm-485519968144/rpc","qos":1}],"messageId":1}
2024-11-08 15:29:38.895 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/online, qos: 1, payload: true
2024-11-08 15:29:39.276 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/ble, qos: 1, payload: {}
2024-11-08 15:29:39.301 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/cloud, qos: 1, payload: {"connected":false}
2024-11-08 15:29:39.316 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/cover:0, qos: 1, payload: {"id":0, "source":"init", "state":"open","apower":0.0,"voltage":227.7,"current":0.000,"pf":0.00,"freq":50.0,"aenergy":{"total":74.140,"by_minute":[0.000,0.000,0.000],"minute_ts":1731076140},"temperature":{"tC":35.8, "tF":96.4},"pos_control":true,"last_direction":"open","current_pos":100}
2024-11-08 15:29:39.319 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.Position, value: 100
2024-11-08 15:29:39.322 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.Status, value: "open"
2024-11-08 15:29:39.323 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.Power, value: 0
2024-11-08 15:29:39.324 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.Voltage, value: 227.7
2024-11-08 15:29:39.325 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.Current, value: 0
2024-11-08 15:29:39.327 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.Energy, value: 74.14
2024-11-08 15:29:39.328 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.source, value: "init"
2024-11-08 15:29:39.329 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.temperatureC, value: 35.8
2024-11-08 15:29:39.330 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.temperatureF, value: 96.4
2024-11-08 15:29:39.345 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/input:0, qos: 1, payload: {"id":0,"state":null}
2024-11-08 15:29:39.348 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/input:0 -> state: shellyplus2pm#485519968144#1.Input0.Status, value: null
2024-11-08 15:29:39.356 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/input:1, qos: 1, payload: {"id":1,"state":null}
2024-11-08 15:29:39.359 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/input:1 -> state: shellyplus2pm#485519968144#1.Input1.Status, value: null
2024-11-08 15:29:39.368 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/mqtt, qos: 1, payload: {"connected":true}
2024-11-08 15:29:39.381 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/script:1, qos: 1, payload: {"id":1,"running":true,"mem_used":9338,"mem_peak":10738,"mem_free":15848}
2024-11-08 15:29:39.396 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/sys, qos: 1, payload: {"mac":"485519968144","restart_required":false,"time":"15:29","unixtime":1731076178,"uptime":1271,"ram_size":266932,"ram_free":115900,"fs_size":393216,"fs_free":86016,"cfg_rev":64,"kvs_rev":0,"schedule_rev":2,"webhook_rev":1,"available_updates":{},"reset_reason":3}
2024-11-08 15:29:39.408 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/wifi, qos: 1, payload: {"sta_ip":"192.168.20.71","status":"got ip","ssid":"Definitiv kein WLAN","rssi":-76}
2024-11-08 15:29:39.417 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/ws, qos: 1, payload: {"connected":false}
2024-11-08 15:29:39.431 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/mqtt, qos: 1, payload: {"connected":true}
2024-11-08 15:29:39.492 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/events/rpc, qos: 1, payload: {"src":"shellyplus2pm-485519968144","dst":"shellyplus2pm-485519968144/events","method":"NotifyFullStatus","params":{"ts":1731076178.85,"ble":{},"cloud":{"connected":false},"cover:0":{"id":0, "source":"init", "state":"open","apower":0.0,"voltage":227.7,"current":0.000,"pf":0.00,"freq":50.0,"aenergy":{"total":74.140,"by_minute":[0.000,0.000,0.000],"minute_ts":1731076140},"temperature":{"tC":35.8, "tF":96.4},"pos_control":true,"last_direction":"open","current_pos":100},"input:0":{"id":0,"state":null},"input:1":{"id":1,"state":null},"mqtt":{"connected":true},"script:1":{"id":1,"running":true,"mem_used":9338,"mem_peak":10738,"mem_free":15848},"sys":{"mac":"485519968144","restart_required":false,"time":"15:29","unixtime":1731076178,"uptime":1271,"ram_size":267040,"ram_free":117376,"fs_size":393216,"fs_free":86016,"cfg_rev":64,"kvs_rev":0,"schedule_rev":2,"webhook_rev":1,"available_updates":{},"reset_reason":3},"wifi":{"sta_ip":"192.168.20.71","status":"got ip","ssid":"Definitiv kein WLAN","rssi":-76},"ws":{"connected":false}}}
2024-11-08 15:29:39.506 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/events/rpc, qos: 1, payload: {"src":"shellyplus2pm-485519968144","dst":"shellyplus2pm-485519968144/events","method":"NotifyStatus","params":{"ts":1731076178.85,"mqtt":{"connected":true}}}
2024-11-08 15:29:55.404 - debug: shelly.0 (718) [onlineCheck] Checking shellyplus2pm#485519968144#1 on 10.42.2.112:80
2024-11-08 15:29:55.409 - debug: shelly.0 (718) [deviceStatusUpdate] shellyplus2pm#485519968144#1: false
2024-11-08 15:29:55.439 - debug: shelly.0 (718) [deviceStatusUpdate] Online devices: []
2024-11-08 15:30:00.067 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/events/rpc, qos: 1, payload: {"src":"shellyplus2pm-485519968144","dst":"shellyplus2pm-485519968144/events","method":"NotifyStatus","params":{"ts":1731076200.01,"cover:0":{"id":0,"aenergy":{"by_minute":[0.000,0.000,0.000],"minute_ts":1731076200,"total":74.140}}}}
2024-11-08 15:30:00.083 - debug: shelly.0 (718) [MQTT] Publish: 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1) - topic: shellyplus2pm-485519968144/status/cover:0, qos: 1, payload: {"id":0, "source":"init", "state":"open","apower":0.0,"voltage":227.7,"current":0.000,"pf":0.00,"freq":50.0,"aenergy":{"total":74.140,"by_minute":[0.000,0.000,0.000],"minute_ts":1731076200},"temperature":{"tC":35.7, "tF":96.3},"pos_control":true,"last_direction":"open","current_pos":100}
2024-11-08 15:30:00.089 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.temperatureC, value: 35.7
2024-11-08 15:30:00.089 - debug: shelly.0 (718) [MQTT] State change 10.42.2.112 (shellyplus2pm / shellyplus2pm-485519968144 / shellyplus2pm#485519968144#1): shellyplus2pm-485519968144/status/cover:0 -> state: shellyplus2pm#485519968144#1.Cover0.temperatureF, value: 96.3

Version of nodejs

v20.18.0

Version of ioBroker js-controller

6.0.11

Version of adapter

8.4.0

@uthmanna uthmanna added the bug Something isn't working label Nov 22, 2024
Copy link

Thanks for reporting a new issue @uthmanna!

Important: Ensure that you use the latest available beta version of this adapter (not the current stable version!): 8.4.0

  1. Please ensure your topic is not covered in the documentation
  2. Please attach all necessary log files (in debug mode!), screenshots and other information to reproduce this issue.
  3. Search for the issue topic in other/closed issues to avoid duplicates!
  4. Check the changelog if the issue has already been covered in a previous release

Otherwise this issue will be closed!

@github-actions github-actions bot added the not-latest-version Beta version not found in issue label Nov 22, 2024
@uthmanna
Copy link
Author

In the meantime, I have also tested it with the latest 8.4.0 version. Same behavior.

@effenb0rg
Copy link

Hello,
i think that is the same problem as in #1052
As temp fix i have to edit the value of "hostname" in iob, but gets overwritten after reboot/reconnect.

@uthmanna
Copy link
Author

Hello, yes it could be. I also tried the “force” of the hostname, but it either didn't last long or didn't work at all

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working not-latest-version Beta version not found in issue
Projects
None yet
Development

No branches or pull requests

2 participants