Difference between revisions of "LSDF Online Storage: Secure Shell"

From Lsdf
Line 1: Line 1:
  +
Secure Shell or SSH refers to both a cryptographic network protocol as well a number of applications that can be used to establish a secure connect with a service provider like the LSDF Online Storage. SSH is typically used to login interactively to a remote machine and execute commands, but it can also be used to transfer file using the protocols SSH File Transfer Protocol (SFTP) or Secure Copy (SCP). The SSH Filesystem (SSHFS) is a file system client based on the SSH protocol which allows to locally mount and interact with directories and files located on a remote server.
{{DISPLAYTITLE:Secure_Shell}}
 
   
  +
SSH access to the LSDF Online Storage is provided via a cluster of login servers reachable at the address '''os-login.lsdf.kit.edu'''.
= Secure Shell =
 
   
  +
__FORCETOC__
   
  +
== Using SSH with a Linux Client ==
   
  +
To interactively login to the LSDF Online Storage login cluster:
  +
  +
<syntaxhighlight lang="bash" line='line'>
  +
$ ssh xy1234@os-login.lsdf.kit.edu
  +
</syntaxhighlight>
  +
  +
  +
<pre>
  +
>ssh xy1234@os-login.lsdf.kit.edu
  +
</pre>
  +
  +
  +
Accessing Access per ssh key:
  +
  +
'''Example:'''
  +
<pre>
  +
>ssh-keygen -b 2048 -t rsa -C "Login username"
  +
>ssh-copy-id -i ~/.ssh/id_rsa.pub xy1234@os-login.lsdf.kit.edu
  +
</pre>
  +
<br>
  +
'''Attention:''' Posix style file commands (for instance '''chmod''') must not be applied on files on a CIFS share. This may revoke sharing and Access Lists (ACLs), steering the access to the files.
  +
  +
  +
  +
== Using SSH with Windows and Mac Clients ==
  +
  +
  +
  +
== External Links ==
  +
  +
[https://en.wikipedia.org/wiki/Secure_Shell Secure Shell]
   
   

Revision as of 10:10, 16 April 2019

Secure Shell or SSH refers to both a cryptographic network protocol as well a number of applications that can be used to establish a secure connect with a service provider like the LSDF Online Storage. SSH is typically used to login interactively to a remote machine and execute commands, but it can also be used to transfer file using the protocols SSH File Transfer Protocol (SFTP) or Secure Copy (SCP). The SSH Filesystem (SSHFS) is a file system client based on the SSH protocol which allows to locally mount and interact with directories and files located on a remote server.

SSH access to the LSDF Online Storage is provided via a cluster of login servers reachable at the address os-login.lsdf.kit.edu.


Using SSH with a Linux Client

To interactively login to the LSDF Online Storage login cluster:

<syntaxhighlight lang="bash" line='line'> $ ssh xy1234@os-login.lsdf.kit.edu </syntaxhighlight>


>ssh xy1234@os-login.lsdf.kit.edu


Accessing Access per ssh key:

Example:

>ssh-keygen -b 2048 -t rsa -C "Login username"
>ssh-copy-id -i ~/.ssh/id_rsa.pub xy1234@os-login.lsdf.kit.edu


Attention: Posix style file commands (for instance chmod) must not be applied on files on a CIFS share. This may revoke sharing and Access Lists (ACLs), steering the access to the files.


Using SSH with Windows and Mac Clients

External Links

Secure Shell