--
You received this message because you are subscribed to the Google Groups "openthread-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openthread-users+unsubscribe@googlegroups.com.
To post to this group, send email to openthread-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/89d852cc-cf59-476b-9eff-953614ffe4f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "openthread-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openthread-use...@googlegroups.com.
To post to this group, send email to openthre...@googlegroups.com.
Hi Vishnu,From a specification standpoint, the Border Router role and whether the device is a router or end device on the Thread network are independent.Both configurations are possible:
- Thread Router-capable device that registers as a Border Router for an external prefix.
Such a device will automatically transition from REED to Router to Leader as appropriate, following the rules in the Thread specification.- Thread end device that registers as a Border Router for an external prefix.
Such a device will never become a router or leader, will always communicate through its parent router.
Packets destined for its external prefix will still be routed to it for forwarding purposes.I'm not clear from your question which configuration you are seeking to setup, but both are possible.Generally, the Thread network role can be controlled dynamically with the mode bits and the routerrole command, and the border router role is entered independently by registering as a default route for an external prefix.This page explains Thread device roles in more depth.Martin
_____________________________
Martin Turon | Nest Labs
On Fri, Sep 7, 2018 at 7:22 AM, Vishnu Bemera <vishn...@gmail.com> wrote:
hiI would like to know whether Thread Border Router can function as thread routerIn my experiment I want to use only Thread border router and wants it to take care of thread router/thread leader roles too.Is it possible?ThanksVishnu
--
You received this message because you are subscribed to the Google Groups "openthread-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openthread-use...@googlegroups.com.
To post to this group, send email to openthre...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/b0d1efb3-b597-4191-9373-fddc804354eb%40googlegroups.com.
Jonathan Hui
To unsubscribe from this group and stop receiving emails from it, send an email to openthread-users+unsubscribe@googlegroups.com.
To post to this group, send email to openthread-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/b0d1efb3-b597-4191-9373-fddc804354eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "openthread-users" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/CAGwZUDuKKRMKMUn1zKR1nHVHiDSRM57d_vuW1Wao9Kw82YkO%3Dg%40mail.gmail.com.To unsubscribe from this group and stop receiving emails from it, send an email to openthread-users+unsubscribe@googlegroups.com.
To post to this group, send email to openthread-users@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/338b9399-bee3-4ada-91df-4459666816a8%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/CADUjh3KZw7Lau%3DjwcV7Sr5KktYQUXBqdPDxWzNUQUZpiJ0rEpw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/011584f7-67b3-4290-bf6a-10644b035f14%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/openthread-users/CALFnYPVEEp%3DkjHGyoB3SrrguAmtGCJ89N%2B%2By0ATkWQ2ACYLFdQ%40mail.gmail.com.
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/pts/7:/dev/ttyUSB0 --privileged otbr
I am trying to run Docker on my RPI with emulated NCP and I have followed the guide on openthread.io.
The issue I am facing is:
At the of the 'Start the POSIX NCP' step,
~/openthread/output/x86_64-unknown-linux-gnu/bin/ot-ncp-ftd 1 \
> /dev/pts/2 < /dev/pts/2
It is running on 'x86_64-unknown-linux-gnu' whereby I'm running on 'arm7l-unknown-linux-gnueabihf'. Will this cause an issue?
When I tried to run ~/openthread/output/arm7l-unknown-linux-gnueabifh/bin/ot-ncp-ftd 1 \
> /dev/pts/2 < /dev/pts/2 ,
I get an 'Invalid value for TimerSpeedUpFactor: /dev/pts/2
So basically I cannot even get the emulated NCP running...... and I also tried running this command:
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/pts/3:/dev/ttyUSB0 --privileged openthread/otbr
With 'standard_init_linux.go:190: exec user process caused "exec format error"
Any help be much appreciated! Thanks!!!