SSH client on Windows
There are various programs that can be used for creating a remote SSH connection on a Windows system. This page provides instructions for three popular alternatives: PowerShell, PuTTY and MobaXterm.
PowerShell
Basic usage (PowerShell)
You can use the Windows PowerShell command-line shell to connect to a CSC supercomputer using the Win32 OpenSSH client. To install OpenSSH on a Windows device, follow these installation instructions. After installing OpenSSH, you can connect to a CSC supercomputer by opening PowerShell and running:
# Replace <username> with the name of your CSC user account and
# <host> with "puhti" or "mahti"
ssh <username>@<host>.csc.fi
Graphical connection (PowerShell)
If you want to create a connection with graphical support, you can use, for example, the Xming X server. To enable displaying graphics remotely, run:
$env:DISPLAY="localhost:0.0"
Then, use the -X
(X11 forwarding) or -Y
(trusted X11 forwarding) option when
creating the connection:
ssh -X <username>@<host>.csc.fi
Generating SSH keys (PowerShell)
You can generate SSH keys using PowerShell by running:
ssh-keygen -o -a 100 -t ed25519
Using SSH keys
See the page on setting up SSH keys for general information about using SSH keys for authentication.
Copying public key to supercomputer (PowerShell)
The recommended way to copy a public key to a supercomputer is through the My CSC customer portal. Alternatively, you can do it using PowerShell by running the following command:
# The default location for SSH keys is "C:\Users\<local-user>\.ssh\"
# and the default ED25519 key ID is "id_ed25519"
cat C:\Users\<local-user>\.ssh\<key-id>.pub | ssh <csc-user>@<host>.csc.fi "cat >> ~/.ssh/authorized_keys"
Authentication agent (PowerShell)
To avoid having to type your passphrase every time you connect, you can configure the Windows SSH agent to store your keys in memory for the duration of your local login session.
Corrupted MAC on input
When connecting using the OpenSSH client software on Windows, you might encounter an error stating "Corrupted MAC on input". This is a known issue, and can be avoided by explicitly choosing a different MAC algorithm. For details, please see our FAQ page on the topic.
PuTTY
Basic usage (PuTTY)
The PuTTY SSH client is an alternative to using OpenSSH.
When you launch PuTTY, you are asked to configure your SSH session. Do so
according to the table below and click Open
. You will be asked for your CSC
username and password, after which you are connected to the supercomputer.
Option | Value |
---|---|
Host Name | puhti.csc.fi or mahti.csc.fi |
Port | 22 |
Connection type | SSH |
Graphical connection (PuTTY)
If you want to create a connection with graphical support,
you can use, for example, the
Xming X server. To enable displaying
graphics remotely, select Enable X11 forwarding
in the PuTTY program settings
(Connection --> SSH --> X11
).
Generating SSH keys (PuTTY)
To generate SSH keys for connecting with PuTTY, use the PuTTYgen key generator. The PuTTY documentation provides instructions for using PuTTYgen.
Copying public key to supercomputer (PuTTY)
The recommended way to copy a public key to a supercomputer is through the My CSC customer portal. Alternatively, you can do it using PuTTY by following the instructions below.
- Do one of the following:
- Copy the public key (
ssh-ed25519 ...
) displayed in the PuTTYgen main window to your clipboard. Make sure to scroll down to the bottom of the text box. - Edit the public key file written by PuTTYgen so that all the file contents are on one row and the key sequence does not contain any spaces. Copy the public key from the file to your clipboard.
- Copy the public key (
- Connect to a supercomputer using SSH and open the
~/.ssh/authorized_keys
file using a text editor. Paste your copied public key to the end of the file and save the file.
Using SSH keys
See the page on setting up SSH keys for general information about using SSH keys for authentication.
Connecting with SSH keys (PuTTY)
When creating a remote connection using PuTTY, select the private key file
under Connection --> SSH --> Auth
. If you want the private key to be
used each time you connect, save your session to store your choice.
Authentication agent (PuTTY)
To avoid having to type your passphrase every time you connect, you can use the Pageant authentication agent to store your private keys in memory.
MobaXterm
Basic usage (MobaXterm)
MobaXterm is an SSH client with an embedded X server, which means that it can be used to display graphics. To connect using MobaXterm, open the terminal and run:
# Replace <username> with the name of your CSC user account and
# <host> with "puhti" or "mahti"
ssh <username>@<host>.csc.fi
Graphical connection (MobaXterm)
To enable displaying graphics over SSH, use the -X
(X11 forwarding) or -Y
(trusted X11 forwarding) option when creating the connection:
ssh -X <username>@<host>.csc.fi
Generating SSH keys (MobaXterm)
You can generate SSH keys using MobaXterm by running:
ssh-keygen -o -a 100 -t ed25519
If you want your generated keys to persist through MobaXterm restarts,
set a persistent home directory for MobaXterm in the program settings
(Settings --> Configuration --> General
).
Using SSH keys
See the page on setting up SSH keys for general information about using SSH keys for authentication.
Copying public key to supercomputer (MobaXterm)
The recommended way to copy a public key to a supercomputer is
through the My CSC customer portal.
Alternatively, you can do it in MobaXterm using the ssh-copy-id
utility:
ssh-copy-id <username>@<host>.csc.fi
You will be asked for your CSC password (not the passphrase for the SSH key). Subsequent logins using the SSH key pair will ask for the passphrase.
Authentication agent (MobaXterm)
To avoid having to type your passphrase every time you connect, enable the
MobAgent authentication agent in the program settings (Settings -->
Configuration --> SSH
).