From 2f1d14ae4e4ac57f2ffc7777810f687d8e66e98e Mon Sep 17 00:00:00 2001 From: geoffwhittington Date: Wed, 17 Aug 2022 22:04:07 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 027a366..b570a57 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Connect two distinct radio [Meshtastic](https://meshtastic.org) networks using T - Python3 - Two Meshtastic devices: - Local `LOCAL_NODE_ADDR` The IP address or Serial devPath (micro USB cable needed for serial access) of a local Meshtastic device - - Remote `REMOTE_NODE_ARR` The IP address of a remote Meshtastic device + - Remote `REMOTE_NODE_ADDR` The IP address of a remote Meshtastic device Refer to to configure a Meshtastic device to use wifi and expose a TCP address From 45e3323ebcdd0328cfb9d38680f1663bd9e5cc9a Mon Sep 17 00:00:00 2001 From: geoffwhittington Date: Wed, 17 Aug 2022 22:10:42 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b570a57..c93e1e3 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ $ pip install -r requirements.txt ## Turn on the Bridge -In the `meshtastic-bridge` directory run the following: +In the `meshtastic-bridge` directory run the following - replacing `BRIDGE_DISTANCE_KM`, `LOCAL_NODE_ADDR` and `REMOTE_NODE_ADDR` with the proper values: ``` BRIDGE_DISTANCE_KM=0 LOCAL_NODE_ADDR=/dev/ttyUSB0 REMOTE_NODE_ADDR=182.168.86.123 python main.py From 7815931e6f4dd9bc9cacc934cadf995ac96a2cd6 Mon Sep 17 00:00:00 2001 From: geoffwhittington Date: Wed, 17 Aug 2022 22:11:54 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c93e1e3..31569d0 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Connect two distinct radio [Meshtastic](https://meshtastic.org) networks using TCP. +WARNING: Traffic is sent insecure using TCP. Use a VPN to secure traffic between the nodes + ## Requirements - Python3