alexryd / homebridge-shelly

Homebridge plugin for Shelly devices
MIT License
297 stars 44 forks source link

[Support] No shelly devices found #465

Open smolleman opened 6 months ago

smolleman commented 6 months ago

Describe your problem I've read the wiki about issues with multicast but I am able to receive multicast messages inside my docker container using tcpdump -s0 dst 224.0.1.187 and port 5683. Running shellies listen however doesn't result in any log messages. What am I missing?

Describe what you have tried so far I've also tried to switch to unicast by entering my server's ip:5683 in my shelly dimmer2 but tcpdump and shellies commands don't get any data. Maybe that is expected? I also don't see device turning up in the homebridge logs.

Environment:

Docker compose file

  homebridge:
    image: homebridge/homebridge:latest
    restart: always
    environment:
      - PUID=1006
      - PGID=1001
      - TZ=Europe/Amsterdam
      - UMASK_SET=007
    network_mode: host
    volumes:
      - /home/homebridge:/homebridge
    logging:
      driver: json-file
      options:
        max-size: "10mb"
        max-file: "1"