Collision when running multiple Thread networks instances and Thread radios #11947
Unanswered
anhns26693
asked this question in
Q&A
Replies: 1 comment 9 replies
-
|
Easiest way to get up and running with support for multiple Thread interfaces is by using Docker. Note that the backbone router implementation does not currently support multiple on the same host, so to get this to work for now, you'll have to disable the backbone router feature. You can do this with the following modification in diff --git a/etc/docker/border-router/Dockerfile b/etc/docker/border-router/Dockerfile
index b1f441a0..edf5d830 100644
--- a/etc/docker/border-router/Dockerfile
+++ b/etc/docker/border-router/Dockerfile
@@ -78,6 +78,7 @@ RUN set -x \
-DOTBR_REST=ON \
-DOT_POSIX_NAT64_CIDR="192.168.255.0/24" \
-DOT_FIREWALL=ON \
+ -DOTBR_BACKBONE_ROUTER=OFF \
&& ninja \
&& ninja install \
&& cp -r etc/docker/border-router/rootfs/. / \After building the Docker image locally, you should be able to do the following: And you should see |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Dear all expert of OpenThread
Dear Mr. @jwhui
I am Si Anh from Vietnam.
I have searched in the discussion ( Q&A ) but there is no specific guide for my case.
Device : Raspberry PI 4B
OS : Debian 11 bulleys
Matter source : connectedhomeip v1.4.0.0
Some matter Thread device build for testing with Thread network
ot-br-posix: https://github.com/openthread/ot-br-posix.git tag/thread-reference-20230710
Thread radio : nRF52840 usb dongle
My use case is :
I have two instance of lighting-bulb which support Thread and running on same raspberry PI
I want to set up two Thread network wpan0 (interact with Radio device 1), wpan1 (interact with Radio device 2)
I have to run two otbr-agent serivce, each service assign to one usb port ( radio Thread device ).
$ cat /etc/default/otbr-agent
OTBR_AGENT_OPTS="-I wpan0 -B wlan0 spinel+hdlc+uart:///dev/ttyACM0 trel://wlan0"
OTBR_NO_AUTO_ATTACH=0
$ cat /etc/default/otbr-agent1
OTBR_AGENT_OPTS1="-I wpan1 -B wlan0 spinel+hdlc+uart:///dev/ttyACM1 trel://wlan0"
OTBR_NO_AUTO_ATTACH=0
Do you have any advise for correctly configuration and resolving the above issue ?
Thanks in advance !!!
Beta Was this translation helpful? Give feedback.
All reactions