location: Diff for "ssh"

Institute of Mathematics - PublicMathWiki:

Differences between revisions 10 and 11
Revision 10 as of 2011-08-09 10:00:15
Size: 6744
Editor: felix
Comment:
Revision 11 as of 2013-04-25 14:16:36
Size: 6704
Editor: frankm
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
Line 12: Line 11:
||<rowbgcolor="#dddddd">OS ||Application ||Download ||
||Linux ||Nautilus ||built in ||
||Windows ||WinSCP ||http://winscp.net/eng/download.php ||
||MacOS X ||Cyber Duck ||http://cyberduck.ch/ ||
Line 13: Line 16:
||<rowbgcolor="#dddddd"> OS || Application || Download ||
|| Linux || Nautilus || built in ||
|| Windows || WinSCP || http://winscp.net/eng/download.php ||
|| MacOS X || Cyber Duck || http://cyberduck.ch/ ||
Line 19: Line 18:
||<rowbgcolor="#dddddd">OS ||Application ||Download ||
||Linux ||ssh ||built in ||
||Windows ||Putty ||http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html ||
||MacOS X ||ssh ||built in ||
Line 20: Line 23:
||<rowbgcolor="#dddddd"> OS || Application || Download ||
|| Linux || ssh || built in ||
|| Windows || Putty|| http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html ||
|| MacOS X || ssh || built in ||
Line 26: Line 25:
Line 27: Line 27:
   {{{scp -r login@ssh.math.uzh.ch:Desktop .}}}   . {{{scp -r login@ssh.math.uzh.ch:Desktop .}}}
