Hi all. I’m having problem on my setup, core on docker on linux debian, and OTBR. Actually my OTBR boarder router seems to be up and running, but it reply only on 127.0.0.1 from host. Any other host on network does not see it, hence when I try to add a new Matter component, it say it needs a boarder router to be added… My docker compose is as following… Any idea on what to do?
otbr:
container_name: "otbr"
image: openthread/otbr
network_mode: "host"
cap_add:
- NET_ADMIN
- SYS_NICE
environment:
OT_RCP_DEVICE: "spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800"
AUTOFLASH_FIRMWARE: 0
OT_INFRA_IF: enp1s0
OT_BACKBONE_IF: enp1s0
BACKBONE_INTERFACE: enp1s0
OT_THREAD_IF: wpan0
OT_LOG_LEVEL: 7
#OT_REST_LISTEN_ADDR: "0.0.0.0"
#OT_REST_LISTEN_PORT: 8081
#OTBR_AGENT_ARGS: "--rest-address 0.0.0.0 --rest-port 8081"
WLAN_IFNAMES: enp1s0
command: ["otbr-agent", "-I", "wpan0", "-B", "enp1s0", "--rest-address", "0.0.0.0", "--rest-port", "8081", "-d", "7", "spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800"]
stdin_open: true
tty: true
devices:
- /dev/ttyACM0:/dev/ttyUSB0
- /dev/net/tun:/dev/net/tun
volumes:
- /home/deb/otbr:/var/lib/thread
- /etc/localtime:/etc/localtime:ro
privileged: true
restart: unless-stopped