Files
fips/docs/how-to/set-up-80211s-mesh-backhaul.md
ArjenandGitHub f624013b83 feat(openwrt): open !FIPS access SSID layer (#126)
Access layer for phones and laptops to reach FIPS routers on OpenWrt,
stacked on the 802.11s mesh backhaul from #123. Squashed from five
commits by Arjen (Origami74); their original messages follow.

* feat(openwrt): open !FIPS access SSID — fips-ap-setup helper, default transport binding, how-to

  Client access layer for phones and laptops: every FIPS router
  broadcasts the same open SSID ('!FIPS' — the leading '!' sorts it to
  the top of alphabetically ordered network pickers), forming one
  standard ESS. Clients save it once and roam between all FIPS routers
  natively, with FIPS's Noise IK handshake as the only security layer:

  - fips-ap-setup: opt-in UCI helper that creates the 'fips-ap0' open AP
    (encryption none — security type must be uniform across routers or
    clients treat the ESS as different saved networks), an isolated
    network with a static ULA /64, RA-only odhcpd addressing (stateless
    SLAAC, no DHCP — the minimum that satisfies Android's provisioning
    check; no internet by design, so phones keep cellular as default
    route), and a locked-down fips_ap firewall zone (no path to br-lan
    or the WAN; only ICMPv6, mDNS, and the FIPS transports reachable).
    'remove' subcommand undoes it. Radio setup stays opt-in; a package
    must not commandeer radios on install.
  - fips.yaml: ship 'ap0'/'ap1' Ethernet-transport entries commented out
    (matching the 802.11s mesh backhaul) so a stock install that never
    creates fips-ap* logs no per-boot "interface missing" bind warning;
    fips-ap-setup uncomments the matching block when it creates the
    interface and re-comments it on remove.
  - Regression test: extend shipped_openwrt_config_parses to assert the
    ap0/ap1 entries ship commented out and still parse once uncommented,
    alongside mesh0/mesh1.
  - Packaging: install the helper in ipk/apk/buildroot (three synced
    copies), extend CI structural checks and shellcheck targets.
  - docs/how-to/set-up-open-access-ssid.md: full guide, including the
    one-time 'no internet, stay connected' acceptance (stored per SSID,
    covers every FIPS router) and the security-type-uniformity
    constraint.

* docs(openwrt): correct open-SSID/mesh security framing — peering is open by design

  The fips-ap-setup/fips-mesh-setup comments and both how-tos claimed a
  stranger "cannot pass the FIPS handshake" / "their frames die at the
  handshake" / the handshake surface "drops them". That is wrong: FIPS
  peer admission is open. An inbound handshake from any net-new identity
  is promoted (node::handlers::handshake::promote_connection), gated only
  by the daemon's max-peers cap — there is no allowlist, no PSK, and the
  AuthChallenge path is not wired to admission. The Noise IK handshake
  provides authentication (no impersonation of another identity, no MITM),
  not authorization.

  Restate the model accurately in all five places: a stranger on the open
  SSID (or the open mesh) can associate AND form a FIPS peer link — that
  is the point of open access. Containment is the isolated fips_ap zone
  (no path to br-lan or the WAN) plus the max-peers cap, not the
  handshake. Clarify that AP client isolation is an L2 control only: a
  peered stranger is an overlay peer like any other, so the FIPS overlay,
  not L2, is the trust boundary between clients.

* feat(openwrt): serve DHCPv4 on the access SSID from a fixed roamable subnet

  RA-only addressing satisfied Android's provisioning check but left
  anything expecting IPv4 with a self-assigned address and a "no IP"
  complaint. dnsmasq now leases out of 10.21.<N>.0/24 (N = radio index;
  prefix echoes FIPS port 2121), deliberately identical on every router:
  a roaming client keeps its lease across the ESS, and dnsmasq's
  authoritative mode — the OpenWrt default, pinned by the helper — ACKs
  the renew a foreign router never issued. Lease collisions across
  routers surface as a NAK on renew and the client re-DHCPs.

  The dhcp section's 'dhcpv4 server' is read by both dnsmasq (default
  images) and odhcpd (only with maindhcp), so either arrangement serves.
  A DHCPv4/udp-67 accept rule joins the fips_ap zone; DHCPv6 stays off,
  the ULA RA stays as-is, and nothing depends on an upstream. The zone
  remains isolated — no forwardings, no internet.

* feat(openwrt): enable mDNS rendezvous from fips-ap-setup

  Phone FIPS apps cannot open raw-Ethernet sockets, so DNS-SD is how they
  find the router's daemon — but node.rendezvous.lan defaults to off. Ship
  the lan block commented in fips.yaml (consistent with the apN transport
  entries) and have fips-ap-setup uncomment it when creating the access
  SSID. The awk match is scoped to node.rendezvous because
  transports.ethernet carries a 'lan' entry at the same indent. The switch
  is daemon-wide, so 'remove' deliberately leaves it on rather than guess
  whether other transports rely on it.

* fix(openwrt): bind UDP dual-stack [::]:2121 so access-SSID clients reach it

  The shipped router config bound the UDP transport "0.0.0.0:2121" (IPv4
  wildcard) while the mDNS LAN advert announces every interface address,
  including the router's IPv6 link-local — which phones on the !FIPS
  access SSID rightly prefer (their cellular default route swallows v4,
  and fd00::/8 is captured by the Myco mesh TUN). Result: the client's
  Noise msg1 arrives on an unbound v6 port and is silently lost; the
  handshake resends and times out.

  Symptom chain (observed on-device): mDNS resolve OK, platform push OK,
  "Sent Noise handshake message 1" to [fe80::…%N]:2121, four resends, no
  reply, 30 s stale-timeout.

  OpenWrt is Linux (bindv6only=0), so "[::]" accepts IPv4 via v4-mapped
  addresses too — nothing is lost. packaging/common is deliberately left
  on "0.0.0.0" for now: Windows defaults IPV6_V6ONLY=1, where "[::]"
  would drop v4 instead.
2026-07-22 20:02:20 -07:00

9.7 KiB
Raw Permalink Blame History

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 and a FIPS peer link on top of it — the same open model as mDNS and BLE discovery, where the advert is only a hint and the handshake authenticates each link (no impersonation, no MITM) rather than gating who may peer. Admission is open up to the daemon's max-peers cap. What you concede: any nearby radio can peer and reach the FIPS overlay surface; L2 metadata (MAC addresses, frame sizes) is visible in the air; a hostile radio can burn airtime — all inherent to an open radio link.
  • 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: radio0fips-mesh0, radio1fips-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 (3648 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:

  1. Channel mismatch (the most common cause): compare iw dev fips-mesh0 info on both routers — mesh ID and channel must match exactly.

  2. The mesh interface never joinediw dev fips-meshX info shows type mesh point but no channel line, and station dump is 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 for type managed on the same phy), compare iw dev <sta-iface> info | grep channel, and re-pin the mesh channel to match — on every backhaul router.

  3. 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 status on 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.

  4. 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-mesh0 and 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 list under "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.