Hey there,
I’m still very new to HA but already loving it. I have HA running on my Raspberry Pi and now I want to also setup a Open Thread Border Router (OTBR) with Docker on it.
I followed the official documentation and I’m able to access the web ui as well as create a Thread network. The problem now is that the network isn’t discovered by other devices like the eve App on my iPhone. I also tried to install the OTBR directly on the PI and with that the network is discovered in listed in the eve app.
I start the container like this:
docker run --sysctl "net.ipv6.conf.all.disable_ipv6=0 net.ipv4.conf.all.forwarding=1 net.ipv6.conf.all.forwarding=1" -p 8080:80 --dns=127.0.0.1 -it --volume /dev/ttyACM0:/dev/ttyACM0 --privileged openthread/otbr --radio-url spinel+hdlc+uart:///dev/ttyACM0
I guess the Thread network is not discovered because the container is not running on the host network. However, when I try to start the container in the host network specifically I get the following error:
sysctl "net.ipv6.conf.all.disable_ipv6" not allowed in host network
Do you have any ideas how to solve this?