Skip to content

How to enroll a PPN node

← All revisions

23d0958b · PointSav Digital Systems ·

feat(how-to): add Getting Started remainder + Machine Authorization guides — 5 guides EN+ES pairs (Batch 3+4)

View the full record as of this revision →

@@ -0,0 +1,92 @@
---
schema: foundry-doc-v1
title: "How to enroll a PPN node"
slug: enroll-ppn-node
category: how-to
content_type: how-to
type: how-to
status: active
last_edited: 2026-06-14
editor: pointsav-engineering
paired_with: enroll-ppn-node.es.md
---

A PPN (PointSav Private Network) node is a physical or virtual machine that joins the platform's compute fleet. Enrolling a node means registering it with the fleet controller, starting the heartbeat agent, and verifying the node appears in the fleet's active inventory. This guide covers the enrollment sequence for a single node.

For the fleet architecture, see [[ppn-small-business-compute]]. For the service that manages fleet state, see [[service-vm-fleet]].

## Prerequisites

- A machine with network access to the fleet controller endpoint
- The `service-vm-host` binary deployed on the node (the per-node heartbeat agent)
- The fleet controller address and tenant ID provided by the platform administrator
- A terminal session on the node being enrolled

## Step 1: Verify the fleet controller is reachable

From the node, confirm the fleet controller responds before starting the heartbeat agent:

```
curl -s http://<fleet-controller-host>:9203/health
```

A successful response returns `{"status":"ok"}`. If the controller is unreachable, verify network routing and firewall rules before proceeding. Enrollment requires a live connection to the controller.

## Step 2: Configure the heartbeat agent

The `service-vm-host` heartbeat agent reads its configuration from environment variables or a local config file. Set the minimum required values:

```
FLEET_CONTROLLER_URL=http://<fleet-controller-host>:9203
TENANT_ID=<your-tenant-id>
NODE_ID=<unique-node-name>
```

`NODE_ID` must be unique within the tenant's namespace. Use a descriptive name that identifies the machine's role and location (e.g., `compute-west-01`). Once set, this identifier appears in the fleet inventory and in the WORM audit ledger.

## Step 3: Start the heartbeat agent

Start `service-vm-host` as a systemd service or directly from the command line:

```
service-vm-host --controller $FLEET_CONTROLLER_URL --tenant $TENANT_ID --node-id $NODE_ID
```

The agent sends an initial heartbeat immediately and then on its configured interval (default: 30 seconds). The first successful heartbeat registers the node with the fleet controller.

## Step 4: Verify enrollment in the fleet inventory

From a session with access to the fleet controller API, query the fleet for the new node:

```
curl -s "http://<fleet-controller-host>:9203/v1/vms?tenant_id=<your-tenant-id>"
```

The response includes an array of enrolled nodes. Find the entry for the `NODE_ID` you set in step 2. The entry shows `status`, `last_heartbeat`, and resource capacity fields populated from the first heartbeat.

If the node does not appear within 60 seconds of starting the agent, check the agent logs for connection errors. The most common causes are a wrong controller URL or a firewall blocking outbound connections on port 9203.

## Step 5: Confirm the ledger entry

Every heartbeat writes a WORM ledger entry. From the fleet controller or from `service-fs`, confirm a ledger record exists for the new node:

```
service-fs read --filter node-id=<NODE_ID> --limit 5
```

A successful enrollment produces at least one `NODE_HEARTBEAT` entry. The ledger entry is the permanent enrollment record — it cannot be deleted or altered.

## Key takeaways

- Enrollment happens on first heartbeat; no separate registration step is needed
- `NODE_ID` must be unique per tenant namespace; the fleet controller rejects duplicates
- A WORM ledger entry is created for every heartbeat — enrollment is permanently recorded
- If the node does not appear after 60 seconds, check the agent logs before assuming a network problem

## See also

- [[ppn-small-business-compute]] — the PPN fleet architecture and tenant model
- [[service-vm-fleet]] — the fleet controller service that manages enrolled nodes
- [[add-a-fleet-node]] — how to add a node to a running multi-node fleet (operational follow-on)
- [[verify-worm-ledger]] — verifying the ledger entries created during enrollment
- [[pair-a-new-device]] — the pairing protocol that governs device-level access tiers
Important Information

Important Information

Corporate structure. PointSav Digital Systems ("PointSav") is a trade name of Woodfine Capital Projects Inc. ("Woodfine"). PointSav does not itself offer, sell, or solicit any security. Any securities offering associated with Woodfine's real-property direct-hold solutions is made exclusively by Woodfine, and only by means of the applicable Private Placement Memorandum.

No investment advice. This wiki's content is provided for engineering, operational, research, and development purposes. Nothing on this wiki constitutes investment advice or a solicitation to invest in any Woodfine partnership or direct-hold solution.

Intellectual property. The PointSav name, trade name, wordmark, and marks, together with all current and future PointSav- and Totebox-branded products, services, and offerings — and the software, source code, documentation, design system, and all related materials — are proprietary to Woodfine and its affiliates, except for components identified as open source. No rights are granted except as expressly set out in a written license or agreement. See TRADEMARK.md in this repository for the full trademark notice.

Open source components. Portions of the platform are made available under permissive open-source licenses identified in the accompanying repository. Use of those components is governed by their respective license terms.

No warranty; informational use. Content on this wiki is provided for general informational purposes only and does not constitute a representation, warranty, or commitment with respect to product functionality, availability, pricing, or roadmap. Some articles describe planned or intended features, capabilities, and milestones — language such as "planned," "intended," "targeted," "may," and "expected" marks this forward-looking content, which is subject to change and does not constitute a commitment regarding future performance.

Confidentiality. Where an article describes an operational or deployment detail that is not intended for public disclosure, that article is not published on this wiki. Content here is general-purpose engineering documentation, not customer-specific configuration.

Jurisdiction. Woodfine Capital Projects Inc. is organized in British Columbia, Canada. References to the Sovereign Data Foundation on this wiki describe a planned or intended initiative only, not a current equity holder or active governance body.

Changes to this notice. PointSav may update this notice from time to time; the version posted on this page governs.

Not a filing system. This wiki is not a securities filing system, an electronic disclosure repository, or a substitute for SEDAR+ or any other regulatory filing system. Formal securities filings are made through the applicable regulatory filing system, not through this wiki.

Full disclaimer. This notice supplements, and does not replace, the full Disclaimers article. In the event of any conflict, the full Disclaimers article governs.

Read the full disclaimer →