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

Unidirectional Data Diodes

A hardware data diode enforces one-way flow at the physics layer: telemetry leaves OT for analysis while no bit can travel back into the machine.

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.

Enforcement in hardware, not policy

A data diode passes light or electrons in one direction only - typically a transmit-only fiber optic with no receive path physically present. Because the reverse channel does not exist, no software misconfiguration, zero-day, or insider rule change can turn it into a two-way link. Kronos uses diodes at the level 3.5 boundary to export the high-volume, high-value OT telemetry stream (diagnostics, twin state, audit lineage) to IT and offsite analysis while guaranteeing the machine cannot be commanded through that path.

Solving the TCP problem

Most protocols need acknowledgements, which a strict diode forbids. Kronos uses a proxy pair: a send-side agent in OT terminates the local TCP session, serializes data with forward error correction, and streams it across the diode; a receive-side agent in IT reconstructs and re-offers it. Reliability is bought with redundancy, not back-channels.

python
# Diode send-side framing (conceptual)
# No ACKs cross the diode; loss is masked by FEC + sequence gaps.
def diode_send(record):
    frame = serialize(record)                 # canonical bytes
    frame += reed_solomon_parity(frame, k=32) # forward error correction
    for shard in interleave(frame):
        emit_tx_only(shard, seq=next_seq())   # transmit-only fiber
    # receiver detects gaps via seq; cannot request retransmit

What crosses which way

Design status

Diode framing, FEC, and the proxy pair are implemented and tested against the digital twin's telemetry firehose. The physical diode hardware is specified for the FOAK boundary build; today the one-way constraint is emulated so downstream analytics and the immutable audit log can be exercised end to end.

Content reviewed August 2026 · design-and-simulation stage