Getting started

Send your first ZFS snapshot to a conduit using native zfs send | ssh. No agents, no wrappers.

Sign in and click + New conduit. Choose a plan and region, paste your SSH public key, and complete checkout. Your jail is provisioned in under 60 seconds.
Once active, your conduit row shows the full command pre-filled with your hostname, port, and dataset path. Copy it with the ⎘ copy button.
Replace YOUR_DATASET with the name of the local ZFS dataset you want to back up (e.g. tank/data).
$ zfs send -Rv YOUR_DATASET | ssh [email protected] -p 2201 zfs recv conduits/sub_abc123/data
The -R flag includes all child datasets and snapshots. The -v flag prints progress. The first send transfers the full dataset; subsequent sends can use -i for incremental replication.
SSH into your conduit and list the received datasets to confirm everything arrived:
$ ssh [email protected] -p 2201 zfs list