Rnsh over Multi hop RNodes #1034
Replies: 4 comments 4 replies
-
|
I should also note that the |
Beta Was this translation helpful? Give feedback.
-
|
Well everything depends on your lora parameters. I assume you will hit a limit due to the interactive nature of rnsh, sending packets back and forth for each keypress, causing airtime collisions. |
Beta Was this translation helpful? Give feedback.
-
|
Welcome to the fun world of network troubleshooting!
My general approach to these kinds of problems is to keep simplifying
the setup to try and isolate the problem:
You mentioned initially that you have tested succesfully with WiFi and
Ethernet - check that ethernet still works since you've probably changed
the config a few times during testing :-)
Check, especially, that the ethernet setup is actually using the
transport node - be sure to disable the AutoInterface on all 3 devices
to prevent direct connection from client to server. I would setup a
TCPServer interface on the transport node and have the server and client
connect to it via TCPClient interfaces. Leave the RNodes attached and
configured.
Configure Reticulum to run with at least DEBUG-level logging
(loglevel=6) so you can see if the Announce from the server is reaching
the transport node and client node. (You should see a message like
"Destination <aabb..> is now 2 hops away via ...")
Test if you can run rnsh on the transport node and connect to the
server, then test you can run rnsh on the client.
Once that is proven working, leave the config and just unplug one of the
ethernet cables to isolate the problem to the RNodes replacing that
link. Still working? Plug the cable back in and unplug the other
ethernet cable to test the other RNode link.
Good luck!
…-Skyguy
|
Beta Was this translation helpful? Give feedback.
-
|
After some further testing, I got I think there may be some issue with half-duplex technologies handling the interactive shell over a hop. The good news is Of note is that while it worked with the transport node set to |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Curious if anyone has been able to
rnshover 1 or more RNode hops. Key here being the entire connection is happening over LoRa RNodes. I've gotten it to work with other mediums like wifi and ethernet.Currently I am able to
rnshto a Raspberry Pi by going p2p. However when I try to extend the range and put a transport node between them, the link fails to establish.My transport node is a pi zero 2w + heltec v4 running
rnsd. Here is a summarized config file:...
enable_transport = yes
...
[[RNode1]]
type = RNodeInterface
enabled = yes
port = /dev/ttyACM0
[omitted]
mode = gateway
Beta Was this translation helpful? Give feedback.
All reactions