Difference between revisions of "SSH"

From HPC Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
[[Category:Basics]]
 
[[Category:Basics]]
 
== General ==
 
== General ==
Secure Shell (ssh) is a [[shell|commandline]]-tool for logging into a different computer over some network (e.g. the internet) and for executing commands on that machine, as if one would be sitting there instead of the own computer. So you use ssh to build a connection to the other computer and can then interact with it, using its [[shell]]. It is commonly used to [[Getting_Started#Login_or_.22How-to-now-actually-connect-to-the-supercomputer.22|login]] to the [[Nodes#Login|login nodes]] of a supercomputer.
+
SSH, also known as Secure Shell, is a [[shell|command-line]] tool that allows users to log into a remote computer over a network (e.g. the internet) and execute commands on that machine. This enables an interaction with the remote computer as if the user would be physically present. So using its [[shell]], ssh is commonly used to access the [[Nodes#Login|login nodes]] of supercomputers.
 
 
  
 
__TOC__
 
__TOC__
Line 8: Line 7:
  
 
== Access ==
 
== Access ==
OpenSSH is the standard ssh client on ''Linux'' and the ''Mac'' and it is freely available for everyone. <br />
+
OpenSSH is the standard ssh client for ''Linux'' and ''Mac'' operating systems, and is freely available to all users. <br />
On ''Windows'', you can use Putty, Bitvise or the GitBash (coming with ssh) which is also free. On Windows 10 since Update 1709, Microsoft has packaged "ssh" right into windows. You can thus open a '''cmd''' window (Start - type "cmd" - <ENTER>) and run <code>ssh username@hostname.domain</code> like you would with Linux or MacOS.
+
For ''Windows'' users, options include Putty, MobaXterm, Bitvise or the GitBash (coming with ssh) all of which are also free. Since Windows 10 Update 1709, Microsoft has integrated "ssh" into the system, allowing users to easily connect by opening a cmd window and running the "ssh" command. You can thus open a '''cmd''' window (Start - type "cmd" - <ENTER>) and run <code>ssh <username | University ID | Institution ID> @<hostname.domain | IP Adresse> </code> like you would with Linux or MacOS. Additionally, Microsoft has allowed users of windows 10 and later versions, to run a Linux distribution alongside their Windows environment by implementing Windows Subsystem for Linux or WSL. This feature enables users to enjoy the benefits of both a Windows operating system and a Linux environment without the need for dual-booting or virtualization, providing a compatibility layer that allows Linux system calls to be translated into Windows system calls. This allows users to run Linux binaries natively on their Windows system without the need for a separate Linux virtual machine.
 
+
Please note, that access to the cluster's login nodes is in almost all cases restricted to specific networks within a university or facility, making it necessary to connect from a campus network rather than from elsewhere. In such cases, users can use a [[VPN|Virtual Private Network (VPN)]] provided by the university to access the login nodes remotely.
Sometimes access to a cluster's login nodes is restricted to certain networks within the university/facility, so you can connect while being on the campus, but not from your network at home or at other institutions. To nevertheless access those login nodes from external, one can 'pretend to be inside the network' by using a [[VPN|Virtual Private Network (VPN)]] provided by the university operating the cluster.
 
  
 
== Usage ==
 
== Usage ==

Revision as of 16:06, 22 May 2024

General

SSH, also known as Secure Shell, is a command-line tool that allows users to log into a remote computer over a network (e.g. the internet) and execute commands on that machine. This enables an interaction with the remote computer as if the user would be physically present. So using its shell, ssh is commonly used to access the login nodes of supercomputers.


Access

OpenSSH is the standard ssh client for Linux and Mac operating systems, and is freely available to all users.
For Windows users, options include Putty, MobaXterm, Bitvise or the GitBash (coming with ssh) all of which are also free. Since Windows 10 Update 1709, Microsoft has integrated "ssh" into the system, allowing users to easily connect by opening a cmd window and running the "ssh" command. You can thus open a cmd window (Start - type "cmd" - <ENTER>) and run ssh <username | University ID | Institution ID> @<hostname.domain | IP Adresse> like you would with Linux or MacOS. Additionally, Microsoft has allowed users of windows 10 and later versions, to run a Linux distribution alongside their Windows environment by implementing Windows Subsystem for Linux or WSL. This feature enables users to enjoy the benefits of both a Windows operating system and a Linux environment without the need for dual-booting or virtualization, providing a compatibility layer that allows Linux system calls to be translated into Windows system calls. This allows users to run Linux binaries natively on their Windows system without the need for a separate Linux virtual machine. Please note, that access to the cluster's login nodes is in almost all cases restricted to specific networks within a university or facility, making it necessary to connect from a campus network rather than from elsewhere. In such cases, users can use a Virtual Private Network (VPN) provided by the university to access the login nodes remotely.

Usage

Logging in with OpenSSH on a Linux Cluster is done with:

$ ssh -l login@cluster

Here <login> is your username and <cluster> is one of the login nodes of the system, you are trying to connect to. At the first login you will be asked to verify the authenticity of the host. If the shown host is correct, enter yes. After pressing RETURN you will be prompted to enter your password for the provided username.

If you need to start graphical applications you need to enable X11 forwarding/X11 tunneling by your ssh client. For OpenSSH this is done by giving it the command line option -X (or -Y if the previous did not work):

$ ssh -X -l login@cluster

This might or might not work depending on the your operating system, because it requires an X11-Server running on your local machine, which is not available by default on Mac and Windows. To utilize graphical tools anyway, you might want to look into FastX, which provides the necessary functionality for Mac and Windows.

For more security and ease of use you should consider setting up authentication via ssh keys.

FAQs

slightly longer description

ssh manpage