meshtastic/docs/configuration/device-config/channels.mdx

213 lines
7.5 KiB
Plaintext
Raw Normal View History

2022-10-10 10:57:39 -07:00
---
id: channels
title: Channel Configuration
2022-11-02 11:46:54 -07:00
slug: /settings/config/channels
2022-10-10 10:57:39 -07:00
sidebar_label: Channels
---
2023-01-19 05:01:57 -08:00
import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
2022-10-10 10:57:39 -07:00
The Channels config options are: Index, Roles, and Settings. Channel config uses an admin message sending a `Channel` protobuf which also consists of a `ChannelSettings` protobuf.
:::info
2022-10-11 08:47:48 -07:00
**Channel Settings** (as described on this page) should not be confused with [Modem Preset Settings](/docs/settings/config/lora#modem-preset)
2022-10-10 10:57:39 -07:00
[Modem Preset Settings](/docs/settings/config/lora#modem-preset) contain the modem configuration (frequency settings, spreading factor, bandwidth, etc.) used for the LoRa radio. These settings are identical for all channels and can **not** be unique per channel.
2022-10-10 10:57:39 -07:00
2022-10-11 08:47:48 -07:00
**Channel Settings** contain information for segregating message groups, configuring optional encryption, and enabling or disabling messaging over internet gateways. These settings **are** unique and configurable per channel.
2022-10-10 10:57:39 -07:00
:::
## Channel Config Values
### Index
2022-10-10 13:20:50 -07:00
The channel index begins at 0 and ends at 7.
2022-10-10 10:57:39 -07:00
_Indexing_ can not be modified.
2023-01-19 05:01:57 -08:00
| Index | Channel | Default Role | Purpose |
| :---: | :-----: | :----------: | :-----------------------: |
| 0 | 1 | `PRIMARY` | Used as `default` channel |
| 1 | 2 | `DISABLED` | User defined |
| 2 | 3 | `DISABLED` | User defined |
| 3 | 4 | `DISABLED` | User defined |
| 4 | 5 | `DISABLED` | User defined |
| 5 | 6 | `DISABLED` | User defined |
| 6 | 7 | `DISABLED` | User defined |
| 7 | 8 | `DISABLED` | User defined |
2022-10-11 08:47:48 -07:00
:::note
2022-11-02 11:46:54 -07:00
You can **not** have `DISABLED` channels in-between active channels such as `PRIMARY` and `SECONDARY`. Active channels must be consecutive.
2022-10-11 08:47:48 -07:00
:::
2022-10-10 10:57:39 -07:00
### Role
Each channel is assigned one of 3 roles:
2023-01-19 05:01:57 -08:00
1. `PRIMARY` or `1`
- This is the first channel that is created for you on initial setup.
- Only one primary channel can exist and can not be disabled.
- Direct messages are only available on this channel.
2022-10-10 13:20:50 -07:00
2. `SECONDARY` or `2`
2023-01-19 05:01:57 -08:00
- Can modify the encryption key (PSK).
3. `DISABLED` or `0`
- The channel is no longer available for use.
- The channel settings are set to default.
2022-10-10 10:57:39 -07:00
## Channel Settings Values
2022-11-02 11:46:54 -07:00
The Channel Settings options are: ID, Name, PSK, Downlink Enabled, and Uplink Enabled. Channel settings are embedded in the `Channel` protobuf as a `ChannelSettings` protobuf and sent as an admin message.
2022-10-11 09:20:29 -07:00
2022-10-11 10:07:35 -07:00
:::note
2022-10-11 11:23:35 -07:00
The full globally unique ID will be constructed from the Name and ID (`<name>.<id>`) where ID is base36 encoded. Assuming that the number of Meshtastic users is below 20K (true for a long time) the chance of this 64 bit random number colliding with anyone else is super low. The penalty for collision is low as well.
2022-10-11 10:07:35 -07:00
:::
2022-10-10 10:57:39 -07:00
### ID
Used to construct a globally unique channel ID.
2022-10-11 10:07:35 -07:00
Set to `0` by default.
2022-10-10 10:57:39 -07:00
### Name
2023-01-19 05:01:57 -08:00
A short identifier for the channel. _(< 12 bytes)_
2022-10-10 10:57:39 -07:00
2023-01-19 05:01:57 -08:00
| Reserved Name | Purpose |
| :------------: | :----------------------------------------------------------------------------------------------------------------------------: |
| `""` (default) | If left empty on the Primary channel, this designates the `default` channel. |
| `admin` | On Secondary channels, the name `admin` (case sensitive) designates the `admin` channel used to administer nodes over the mesh |
2022-10-10 10:57:39 -07:00
### PSK
2022-10-10 11:09:49 -07:00
The encryption key used for private channels.
2022-10-11 11:23:35 -07:00
Hex byte `0x01` for the Primary `default` channel.
2022-10-10 10:57:39 -07:00
Must be either 0 bytes (no crypto), 16 bytes (AES128), or 32 bytes (AES256).
### Downlink Enabled
If enabled, messages captured from a **public** internet gateway will be forwarded to the local mesh.
Set to `false` by default for all channels.
### Uplink Enabled
If enabled, messages from the mesh will be sent to the **public** internet through any node's configured gateway.
Set to `false` by default for all channels.
<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
2022-12-04 13:18:54 -08:00
Limited Channel Config options are available on Android. QR code scanning is available.
2022-10-10 10:57:39 -07:00
:::
</TabItem>
<TabItem value="apple">
:::info
2022-11-09 20:00:38 -08:00
Channel settings are only available on Apple platforms by scanning QR codes.
2022-10-10 10:57:39 -07:00
:::
</TabItem>
<TabItem value="cli">
2022-11-09 20:00:38 -08:00
:::info
2022-10-10 10:57:39 -07:00
All Channel config options are available in the python CLI. Example commands are below:
2022-11-09 20:00:38 -08:00
:::
2022-10-10 10:57:39 -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 --ch-set name "My Channel" --ch-set psk random --ch-set uplink_enabled true --ch-index 4
```
:::
2023-01-19 05:01:57 -08:00
### Id
2022-10-10 10:57:39 -07:00
```shell title="Set the PRIMARY channel ID"
meshtastic --ch-set id 1234 --ch-index 0
```
2023-01-19 05:01:57 -08:00
### Name
2022-10-10 10:57:39 -07:00
```shell title="Set channel name for the PRIMARY channel"
2022-10-10 13:20:50 -07:00
# without spaces
2022-10-10 10:57:39 -07:00
meshtastic --ch-set name MyChannel --ch-index 0
2022-10-10 13:20:50 -07:00
# with spaces
2022-10-10 10:57:39 -07:00
meshtastic --ch-set name "My Channel" --ch-index 0
```
2023-01-19 05:01:57 -08:00
### PSK
2022-10-10 10:57:39 -07:00
2022-10-10 13:20:50 -07:00
If you use Meshtastic for exchanging messages you don't want other people to see, `random` is the setting you should use. Selecting `default` or any of the `simple` values from the following table will use publicly known encryption keys. They're shipped with Meshtastic source code and thus, anyone can listen to messages encrypted by them. They're great for testing and public channels.
2022-10-10 10:57:39 -07:00
| Setting | Behavior |
| :--------------------: | :-----------------------------------------------------------------------------------: |
| `none` | Disable Encryption |
| `default` | Default Encryption (use the weak encryption key) |
| `random` | Generate a secure 256-bit encryption key. Use this setting for private communication. |
| `simple0`- `simple254` | Uses a single byte encoding for encryption |
```shell title="Set encryption to default on PRIMARY channel"
meshtastic --ch-set psk default --ch-index 0
```
```shell title="Set encryption to random on PRIMARY channel"
meshtastic --ch-set psk random --ch-index 0
```
```shell title="Set encryption to single byte on PRIMARY channel"
meshtastic --ch-set psk simple15 --ch-index 0
```
```shell title="Set encryption to your own key on PRIMARY channel"
meshtastic --ch-set psk 0x1a1a1a1a2b2b2b2b1a1a1a1a2b2b2b2b1a1a1a1a2b2b2b2b1a1a1a1a2b2b2b2b --ch-index 0
```
```shell title="Disable encryption on PRIMARY channel"
meshtastic --ch-set psk none --ch-index 0
```
2023-01-19 05:01:57 -08:00
### Uplink / Downlink
2022-10-10 10:57:39 -07:00
For configuring gateways, please see [MQTT](/docs/settings/moduleconfig/mqtt)
```shell title="Enable/Disable Uplink on PRIMARY channel"
meshtastic --ch-set uplink_enabled true --ch-index 0
meshtastic --ch-set uplink_enabled false --ch-index 0
```
```shell title="Enable/Disable Downlink on SECONDARY channel"
meshtastic --ch-set downlink_enabled true --ch-index 1
meshtastic --ch-set downlink_enabled false --ch-index 5
```
</TabItem>
<TabItem value="web">
:::info
All Channel config options are available in the Web UI.
:::
</TabItem>
2023-01-19 05:01:57 -08:00
</Tabs>