Hi all… I’m experiencing an issue that prevent me to integrate matter-thread on HA.
My configuration is a Debian host with sonoff Dongle-e repeater (RCP firmware):
- HA core on docker
- Matter server on docker (python-matter-server)
- OTBR on docker
Now the problem is that when I start the otbr server, on HA thread integration I correctly see a network named “ha-thread-xxx”… But after some minutes, it seems the networ goes offline and appear as “No border routers were found. Check your border router is configured correctly or reset it to factory settings.”. If I hit reset, e new network appear, it seems to work for some minutes and then goes offline again.
By going to OTBR server homepage, it seems to work correctly on the status page.
Attached the OTBR container log (I don’t see nothing useful or at least cannot see it). Nothing is written on HA log instead.
Anyone can give me an advice?
Here the docker conf:
Docker matter+otbr
matter:
container_name: matter
image: ghcr.io/home-assistant-libs/python-matter-server:stable
restart: unless-stopped
network_mode: host
security_opt:
- apparmor=unconfined
volumes:
- ~/matter:/data
- /run/dbus:/run/dbus:ro
- /etc/localtime:/etc/localtime:ro
otbr:
container_name: otbr
image: openthread/otbr
sysctls:
- net.ipv6.conf.all.disable_ipv6=0
- net.ipv4.conf.all.forwarding=1
- net.ipv6.conf.all.forwarding=1
ports:
- 8080:80
- 8081:8081
dns:
- 127.0.0.1
stdin_open: true
tty: true
volumes:
- /dev/ttyACM0:/dev/ttyUSB0
- ~/otbr:/var/lib/thread
- /etc/localtime:/etc/localtime:ro
privileged: true
command: ["--radio-url", "spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800"]
restart: always
UPDATE: also I have noted that on the thread network there is no the HA icon…not sure if that’s a problem…