Install SSH Locally
SSH (Secure Shell) is required for secure file transfers to ImmuneVISTA via SFTP. Follow the instructions for your operating system below.
macOS
SSH is pre-installed on macOS. Open Terminal and verify with:
ssh -VYou should see output like OpenSSH_9.x, ...
Windows
Windows 10/11 includes OpenSSH. Enable it via Settings:
- Open Settings → Apps → Optional Features
- Search for OpenSSH Client
- Click Install
Then verify in PowerShell:
ssh -VAlternatively, install PuTTY or use WSL (Windows Subsystem for Linux).
Linux
Install via your package manager:
# Ubuntu / Debian
sudo apt-get install openssh-client
# CentOS / RHEL
sudo yum install openssh-clientsGenerate an SSH Key Pair
Create a key pair for passwordless authentication (recommended):
ssh-keygen -t ed25519 -C "your_email@institution.edu"When prompted, accept the default file location. Your public key will be at ~/.ssh/id_ed25519.pub. Share this public key with the DMAC team when requesting access.