Router-to-router radio backhaul over an open 802.11s mesh interface, with FIPS providing all encryption (Noise IK), authentication, and routing on top of bare L2 neighbor links. The mesh runs OPEN with mesh_fwding 0 — SAE would duplicate the Noise layer and force ath10k raw mode, and FIPS is the routing layer — so the Noise handshake is the real auth/encryption boundary and FIPS's spanning tree does the routing. fips-mesh-setup: an opt-in UCI helper that creates a per-radio mesh-point interface (radio0 -> fips-mesh0, radio1 -> fips-mesh1; trailing-digit derivation with a free-index fallback and a collision guard). Radio setup stays opt-in — a package must not commandeer radios on install. 'remove' takes an optional radio and otherwise removes all instances. Dual-band routers get one instance per radio; FIPS treats the two backhaul paths as failover, not multipath: it keeps one active link per peer (cross-connection resolution picks a single winner), and the second band stands by, re-establishing the peer after keepalive timeout — traffic never uses both bands at once. fips.yaml ships the mesh0/mesh1 Ethernet-transport entries commented out, so a stock install that never creates fips-mesh* logs no per-boot "interface missing" bind warning. fips-mesh-setup uncomments the matching meshN block when it creates the interface and re-comments it on remove, so the flash-and-drop-in flow needs no manual config edit. The file is rewritten 0600-first (it may hold an inline nsec) via an atomic replace. Two field-found silent non-peering causes are surfaced by the helper and the guide: - Same channel: mesh points only peer on a shared channel, and 'auto' lets each radio pick its own. The helper prints the radio's band/channel and warns loudly on 'auto' with the exact uci command to pin one; the how-to gains an ordered no-peers triage (channel mismatch, on-air scan check, DFS CAC wait, regdomain). - STA channel capture: a client (sta) interface drags the whole radio to its upstream AP's channel, so a mesh pinned elsewhere never joins and does not recover until the STA disconnects. The helper warns when the target radio carries a STA; the guide documents the incompatibility of a roaming uplink with a fixed-channel mesh on the same radio. Both the create and remove paths run 'wifi reload', which briefly drops every client AP on all radios; the how-to sets that expectation. Regression test: the shipped OpenWrt fips.yaml must parse via the real Config deserializer in both states — as shipped (mesh inactive) and after the uncomment the helper performs. Packaging: the helper is installed across the ipk/apk/buildroot paths (three synced copies), with the CI structural checks and shellcheck targets extended to cover it. Full guide in docs/how-to/set-up-80211s-mesh-backhaul.md.
9.5 KiB
Set Up an 802.11s Mesh Backhaul (OpenWrt)
Link FIPS routers over radio — no cables, no APs, no shared infrastructure — by running the Ethernet transport on an open 802.11s mesh interface. The radio layer provides nothing but L2 frames to direct neighbors; FIPS provides everything else: encryption and authentication (Noise IK), peer discovery (Ethernet beacons), and routing (the spanning tree).
For the transport design, see
../design/fips-transport-layer.md.
For all transports.ethernet.* configuration keys, see
../reference/configuration.md.
Why open, why forwarding off
Two deliberate choices distinguish this from a stock 802.11s setup:
encryption none— the mesh is open on purpose. Every FIPS peer link is already authenticated and encrypted by the Noise IK handshake, so SAE at L2 would duplicate that work, add a shared credential to provision across routers, and (on ath10k) force the firmware into its slower raw Tx/Rx mode. A stranger can form an 802.11s peering with your router, but their frames die at the FIPS handshake — the same security model as mDNS and BLE discovery, where the advert is only a hint and the handshake is the authentication. What you concede: L2 metadata (MAC addresses, frame sizes) is visible in the air, and a hostile radio can burn airtime — both true of any radio link regardless of L2 encryption.mesh_fwding 0— disables 802.11s's own HWMP routing so each mesh link is a plain neighbor link. FIPS is the routing layer; two routing layers would fight, and broadcast discovery beacons would flood the whole mesh instead of reaching direct neighbors only.
The interface is not bridged into br-lan — the FIPS Ethernet
transport binds it directly.
When to use
- Two or more OpenWrt FIPS routers within radio range of each other, where running cable is impractical.
- You want the mesh segment to keep working with zero shared credentials or per-site configuration ("flash and drop in").
It is not for connecting phones or laptops — client devices cannot join an 802.11s mesh. They enter the mesh through a normal AP on the same router (see constraints below), or over BLE.
Requirements
-
OpenWrt 22.03+ with the FIPS package installed.
-
A radio whose driver supports mesh point interfaces. Check with:
iw list | grep -A 10 "Supported interface modes" | grep "mesh point"The mainstream OpenWrt chips (ath9k, ath10k, mt76) all qualify.
-
Ideally a dual- or tri-band router, so one band can be dedicated to the backhaul (see constraints).
Step 1 — create the mesh interface(s)
On each router, run the helper once per radio you want in the backhaul:
fips-mesh-setup radio1
This creates an open 802.11s interface with mesh ID fips-mesh and
HWMP forwarding off, attaches it to an unmanaged netifd interface (no
IP configuration — none is needed), uncomments the matching meshN
transport entry in /etc/fips/fips.yaml (see Step 2), and reloads the
radio. Interfaces are named by radio index: radio0 → fips-mesh0,
radio1 → fips-mesh1. Pass a second argument to use a different
mesh ID.
Note: the helper runs wifi reload, which re-applies the whole
wireless config and so briefly drops every client AP on all radios for
a few seconds. fips-mesh-setup remove reloads the same way. Expect
the blip if clients are connected.
On dual-band routers, meshing both bands is worth it: 2.4 GHz reaches further at lower rates, 5 GHz carries more over shorter links. Note this is failover, not multipath: FIPS keeps one active link per peer, so traffic uses one band at a time — the other is a standby that re-establishes the peer if the active link dies (detection via keepalive timeout, so a cutover takes seconds, not milliseconds):
fips-mesh-setup radio0
fips-mesh-setup radio1
Pin the same channel on every backhaul router, per band. Mesh
points only peer on the same channel, and the mesh inherits whatever
the radio is set to — with channel 'auto' (the default on many
devices) each router picks its own and the mesh silently never forms.
The script prints the radio's current band and channel and warns on
auto:
uci set wireless.radio1.channel='36'
uci commit wireless && wifi reload
Prefer a non-DFS channel (36–48 on 5 GHz): on DFS channels the radio must wait ~60 s in CAC before transmitting after every reload.
Equivalent manual UCI (per radio), if you prefer to see what it does:
uci batch <<'EOF'
set wireless.fips_mesh_radio1=wifi-iface
set wireless.fips_mesh_radio1.device='radio1'
set wireless.fips_mesh_radio1.mode='mesh'
set wireless.fips_mesh_radio1.mesh_id='fips-mesh'
set wireless.fips_mesh_radio1.encryption='none'
set wireless.fips_mesh_radio1.mesh_fwding='0'
set wireless.fips_mesh_radio1.ifname='fips-mesh1'
set wireless.fips_mesh_radio1.network='fips_mesh_radio1'
set network.fips_mesh_radio1=interface
set network.fips_mesh_radio1.proto='none'
EOF
uci commit
wifi reload
Step 2 — check the FIPS transport binding
The fips.yaml shipped in the OpenWrt package carries one transport
entry per radio, but commented out — so a stock install that never
runs this helper logs no per-boot "interface missing" warning.
fips-mesh-setup uncommented the matching meshN entry in Step 1, so
there is normally nothing to do here. If you maintain your own config
(or ran the manual UCI above instead of the helper), make sure the
entries are present and uncommented:
transports:
ethernet:
mesh0:
interface: "fips-mesh0"
discovery: true
announce: true
auto_connect: true
accept_connections: true
mesh1:
interface: "fips-mesh1"
discovery: true
announce: true
auto_connect: true
accept_connections: true
Step 3 — restart the daemon (order matters)
/etc/init.d/fips restart
Restart fips after the mesh interface is up. A transport whose interface is missing at startup is logged and skipped, not retried — so if the daemon comes up before the radio, the mesh transport stays dead until the next restart. (An interface that vanishes and returns after startup is recovered automatically; only the missing- at-startup case needs this ordering.)
Verify
L2 first — the 802.11s peering, with a second configured router in range:
iw dev fips-mesh0 station dump
You should see one station entry per neighbor router, with signal levels. No entries means a radio problem, not a FIPS problem — triage in this order:
-
Channel mismatch (the most common cause): compare
iw dev fips-mesh0 infoon both routers — mesh ID and channel must match exactly. -
The mesh interface never joined —
iw dev fips-meshX infoshowstype mesh pointbut no channel line, andstation dumpis empty. Usual cause: a client (sta) interface on the same radio. A STA must follow its upstream AP's channel, the whole radio follows the STA, and a mesh pinned to a different channel silently stays down. Check for a STA sharing the radio (iw dev, look fortype managedon the same phy), compareiw dev <sta-iface> info | grep channel, and re-pin the mesh channel to match — on every backhaul router. -
Is the other router transmitting at all?
iw dev fips-mesh0 scan | grep -i -B4 "MESH ID"Its mesh ID visible → transmission works, peering is failing (mesh ID typo, or one side has encryption set). Nothing visible → check
wifi statuson the other router, remember the ~60 s DFS CAC wait, and confirm the country code is set (uci get wireless.radio1.country) — an unset regdomain can block channels entirely. -
logread | grep -iE "mesh|fips-mesh0"on both sides.
Then the FIPS layer on top:
logread | grep -i beacon # beacons flowing on the new transport
fipsctl show peers # neighbor authenticated and connected
fipsctl show links # link on the 'ethernet' transport
Discovery is automatic: each node beacons its pubkey every few
seconds, and auto_connect initiates the Noise handshake on first
sight.
Constraints
- Airtime is shared per radio. All virtual interfaces on one
radio (AP + mesh) share one channel, and multi-hop forwarding on a
single radio roughly halves throughput per hop. On dual/tri-band
hardware, dedicate one band to
fips-mesh0and serve clients on the others. - AP + mesh coexistence is driver-dependent. It works on the
mainstream chips (this is the standard Freifunk/Gluon setup), but
check
iw listunder "valid interface combinations" for your hardware. - Clients can't join. Phones and laptops reach the mesh through the router's normal AP or via BLE — never through the 802.11s interface.
- Radio links are lossy. A neighbor at the edge of range will form an 802.11s peering yet deliver a fraction of its frames. Expect link-quality effects that don't exist on wired Ethernet.
- A client (STA) uplink on the same radio owns the channel. The
STA must follow whatever channel its upstream AP uses; every other
interface on that radio follows the STA. A mesh pinned to a
different channel silently never joins, and it does not recover
when the STA disconnects — a
wifi reload(plus a fips restart) is needed. A roaming uplink (travel-router / hotspot-chasing setups) is fundamentally incompatible with a fixed-channel mesh on the same radio: dedicate the mesh to the radio the STA never uses, and treat any mesh sharing a STA radio as best-effort.