meshtastic/docs/configuration/module/store-and-forward-module.mdx

192 lines
5.8 KiB
Plaintext
Raw Normal View History

2023-03-28 10:04:56 -07:00
---
id: store-and-forward-module
title: Store & Forward Module Settings
sidebar_label: Store & Forward
2023-03-28 10:04:56 -07:00
---
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
:::info
2023-10-15 10:22:30 -07:00
Currently only available for ESP32 based devices with external PSRAM like the tbeam. Requires the device to be set as a ROUTER or ROUTER_CLIENT.
2023-03-28 10:04:56 -07:00
:::
## Overview
:::caution
2023-10-15 10:22:30 -07:00
This is a work in progress and the required client support is not yet available.
2023-03-28 10:04:56 -07:00
:::
The Store & Forward Module is an implementation of a Store and Forward system to enable resilient messaging in the event that a client device is disconnected from the main network.
Because of the increased network traffic for this overhead, it's not advised to use this if you are duty cycle limited for your airtime usage (EU_868 and EU_433) nor is it advised to use this for presets using SF11 or SF12 (e.g. all of the LongRange and VeryLongRange presets).
2023-06-18 22:43:10 -07:00
## Details
2023-03-28 10:04:56 -07:00
2023-06-18 22:43:10 -07:00
### How it works
2023-03-28 10:04:56 -07:00
2023-06-18 22:43:10 -07:00
![Store & Forward - Overview](/img/modules/store_and_forward/store_and_forward-overview.png)
2023-03-28 10:04:56 -07:00
2023-06-18 22:43:10 -07:00
### Requirements
2023-06-18 06:29:46 -07:00
2023-06-18 22:43:10 -07:00
Initial Requirements:
2023-06-18 06:29:46 -07:00
2023-06-18 22:43:10 -07:00
- Must be installed on a ROUTER or ROUTER_CLIENT node.
- This is an artificial limitation, but is in place to enforce best practices.
- Router nodes are intended to be always online. If this module misses any messages, the reliability of the stored messages will be reduced.
- ESP32 Processor based device with external PSRAM. (tbeam > v1.0, T3S3, and maybe others)
2023-06-18 06:29:46 -07:00
2023-06-18 22:43:10 -07:00
### Usage Overview
- To use / test this you will want at least 3 devices
- One ESP32 device with PSRAM configured as a Meshtastic router.
- Two others will be regular clients. Nothing special required.
### Meshtastic channel configuration
2024-01-24 21:52:20 -08:00
Don't use this on the "LongRange" channel settings. You're welcome to try and report back, but those channels have a [low bitrate](/docs/overview/radio-settings#presets).
2023-06-18 22:43:10 -07:00
Either use a custom channel configuration with at an at least 1kbit data rate or use a Medium or Short range preset.
### Router setup
- Configure your device as a router.
- Name your router node something that makes it easily identifiable, aka "Router".
- Configure the Store and Forward module
```shell title="Required - Enable the module"
meshtastic --set store_forward.enabled true
```
```shell title="Optional - Set maximum number of records to save to device"
meshtastic --set store_forward.records 100
```
:::tip
Best to leave `store_forward.records` at the default (`0`) where the module will use 2/3 of your device's available PSRAM. This is about 11,000 records.
:::
### Client Usage
2023-10-15 10:22:30 -07:00
Currently there are no clients that support store and forward.
2023-06-18 22:43:10 -07:00
## Settings
2023-06-18 06:29:46 -07:00
### Enabled
Enables the module.
### Heartbeat
The Store & Forward Router sends a periodic message onto the network. This allows connected devices to know that a router is in range and listening to received messages. A client like Android, iOS, or Web can (if supported) indicate to the user whether a store and forward router is available.
### History Return Max
Sets the maximum number of messages to return to a client device.
### History Return Window
Limits the time period (in minutes) a client device can request.
2023-06-18 22:43:10 -07:00
2023-06-18 06:29:46 -07:00
### Records
Set this to the maximum number of records to save. Best to leave this at the default (`0`) where the module will use 2/3 of your device's available PSRAM. This is about 11,000 records.
2023-06-18 22:43:10 -07:00
### Client Config
<Tabs
groupId="settings"
defaultValue="cli"
values={[
{label: 'Android', value: 'android'},
{label: 'Apple', value: 'apple'},
{label: 'CLI', value: 'cli'},
{label: 'Web', value: 'web'},
]}>
<TabItem value="android">
:::info
Store and Forward Config options are available for Android.
1. Open the Meshtastic App
2. Navigate to: **Vertical Ellipsis (3 dots top right) > Radio Configuration > Store & Forward**
:::
2023-06-18 06:29:46 -07:00
</TabItem>
<TabItem value="apple">
:::info
2023-06-18 22:43:10 -07:00
Store and Forward configuration is not currently available via the Apple clients.
2023-06-18 06:29:46 -07:00
:::
</TabItem>
2023-03-28 10:04:56 -07:00
<TabItem value="cli">
2023-06-18 22:43:10 -07:00
| Setting | Acceptable Values | Default |
| :---------------------------------: | :---------------: | :-----: |
| store_forward.enabled | `true`, `false` | `false` |
| store_forward.heartbeat | `true`, `false` | `false` |
| store_forward.history_return_max | `integer` | `0` |
| store_forward.history_return_window | `integer` | `0` |
| store_forward.records | `integer` | `0` |
2023-06-17 21:13:24 -07:00
2023-06-18 22:43:10 -07:00
:::tip
Because the device will reboot after each command is sent via CLI, it is recommended when setting multiple values in a config section that commands be chained together as one.
```shell title="Example:"
meshtastic --set store_forward.enabled true --set store_forward.history_return_max 0
```
:::
### Examples of CLI Usage
2023-06-17 21:13:24 -07:00
2023-03-28 10:04:56 -07:00
```shell title="Enable the module"
meshtastic --set store_forward.enabled true
```
```shell title="Disable the module"
meshtastic --set store_forward.enabled false
```
```shell title="Set store_forward.heartbeat to default"
meshtastic --set store_forward.heartbeat 0
```
```shell title="Set store_forward.history_return_max to default"
meshtastic --set store_forward.history_return_max 0
```
```shell title="Set store_forward.history_return_max to 100 messages"
meshtastic --set store_forward.history_return_max 100
```
```shell title="Set store_forward.history_return_window to default"
meshtastic --set store_forward.history_return_window 0
```
```shell title="Set store_forward.history_return_window to 1 day (1440 minutes)"
meshtastic --set store_forward.history_return_window 1440
```
2023-06-17 21:13:24 -07:00
```shell title="Set store_forward.records to default (≈11,000 records)"
meshtastic --set store_forward.records 0
```
```shell title="Set store_forward.records to 100 records"
meshtastic --set store_forward.records 100
```
</TabItem>
2023-03-28 10:04:56 -07:00
2023-06-17 21:13:24 -07:00
<TabItem value="web">
2023-03-28 10:04:56 -07:00
:::info
2023-06-18 22:43:10 -07:00
Store and Forward configuration is not currently available via the web client.
2023-03-28 10:04:56 -07:00
:::
2023-06-17 21:13:24 -07:00
</TabItem>
2023-03-28 10:04:56 -07:00
</Tabs>