Line 30: Line 30:
   {{{   . {{{
Line 43: Line 43:

Line 46: Line 44:
Line 50: Line 47:
Line 52: Line 48:
 2. Type in {{{  1. Type in
{{{
Line 54: Line 51:
}}} `ssh-keygen` will ask some questions. Just press ENTER. This will create a Private/Public key pair without passphrase.
 3. Still in the terminal, type in {{{
}}}
`ssh-keygen` will ask some questions. Just press ENTER. This will create a Private/Public key pair without passphrase.
 1. Still in the terminal, type in
{{{
Line 57: Line 56:
}}} and {{{ }}}
and
{{{
Line 60: Line 61:
 
Line 64: Line 65:
On Unix systems, the command `ssh-keygen` is used to create the Private/Public key pair, as shown in the example below
Line 65: Line 67:
On Unix systems, the command `ssh-keygen` is used to create the Private/Public key pair, as shown in the example below
Line 70: Line 71:
Enter passphrase (empty for no passphrase):  Enter passphrase (empty for no passphrase):
Line 78: Line 79:
Line 86: Line 86:
 2. entering a pass phrase and thus encrypting the private key (see below for a discussion of the pros and cons of setting a pass phrase)  1. entering a pass phrase and thus encrypting the private key (see below for a discussion of the pros and cons of setting a pass phrase)
Line 88: Line 88:
After
You need to create the private/public key pair only once.
After  You need to create the private/public key pair only once.
Line 92: Line 91:
After creating the key pair, you have to set up your account to make use of them. This is straight forward by adding your public key you created previously to the `.ssh/authorized_keys` file, e.g.
Line 93: Line 93:
After creating the key pair, you have to set up your account to make use of them. This is straight forward by adding your public key you created previously to the `.ssh/authorized_keys` file, e.g.
Line 97: Line 96:
You have to make sure this file has the proper permissions, else ssh refuses to authenticate using the private/public key mechanism. Therefore, do
Line 98: Line 98:
You have to make sure this file has the proper permissions, else ssh refuses to authenticate using the private/public key mechanism. Therefore, do
Line 102: Line 101:
Line 108: Line 106:

The above is all good and fine if you are using one of the Sun Ray Terminals, or SGD at IMATH. If you want to access the IT infrastructure of IMATH from the outside using SSH, follow those steps
The above is all good and fine if you are using one of the Terminals, or SGD at IMATH. If you want to access the IT infrastructure of IMATH from the outside using SSH, follow those steps
Line 112: Line 109:
 2. Copy the public key to your IMATH account for example by using `scp`.
 3. Log in to the IMATH IT infrastructure and type on in a terminal {{{
 1. Copy the public key to your IMATH account for example by using `scp`.
 1. Log in to the IMATH IT infrastructure and type on in a terminal
{{{
Line 115: Line 113:
}}} Where `<publickey>` is the file name of the public key you copied in step 2. }}}
Where `<publickey>` is the file name of the public key you copied in step 2.
Line 118: Line 117:
Line 126: Line 124:
== no connection ==
The SSH Server is protected with an IP blacklist.
Line 127: Line 127:
== no connection ==

The SSH Server is protected with an IP blacklist.

An IP address will show up on the blacklist, if more than 3 logins (with an unknown user id) or 5 logins (with a known user id and a bad password) will occur during 5 days. 
An IP address will show up on the blacklist, if more than 3 logins (with an unknown user id) or 5 logins (with a known user id and a bad password) will occur during 5 days.

SSH

  • Server: ssh.math.uzh.ch

  • Username / Passworfd: <IMATH username> / <IMATH Password>

  • Usage
    • copy files: SFTP

    • start applications (text based and gui): SSH

Filetransfer - SFTP

OS

Application

Download

Linux

Nautilus

built in

Windows

WinSCP

http://winscp.net/eng/download.php

MacOS X

Cyber Duck

http://cyberduck.ch/

Shell

OS

Application

Download

Linux

ssh

built in

Windows

Putty

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

MacOS X

ssh

built in

Examples for console on Unix(-oid) systems (Linux, OSX, ...):

  • Copy the desktop from your math account to the local computer:
    • scp -r login@ssh.math.uzh.ch:Desktop .

    (replace login with your user name)

  • Copy files from baxter (compute) to your local computer outside the institute. This cannot be done directly, but using an SSH tunnel:

    • PORT=1234
      BAXTER=192.168.133.16
      LOGIN=login
      ssh -f $LOGIN@ssh.math.uzh.ch -L $PORT:$BAXTER:22 -N
      rsync --partial --progress --exclude=.svn -auvz -e "ssh -p $PORT" $LOGIN@localhost:/export/user/login/data .
      CMD="ps -eo pid,args | grep 'ssh -f $LOGIN@ssh.math.uzh.ch -L $PORT:$BAXTER:22' | grep -v  'grep' | cut -c1-6"
      PID=`eval $CMD`
      kill -9 $PID
      echo `eval $CMD`

    Here, PORT specifies the port number on your system used for the SSH tunnel (any random number larger than 1024 and less than 65535 should do, if not used by another program), BAXTER is the IP address of baxter, LOGIN your math account name, /export/user/login/data is the source directory, . the destination directory. The last four lines kill the SSH tunnel. The option --partial to rsync ensures that if the transfer breaks, you can continue it later.

Working with SSH Keys

SSH Keys are used for authentication to a remote system. Having SSH keys will relief you from typing in your password every time you log in to a remote system if properly set up.

Quick Start

  1. Log in to a Sun Ray Terminal at the Institute.
  2. Type in
    ssh-keygen -t rsa -b 2048

    ssh-keygen will ask some questions. Just press ENTER. This will create a Private/Public key pair without passphrase.

  3. Still in the terminal, type in
    cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys
    and
    chmod 600 $HOME/.ssh/authorized_keys

Now, you are able to log in to host you are granted ssh access without providing a password. For more information, read the sections below.

Private/Public Key Creation

On Unix systems, the command ssh-keygen is used to create the Private/Public key pair, as shown in the example below

$ ssh-keygen -t rsa -b 2048
Generating public/private rsa key pair.
Enter file in which to save the key (/home/<USER>/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/<USER>/.ssh/id_rsa.
Your public key has been saved in /home/<USER>/.ssh/id_rsa.pub.
The key fingerprint is:
ae:73:55:6a:22:68:2e:1e:10:df:e6:a3:5d:57:07:2a <USER>@<HOST>
$

The output may differ, depending on the system you invoke the command. The example will create a RSA private/public key (-t rsa) with 2048 bits (-b 2048).

When asked for the file in which to save the key, it is usually safe to go with the default, i.e. just pressing the ENTER key.

When asked for the passphrase, you have two choices:

  1. just pressing the ENTER key, hence not setting any passphrase, which in turn will leave your private key unprotected
  2. entering a pass phrase and thus encrypting the private key (see below for a discussion of the pros and cons of setting a pass phrase)

After You need to create the private/public key pair only once.

Using the Private/Public Key Pair for Authentication

After creating the key pair, you have to set up your account to make use of them. This is straight forward by adding your public key you created previously to the .ssh/authorized_keys file, e.g.

$ cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys

You have to make sure this file has the proper permissions, else ssh refuses to authenticate using the private/public key mechanism. Therefore, do

$ chmod 600 $HOME/.ssh/authorized_keys

Now, you are able to login to any system you are granted access without having to type in your password when using SSH. This is especially true if you did not set a pass phrase.

If you have set a passphrase, a dialog will pop up asking you for the pass phrase. You have to enter it only once, and it will be remembered for the duration of your session, thus any further ssh connections will work without the need to enter a pass phrase.

Using Private/Public Key Authentication from Outside IMATH

The above is all good and fine if you are using one of the Terminals, or SGD at IMATH. If you want to access the IT infrastructure of IMATH from the outside using SSH, follow those steps

  1. Create a SSH private/public key pair as described above for your private account (not your IMATH account).
  2. Copy the public key to your IMATH account for example by using scp.

  3. Log in to the IMATH IT infrastructure and type on in a terminal
    cat <publickey> >> $HOME/.ssh/authorized_keys

    Where <publickey> is the file name of the public key you copied in step 2.

Why using a Passphrase?

The passphrase is used to encrypt and decrypt your private key. If somehow some gets possession of your private key, he won't be able to use it unless he also knows the passphrase.

In case the private key is not protected by a passphrase, and the private key gets 'stolen', the thief is able to use the private key in order to log in on any computer you can, with your credentials.

So, the bottom line is to use a strong passphrase (>15 characters) to protect the private key. The security benefit outweighs the discomfort caused by the need to provide the passphrase the first time only the key is used.

Problems

no connection

The SSH Server is protected with an IP blacklist.

An IP address will show up on the blacklist, if more than 3 logins (with an unknown user id) or 5 logins (with a known user id and a bad password) will occur during 5 days.

A successfull login will reset the counter.

If you think your IP address have been blocked (indication: no password prompt appears), you can free your IP address easily:

http://www.math.uzh.ch/my > SSH > Open

PublicMathWiki: ssh (last edited 2024-01-21 09:55:21 by crose)