Blame

016fbd David Marsh 2026-04-16 05:58:28
1
# Commands
2
a524df David Marsh 2026-04-20 00:18:33
3
These commands are used for repeaters. See github for the [full list of commands](https://github.com/meshcore-dev/MeshCore/blob/main/docs/cli_commands.md) or https://docs.meshcore.io/cli_commands/
016fbd David Marsh 2026-04-16 05:58:28
4
5
| Command | Usage | Example |
6
| --------- | ---------------------------------------------- | ------------------------------- |
82c301 David Marsh 2026-04-20 00:18:46
7
| jail | | |
016fbd David Marsh 2026-04-16 05:58:28
8
| tempradio | tempradio <freq>,<bw>,<sf>,<cr>,<timeout_mins> | `tempradio 915.075,125,9,5,120` |
cf623b David Marsh 2026-04-22 12:31:15
9
10
```
11
Repeater CLI Commands:
12
13
Info:
14
ver - Firmware version
15
board - Board name
16
clock - Show current time
17
18
Stats:
19
stats-core - Core stats (uptime, battery, queue)
20
stats-radio - Radio stats (RSSI, SNR, noise floor)
21
stats-packets - Packet statistics (sent/recv counts)
22
clear stats - Reset all statistics
23
24
Network:
25
neighbors - Show neighboring repeaters (zero-hop)
26
advert - Send advertisement now
27
28
Logging:
29
log start - Enable packet logging
30
log stop - Disable packet logging
31
log - Dump log file to console
32
log erase - Erase log file
33
34
Configuration (get/set):
35
get name - Node name
36
get radio - Radio params (freq,bw,sf,cr)
37
get tx - TX power (dBm)
38
get repeat - Repeat mode on/off
39
get public.key - Node public key
40
get advert.interval - Advertisement interval (minutes)
41
get owner.info - Owner information
42
43
set name <name> - Set node name
44
set tx <power> - Set TX power (dBm)
45
set repeat on|off - Enable/disable repeating
46
set radio f,bw,sf,cr - Set radio params (reboot to apply)
47
set advert.interval <min> - Set advert interval (60-240 min)
48
set owner.info <i> - Set owner information
49
50
Region management:
51
region - display currently configured regions
52
region save - save current region config to flash
53
region download - download regions config from node to file
54
region (up)load - upload regions config to node from file
55
region home - get/set home region
56
region get - get info (and parent) for a region
57
region put - adds or update a region
58
region remove - remove a region definition
59
region allowf - gives flood permission to a region
60
region denyf - remove flood permission to a region
61
region list - list allowed/denied regions
62
63
System:
64
reboot - Reboot device
65
erase - Erase filesystem (serial only)
66
script <file> - Execute script
67
68
```