Restructures /docs/ by reader purpose (tutorials, how-to, reference, design), adds the new-user-progression and operator-recipe content the prior layout lacked, runs an accuracy pass against current source across the pre-existing design docs, and rewrites the gateway feature-set documentation end-to-end around its actual operational profile (a niche feature designed for systems already serving DHCP/DNS to a LAN, with two independent halves — outbound LAN→mesh, inbound mesh→LAN — sharing one nftables table, one binary, and one control socket). Top-level README and getting-started rewritten around two equally-weighted deployment modes (overlay on existing IP networks; ground-up over non-IP transports). ## Additions - 11 new tutorials in docs/tutorials/: an 8-step new-user progression from single-daemon test-mesh peering through to a ground-up two-device mesh, an IPv6-adapter side-trip walkthrough, an Advanced Tutorials index, and a hand-held OpenWrt walk-through for fips-gateway deployment that exercises both halves of the feature. - 12 new how-tos in docs/how-to/: firewall activation, Nostr discovery (resolve / advertise / open across five scenarios), Tor onion (directory + control_port modes), UDP buffer tuning, unprivileged-user setup, persistent identity, host aliases, Bluetooth LE peering, MTU diagnostics, manual Linux-host gateway deployment (covers both halves), gateway troubleshooting (organised by half), and a section index. - 9 new reference docs in docs/reference/: configuration, wire formats, control-socket protocol, four CLI references (fips, fipsctl, fipstop, fips-gateway), security posture matrix, and Nostr events catalog. Configuration and wire-formats are renamed-and-extended from prior design/ versions; the other seven are net-new. - 6 new design docs: fips-concepts, fips-architecture, and fips-prior-work split out of the deleted fips-intro.md; consolidated fips-mmp and fips-mtu aggregations; and a new generic port-advertisement-and-nat-traversal doc (Nostr-signaled port advertisement plus UDP NAT-traversal protocol, FIPS as an example implementation, suitable for eventual NIP submission). - Top-level docs/getting-started.md walking through the binary-installer-only Install story. - packaging/common/hosts pre-populated with the eight public test-mesh nodes so shortnames resolve out of the box on every fresh install. ## Changes - 23 wire-format diagrams relocated to reference/diagrams/ alongside the wire-formats move. - 4 design diagrams corrected against source code (fips-protocol-stack, fips-identity-derivation, fips-coordinate-discovery, fips-routing-decision). - 10 pre-existing design docs reconciled with current source. Numeric corrections: stale link-MMP report bounds (now [1s, 5s] with 200 ms cold-start floor); UDP default MTU (now 1280, IPv6 minimum); node_addr formula (SHA-256(pubkey)[..16]); Noise patterns (IK at link, XK at session); peer-ACL semantics (strict allowlist requires ALL in peers.deny); daemon DNS upstream ([::1]:5354); on-the-wire bloom-filter size (1,071 bytes); obsolete Cargo-feature references (PR #79 dropped them) removed. - Transport framing tightened across the docs: TCP is for UDP-filtered networks (not NAT traversal); Tor is a deployment mode (not failover); WebSocket dropped (not a shipped FIPS transport); WiFi promoted to Implemented via Ethernet in infrastructure mode; classic-Bluetooth row removed (BLE is the only Bluetooth-mode transport). - docs/design/fips-gateway.md rewritten end-to-end to lead with the niche-feature framing and the two-halves structure. Title moved from "FIPS Outbound LAN Gateway" to "FIPS Gateway"; architecture section describes the common machinery (the fips-gateway service, the nftables table, the control socket) before splitting into separate "Outbound Half" and "Inbound Half" sections of equal weight; security considerations split per-half; no Future Work section (speculative directions live in the project tracker, not in protocol design docs). Inbound port forwarding is a first-class half rather than a buried "Implemented Extensions" subsection. - Gateway terminology unified across all gateway docs as a separate Linux service running alongside the fips daemon (its own systemd unit / OpenWrt init script). Container- pattern terms (sidecar) are reserved for the Docker/Kubernetes sidecar deployment examples — the testing/sidecar/ tree, examples/k8s-sidecar/, examples/sidecar-nostr-relay/, examples/wireguard-sidecar-macos/, and the related CHANGELOG / top-level README entries — where the term carries its standard container meaning. - Net-new design body content: rekey section in fips-mesh-layer (Noise IK msg1/msg2 over the established link, K-bit cutover, drain window, smaller-NodeAddr-wins tie-breaker on dual-init); Mesh Size Estimation and Antipoison FPR Cap sections in fips-bloom-filters; Mesh-Interface Query Filter subsection in fips-ipv6-adapter; failure-suppression knobs and clock- skew tolerance in fips-nostr-discovery; loop-rejection and mid-chain ancestor swap added to spanning-tree propagation / stability rules; Priority Chain in fips-mesh-operation renumbered to match the routing-decision diagram. - Top-level README: dropped the stale nostr-discovery cargo-feature parenthetical. docs/README.md and the four section READMEs (tutorials, how-to, reference, design) refreshed for the new structure; index rows reflect both halves of the gateway feature and the new fips-gateway CLI reference. - Cargo.toml [package.metadata.deb] assets path updated for the fips-security.md move; .gitignore /reference/ rule anchored to repo root so docs/reference/ is trackable. - packaging/openwrt-ipk/files/etc/fips/fips.yaml configuration-doc URL updated to the new docs/reference/configuration.md location. ## Deletions - docs/design/fips-intro.md (split into the three new intro design docs). - docs/design/document-relationships.svg (orphan, no longer referenced). - docs/proposals/ tree removed; the only proposal it contained (the Nostr UDP hole-punch protocol) was rewritten as the new generic design/port-advertisement-and-nat-traversal.md.
7.1 KiB
Provision a Persistent Identity
A FIPS node's identity is a Nostr keypair. Its public key (npub)
determines the node's fd00::/8 mesh address; peers and configs
reference the node by that npub. Out of the box the daemon generates
a fresh identity on every start (node.identity.persistent: false),
which is fine for one-off testing but useless when other nodes need
to refer to this one across restarts.
This guide covers the three ways to give a node a stable identity. For the configuration keys involved, see ../reference/configuration.md.
First time? If you have just installed FIPS and want a hand-held walkthrough of the package-default path (set
persistent: true, restart, observe the keys land), the persistent-identity tutorial is the gentler entry point. This guide assumes an operator picking among Options A/B/C for a deployment.
When to use
Use a persistent identity for any node that:
- Other operators reference by npub (in their
peerslists,hostsfiles, or ACL allow-lists). - Acts as a discoverable bootstrap or rendezvous (Nostr advert, static peer entry, gateway).
- Is expected to keep its
fd00::/8mesh address across restarts.
Stay with the ephemeral default for throw-away clients, sandbox nodes, and tests where you actively want a fresh identity per run.
Option A: Let the package do it
The Debian/Ubuntu .deb and the Arch fips AUR package both ship a
default /etc/fips/fips.yaml with node.identity.persistent left as
the upstream default (false), so the daemon writes a fresh keypair to
/etc/fips/fips.{key,pub} on every start until you set
persistent: true. To pin the current keypair:
-
Install the package and start the daemon once so it generates
fips.key/fips.pub:sudo systemctl start fips sudo systemctl status fips # confirm it came up -
Edit
/etc/fips/fips.yamland set:node: identity: persistent: true -
Restart the daemon and verify the identity is reused:
sudo systemctl restart fips fipsctl show status | grep -E '"npub"|"node_addr"' cat /etc/fips/fips.pubThe npub printed by
fipsctl show statusshould match/etc/fips/fips.puband remain stable across subsequent restarts.
The package's postinst script does not generate the keypair —
the daemon does, on first start. This means the keypair is only
present after the first successful daemon start. If the daemon never
came up cleanly (config error, permission problem), the key files
will be missing.
File layout and permissions
| Path | Mode | Owner | Contents |
|---|---|---|---|
/etc/fips/fips.key |
0600 |
root:root |
Bech32 nsec (one line). |
/etc/fips/fips.pub |
0644 |
root:root |
Bech32 npub (one line). |
Both files live next to the highest-priority fips.yaml the daemon
loaded. For non-systemd installs that use a different config path,
the key files are placed in that config's directory.
Option B: Generate manually
For from-source installs, custom config paths, or any deployment where you want to mint the keypair before the daemon ever runs.
With fipsctl keygen
sudo fipsctl keygen --dir /etc/fips
This writes /etc/fips/fips.key (mode 0600) and
/etc/fips/fips.pub (mode 0644), prints the new npub on stderr,
and reminds you to set persistent: true. Add --force to overwrite
an existing fips.key. Add --stdout to print nsec then npub
to stdout instead of writing files.
To put the keypair in a non-default directory (e.g., a per-deployment
config tree), pass --dir and point your fips.yaml search at the
matching directory.
Without the daemon installed
If you cannot run fipsctl (e.g., scripting on a build host), any
nostr-tools-equivalent that emits a bech32 nsec works. Write the
nsec to fips.key (mode 0600) and the corresponding npub to
fips.pub (mode 0644).
Hooking the keypair into the config
node:
identity:
persistent: true
persistent: true plus a fips.key next to the loaded config is the
intended steady-state setup.
Option C: Provision from an existing nsec
To migrate an existing Nostr identity into a FIPS node — for example, re-using a personal npub for a node you operate.
-
Obtain the bech32
nsecfor the identity. -
Write it to the config-adjacent key file:
sudo install -m 0600 -o root -g root /dev/null /etc/fips/fips.key sudo bash -c 'printf "%s\n" nsec1... > /etc/fips/fips.key' -
Derive the matching
npuband writefips.pub:# compute the npub with any nostr tool, then: sudo bash -c 'printf "%s\n" npub1... > /etc/fips/fips.pub' sudo chmod 0644 /etc/fips/fips.pub -
Set
persistent: trueand restart:node: identity: persistent: truesudo systemctl restart fips fipsctl show status | grep '"npub"'
The reported npub should match the one you wrote to fips.pub.
Verifying
The daemon prints the resolved identity at startup; the same value is queryable via the control socket:
fipsctl show status | jq '{npub, node_addr, ipv6_addr}'
cat /etc/fips/fips.pub
The npub field of show status and the contents of fips.pub
should match. The node_addr is the SHA-256 prefix used internally
by FMP/FSP; the ipv6_addr is the routable fd00::/8 mesh address
derived from the node addr. Together they are stable for the lifetime
of the keypair.
The journal also records the source on every start:
INFO Loaded persistent identity from key file path=/etc/fips/fips.key
(Generated persistent identity, saved to key file on the first
start; Using ephemeral identity (new keypair each start) when
persistence is off.)
Rotating
Key rotation is a destructive operation: every cached
(node_addr → npub) mapping on every other node points at the old
key, every Nostr advert and every static peer entry references the
old npub, and every existing FSP session was authenticated under the
old keypair. There is no in-protocol "key change" message.
To rotate:
-
Stop the daemon.
sudo systemctl stop fips -
Remove the existing key files.
sudo rm /etc/fips/fips.key /etc/fips/fips.pub -
Start the daemon. With
persistent: true, the daemon generates a new keypair and writes newfips.key/fips.pub.sudo systemctl start fips cat /etc/fips/fips.pub # the new npub -
Update every downstream reference: peer configs that name this node by npub,
hostsfiles, ACL allow-lists, Nostr adverts pinned by other operators.
There is no recovery from a lost fips.key — the npub is gone with
the secret. Treat key rotation as a coordinated event; do not rotate
production identities ad hoc.
See also
- ../reference/configuration.md —
node.identity.*keys. - ../reference/cli-fipsctl.md —
fipsctl keygen. - ../design/fips-architecture.md — identity model, npub-to-NodeAddr derivation.