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

From Lsdf
(Add migration note)
(Tag: Replaced)
 
(29 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
This page has been updated and migrated to the new docs site:
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.
 
   
  +
https://www.lsdf.kit.edu/docs/ssh/
SSH access to the LSDF Online Storage is provided via a cluster of login servers reachable at the address '''os-login.lsdf.kit.edu'''.
 
 
__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]
 
 
 
 
[[Category:LSDF_Online_Storage]]
 

Latest revision as of 18:50, 21 February 2023

This page has been updated and migrated to the new docs site:

https://www.lsdf.kit.edu/docs/ssh/