Router vs. Repeater Role — Which to Choose
Overview of Device Roles
Meshtastic firmware supports several device roles that control how a node behaves on the mesh.
For infrastructure nodes,nodes the two mosthistorically relevant roles are ROUTER and REPEATER, but note that REPEATER is deprecated as of firmware ~2.7.x. For most stationary, well-placed infrastructure the current recommendation is ROUTER (or ROUTER_LATE for a node that should rebroadcast only after others have had a chance); for the overwhelming majority of ordinary nodes the official guidance is simply CLIENT.
ROUTER Role
ActivelyAlwaysparticipatesrebroadcastsineachfloodingpacketandoncerebroadcasting(doesallnotpacketsdefer to a neighbor that rebroadcasts first), with prioritized routing. The scope of what ithears.rebroadcasts is governed byrebroadcast_mode(default ALL), not by the role itself.Maintains a node position - appears on the map at meshmap.net andAppears in the app nodelist.list of nodes that hear it. It will only appear on meshmap.net if its packets reach the internet through an MQTT gateway somewhere on the mesh - merely being a ROUTER does not put it on the public map.CanAt the protocol level a ROUTER can still originate and receiveandmessages,displaybutmessages;BLE/WiFi/SerialsomeoneappinconnectivitytheisfieldOFFcanby default, so you do not normally textthe nodeit directly to checkstatus.status without first enabling an interface.HigherUses more airtimeusagethan deferring roles because itretransmitsalwaysmorerebroadcastsaggressively.(it never skips when a neighbor already did), not because it sends extra copies of a packet.PrioritisesRebroadcastsrebroadcastingwithpacketsprioritythatbystillusinghaveamaximumshorterhopscontentionremaining.delay ("cutting in line") so it relays before other nodes, which helps extend range. It does not prioritize by remaining hop count.
REPEATER Role
REPEATER is deprecated as of firmware ~2.7.x. Prefer ROUTER (or ROUTER_LATE) for new infrastructure. The behavior below is retained for reference and for existing deployments.
OptimisedLikepurelyROUTER,forit is a preferred relay that always rebroadcasts each packetrelay - rebroadcastsonce withloweraoverhead.shorter delay; it does not prioritize by remaining hop count and is not a "hop maximiser."- Does not broadcast its own position or send NodeInfo -
willit is anonymous on the mesh and does not appearoninmaps,the node list, which reduces network traffic. DoesIs notreceivenormallymessagesaddressed for "self" -cannotyoubedotextednot text it directly. This is a default-configuration behavior, not the firmware omitting a send code path.LowerDoes not force power-saving sleep, so it keeps its LoRa radio on. Baseline powerconsumptiondraw is therefore similar to ROUTER; differences between the two roles are marginal (self-generated airtime, CPU/RAM) rather thanROUTERoneindrawingpracticedramaticallybecauselessit generates fewer self-broadcasts.
When to Use Each Role
| Scenario | Recommended Role |
|---|---|
| Temporary deployment or field relay that doubles as a usable client | |
| Node needs to appear | ROUTER |
| Permanent mountaintop or rooftop installation | |
| Solar-powered, unattended backbone node | |
CLIENT_MUTE Role
CLIENT_MUTE is the opposite of a repeater - it prevents a regular client device (phone, laptop) from
rebroadcasting mesh traffic.traffic - a normal CLIENT still rebroadcasts under managed flooding, but CLIENT_MUTE does not relay at all. This is useful for devices that are on the mesh but should not consume airtime
acting as relays, such as tablets used only for monitoring.
Setting the Role
In the Meshtastic app: on Android, ConfigSettings → Device Config→ Role; on iOS/macOS, Settings → Device Configuration → Device → Role. →The selectexact menu path can vary by app version.
Via the CLI: meshtastic --set device.role ROUTER or(the REPEATERkey is device.role and the value is the bare enum name, e.g. ROUTER, ROUTER_LATE, CLIENT).
Via the web client at client.meshtastic.org: connect via USB, navigate to Device Config, and choose the desired role from the drop-down.