Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › Security & Zero-Trust
Security & Zero-Trust

Microsegmentation of the OT Network

Beyond coarse zones, every controller pair is placed in its own micro-perimeter, so lateral movement between two OT nodes requires an explicit allow rule that mostly does not exist.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

Zones are not enough

Purdue levels stop north-south traversal but leave east-west movement inside a level open. An attacker who lands on one supervisory host will try to reach peers. Microsegmentation shrinks the perimeter to the individual workload: the magnet power-supply controller, the gas-injection controller, each diagnostic acquisition node, and each edge FPGA gets its own policy identity, and the default rule between any two is deny.

Identity-based, not IP-based

Rules are written against cryptographic workload identity (see zero-trust identity), not IP addresses, so re-cabling or DHCP churn cannot silently open a path. A flow is permitted only when the source identity, destination identity, port, and current plant mode all match an allow entry.

Allowed OT flows (rows=source, cols=dest): 1=allow 0=deny
1100010100110001

In the matrix above the four workloads are, in order, the L1 shape controller, the magnet supply, the gas-injection node, and the historian. Note the historian (last column) receives from many but originates to none - a sink, never a source into control.

Policy as code

python
# Microsegmentation allow-list evaluated per connection
def permit(flow, plant_mode):
    rule = policy.lookup(src=flow.src_id, dst=flow.dst_id, port=flow.port)
    if rule is None:
        return DENY                      # default deny
    if plant_mode not in rule.modes:     # e.g. no reconfig during a discharge
        return DENY
    audit(flow, rule.id, plant_mode)     # every decision is logged
    return ALLOW

Design status

The policy engine and identity-keyed allow-lists run in the twin OT network. Enforcement points (host firewalls, smart NICs, switch ACLs) are specified for FOAK. The blast-radius intent - one compromised node cannot reach the interlock chain - is validated by simulation, not yet by an operating plant.

Content reviewed August 2026 · design-and-simulation stage