Skip to main content

SSH Commands

Manage SSH keys for accessing your clusters with the tp ssh command group.

SSH Key Management

SSH key management features are currently being developed. For now, you can provide your public SSH key when creating clusters using the -i flag.

Accessing Clusters

To access your clusters, use the TensorPool CLI:
tp ssh connect <instance_id>

Generating SSH Keys

If you don’t have SSH keys, generate them:
ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519
This creates:
  • ~/.ssh/id_ed25519 - Your private key (keep secure!)
  • ~/.ssh/id_ed25519.pub - Your public key (used when creating clusters)

Using SSH Keys

When creating a cluster, specify your public key:
tp cluster create -i ~/.ssh/id_ed25519.pub -t 1xH100

Next Steps

I