HPC/Network Access/SSH Tunnel Setup on Linux and MacOS: Difference between revisions

From CNM Wiki
Jump to navigation Jump to search
 
(48 intermediate revisions by the same user not shown)
Line 10: Line 10:


2. Type:
2. Type:
  <font color="darkred">ssh -v -N -L 33301:clogin:22  ''username''@mega.cnm.anl.gov</font>
  <font color="darkred">ssh -v -L 33301:carbon:22  ''username''@mega.cnm.anl.gov</font>
: '''Do not type any further commands in this window.'''


3. Minimize that window - no further commands need be typed there.
3. Minimize that window - no further commands need be typed there.
Line 44: Line 45:
         Hostname mega.cnm.anl.gov
         Hostname mega.cnm.anl.gov
         User              ''argonne_user_name''
         User              ''argonne_user_name''
         LocalForward      33301  clogin:22
         LocalForward      33301  carbon:22
         LocalForward      33380  carbon:80
         LocalForward      33380  carbonmgmt:80
   
   
  Host clogin
  Host carbon
         Hostname localhost
         Hostname localhost
         User              ''argonne_user_name''
         User              ''argonne_user_name''
Line 53: Line 54:
         ForwardX11        yes
         ForwardX11        yes
         ForwardX11Trusted yes
         ForwardX11Trusted yes
        AddKeysToAgent    yes
* '''Replace''' the string ''argonne_user_name'' with the name of your Argonne domain account.
* '''Replace''' the string ''argonne_user_name'' with the name of your Argonne domain account.
* Remove write permissions to the config file, its parent directory, and your home for anyone but you:
* Remove write permissions to the config file, its parent directory, and your home for anyone but you:
Line 68: Line 70:
-->
-->
:* Simply Copy & Paste the line from this browser window to your terminal.
:* Simply Copy & Paste the line from this browser window to your terminal.
* Advanced users: See the ssh_config man page for syntax and options of the config file.
* Advanced users: See the ssh_config man page for syntax and options of the config file.


Line 74: Line 75:
With the config file in place, the commands in section [[#Manual setup]] above simplify to:
With the config file in place, the commands in section [[#Manual setup]] above simplify to:


: 1. Once:
: 1. In one window, run the following command, then minimize the window:
  <font color="darkred">ssh -v -N mega</font>
  <font color="darkred">ssh -v mega</font>
: Do not type any further commands here. (You can use the -N option to intentionally suppress a command prompt.)
 
: 2. Use other terminals as often as needed to log in interactively:
<font color="darkgreen">ssh carbon</font>
 
=== Advanced: Connecting to a specific login node ===
The configuration described above uses a generic host name {{host|carbon}}, which at present will lead to one specific login node.
However, you may want to connect to another node that you have used previously, such as to reconnect to a VNC sesssion.
To do so, change your .ssh/config to forward additional ports and set up more specific <code>Host</code> aliases.


: 2. As often as needed:
* Similar to the above, copy&paste the following text into your ~/.ssh/config file.
<font color="darkgreen">ssh clogin</font>


== Test remote graphics using X11 ==
NoHostAuthenticationForLocalhost yes
* In a terminal '''connected to a Carbon login node''', run the command:
  echo $DISPLAY
Host mega
: You should get something like:
        Hostname          mega.cnm.anl.gov
  localhost:''17.0''
        User              ''argonne_user_name''
[[Image:HPC 2011-06-23 xload example.png|right|60px]]
        LocalForward      33301  carbon:22
: The numeric part will vary.
        '''LocalForward      33305  clogin5:22'''
* Start a simple X11 program:
        '''LocalForward      33306 clogin6:22'''
  xload
        LocalForward      33380  carbonmgmt:80
: You should see a small window pop up on your screen.
* Close the window using its close button or press Ctrl-C in the terminal window.
Host carbon
        Port              33301
'''Host clogin5'''
        '''Port              33305'''
'''Host clogin6'''
        '''Port              33306'''
  Host carbon clogin*
        Hostname localhost
        User ''argonne_user_name''
        ForwardX11 yes
        ForwardX11Trusted yes
        AddKeysToAgent yes
<!--
        '''LocalForward      33307  clogin7:22'''
        '''LocalForward      33308 clogin8:22'''


[[Image:HPC 2011-06-23 gnuplot example.png|right|300px]]
'''Host clogin7'''
        '''Port              33307'''
'''Host clogin8'''
        '''Port              33308'''
-->
With this modified config file in place, you can connect to the network-default {{host|carbon}}, but also to the specific login hosts you configured.
: 1. Run once in your desktop session:
<font color="darkred">ssh -v mega</font>
: 2. Run as often as needed, any one of these commands:
<font color="darkgreen">ssh clogin5</font>
<font color="darkgreen">ssh clogin6</font>


* You can now use graphical applications on Carbon, for instance:
== Test remote graphics using X11 ==
gnuplot
# In a terminal '''connected to a Carbon login node''', run the command:
: This will start the gnuplot interpreter in a terminal.
#:: <source lang="bash">echo $DISPLAY</source>
* Create a sample plot – at the <code>gnuplot&gt; </code> prompt, type:
#:: You should get something like:
plot sin(x)
#:: <code>localhost:''17.0''</code>
* To exit the program:
#: The actual number will vary. [[Image:HPC 2011-06-23 xload example.png|right|60px]]
exit
# Start a simple X11 program:
#:: <source lang="bash">xload</source>
#: You should see a small window pop up on your screen, labeled "login5" or "login6".
# Close the window using its close button or press Ctrl-C in the terminal window.
# Now use graphical applications on Carbon, for instance: [[Image:HPC 2011-06-23 gnuplot example.png|right|300px]]
#:: <source lang="bash">gnuplot</source>
#: This will start the gnuplot interpreter in the terminal.
#* Create a sample plot. At the <code>gnuplot&gt; </code> prompt, type:
#*: <source lang="bash">plot sin(x)</source>
#* Exit the program:
#*: <source lang="bash">exit</source>


== File transfer ==
== File transfer ==
Line 107: Line 155:
* Do not use mega as an intermediate. Files stored there wil be deleted.
* Do not use mega as an intermediate. Files stored there wil be deleted.


; Prerequisite: The command examples below require that a tunnel-establishing '''''connection to <code>mega</code> is open'''''. Follow section [[#Manual setup]] or [[#Connecting with a config file]] above to open or re-open this connection if needed.
=== Without SSH config file ===
<!-- * Without a config file (''roughing it'') -->
Run the following '''example commands on your machine'''.
; Copy ''to'' Carbon – "push":
<font color="darkgreen">scp -P 33301 -p  'foofile'  ''argonne_user_name''@localhost:'dir/on/carbon/'</font>
; Copy ''from'' Carbon – "pull":
<font color="darkgreen">scp -P -p  ''argonne_user_name''@localhost:'dir/on/carbon/name_on_carbon'  destination_on_your_machine/</font>
* Type <code>localhost</code> as written. Together with the option <code>-P  33301</code> (or <code>-o port=''number''</code> for older scp versions) it refers to the tunnel that you have set up earlier.
* Replace ''<code>argonne_user_name</code>'' by the user name you have at Argonne.
=== With an SSH config file ===
Run the following '''example commands on your machine'''.
Run the following '''example commands on your machine'''.


==== Copy a file ''to'' Carbon (''push'' from outside) ====
==== Copy a file ''to'' Carbon (''push'' from outside) ====
  scp -p foo clogin:remote/path/
* With the above ssh/.config file in place:
  <font color="darkgreen">scp -p 'foofile' carbon:'dir/on/carbon/'</font>


==== Copy a whole directory ''to'' Carbon ====
==== Copy a whole directory ''to'' Carbon ====
Short of using tar or zip:
Short of using tar or zip:
  scp -rp local/path/ clogin:remote/path/
  <font color="darkgreen">scp -rp 'local/path/' carbon:'dir/on/carbon/'</font>
This method does not preserve symbolic links.
This method does not preserve symbolic links.


==== Copy a file ''from'' Carbon (''pull'' from outside) ====
==== Copy a file ''from'' Carbon (''pull'' from outside) ====
  scp -p clogin:remote/path/foo  local/path/
  <font color="darkgreen">scp -p carbon:remote/path/foo  local/path/</font>
  scp -p clogin:remote/path/foo  .
  <font color="darkgreen">scp -p carbon:remote/path/foo  .</font>
Note the trailing "." in the last example to copy to your current directory.
Note the trailing "." in the last example to copy to your current directory.
; Reverse tunneling
; Reverse tunneling
Line 128: Line 194:
# agent forwarding
# agent forwarding
# a <code>.ssh/config</code> file on Carbon, and
# a <code>.ssh/config</code> file on Carbon, and
# specifying <code>-R</code> command line options or <code>RemoteForward</code> config file directives when accessing clogin at the second stage.
# specifying <code>-R</code> command line options or <code>RemoteForward</code> config file directives when accessing {{host|carbon}} at the second stage.


==== Bonus – Intranet web access ====
==== Bonus – Intranet web access ====
Line 139: Line 205:


1. From the first session, open a connection to Mega and forward a port:
1. From the first session, open a connection to Mega and forward a port:
  <font color="darkred">ssh -v -N -L 33301:clogin:22  ''username''@mega.cnm.anl.gov</font>
  <font color="darkred">ssh -v -L 33301:carbon:22  ''username''@mega.cnm.anl.gov</font>
:* Do not type any further commands there.
:* '''Do not type any further commands there.'''


2. In the second session, test if you can reach Carbon interactively.
2. In the second session, test if you can reach Carbon interactively.
  <font color="darkgreen">ssh -Y -p 33301 username@localhost</font>
  <font color="darkgreen">ssh -Y -p 33301 -o NoHostAuthenticationForLocalhost=yes username@localhost</font>
:* Steps 1. and 2. are the very same commands as in section [[#Manual setup]].


3. Close the Carbon connection from step 2.
3. Close the Carbon connection from step 2.
Line 151: Line 216:


4. From the second session again, initiate the file transfer as:
4. From the second session again, initiate the file transfer as:
  <font color="darkgreen">scp -v -p -o port=33301 ''filename_remote'' ''username''@localhost''':'''[''target_directory/''][''filename_on_carbon'']</font>
  <font color="darkgreen">scp -v -p -o port=33301 -o NoHostAuthenticationForLocalhost=yes \
        ''filename_remote'' ''username''@localhost''':'''[''target_directory/''][''filename_on_carbon'']</font>
:* Replace <code>''username''</code> by the name of your Argonne account name.
:* Replace <code>''username''</code> by the name of your Argonne account name.
:* Note the ":" at the end of the host name, which tells the <code>scp</code> command that the copy target is on a remote host.
:* Note the ":" at the end of the host name, which tells the <code>scp</code> command that the copy target is on a remote host.
Line 159: Line 225:


== Advanced: Speeding up logins using ssh keys ==
== Advanced: Speeding up logins using ssh keys ==
Our SSH gatway host itself does not accept SSH keys – you must always type your password for the initial connection to Mega.
Once you have established this initial connection and your tunnels are configured, you can use SSH keys to log in to Carbon login nodes without further passwords.


=== Create a key ===
=== Create a key ===
Line 185: Line 255:


=== Using an ssh-agent ===
=== Using an ssh-agent ===
On modern systems, the mere presence of private keys with their default names triggers handling through ''ssh-agent'' and brings up a passphrase dialog at the start of the desktop session or when a key is first requested for an outgoing connection.  This is the case on MacOS X Leopard, where key management is largely automated through its general ''keychain'' concept; on Tiger, use [http://www.sshkeychain.org/ SSHKeychain.app].
On modern systems, the mere presence of private keys with their default names triggers handling through ''ssh-agent'' and brings up a passphrase dialog at the start of the desktop session or when a key is first requested for an outgoing connection.  This is the case on MacOS X since 10.5 (Leopard), where key management is secure and largely automated through its general ''keychain'' concept.


On older systems, you need to (a) set up the session to run under ''ssh agent'' and (b) request the passphrase upon login.  Circumstances vary widely.  Ask [http://www.google.com/search?hl=en&q=ssh-agent Google] or your local admin for help.  See also the page [http://kimmo.suominen.com/docs/ssh/ ''Getting started with SSH''].
On older systems, you need to (a) set up the session to run under ''ssh agent'' and (b) request the passphrase upon login.  Circumstances vary widely.  Ask [http://www.google.com/search?hl=en&q=ssh-agent Google] or your local admin for help.  See also the page [http://kimmo.suominen.com/docs/ssh/ ''Getting started with SSH''].


=== Place your public key on Carbon ===
=== Place your public key on Carbon ===
[[Image:HPC 2012-02-06 screenshot ssh agent password request.png|350px|thumb|Password dialog on connecting to clogin once keys are in place.]]
[[Image:HPC 2012-02-06 screenshot ssh agent password request.png|350px|thumb|Password dialog on connecting to {{host|carbon}} once keys are in place.]]
To productively use your ssh key pair, you need to transfer the public half to Carbon.
To productively use your ssh key pair, you need to transfer the public half to Carbon.


Line 198: Line 268:
* the ssh host alias <code><font color="red">mega</font></code> has been set up on '''<font color="green">yourcomputer</font>''' in <code>~/.ssh/config</code> and defines tunnels using <code>LocalForward</code> declarations.
* the ssh host alias <code><font color="red">mega</font></code> has been set up on '''<font color="green">yourcomputer</font>''' in <code>~/.ssh/config</code> and defines tunnels using <code>LocalForward</code> declarations.
* the tunnel connection for '''<font color="red">mega</font>''' is open, i.e., on '''<font color="green">yourcomputer</font>''', <code>ssh mega</code> runs in another terminal.
* the tunnel connection for '''<font color="red">mega</font>''' is open, i.e., on '''<font color="green">yourcomputer</font>''', <code>ssh mega</code> runs in another terminal.
* the ssh alias <code>clogin</code> has been set up as described above.
* the ssh alias {{host|carbon}} has been set up as described above.
* an interactive session <code>ssh clogin</code> succeeds.
* an interactive session <code>ssh carbon</code> succeeds.


<br clear="all" />
<br clear="all" />
Then, to transfer your public key from '''<font color="green">yourcomputer</font>''' to the Carbon login nodes, type:
Then, to transfer your public key from '''<font color="green">yourcomputer</font>''' to the Carbon login nodes, type:
  cat ~/.ssh/id_rsa.pub | ssh clogin "umask 033; mkdir -p .ssh; cat >> .ssh/authorized_keys"
  cat ~/.ssh/id_rsa.pub | ssh carbon "umask 033; mkdir -p .ssh; cat >> .ssh/authorized_keys"
This command will append the contents of your ssh public key on '''<font color="green">yourcomputer</font>''' to an <code>authorized_keys</code> file on Carbon.  The command above is more reliable than cut&paste across interactive terminal sessions.  If you created a dsa-type key, or chose your own name for the key pair, you'll have to cat the appropriate file instead.  Remember to use the ''public'' part of the key, i.e. the file <code>id_foo.pub</code>.
This command will append the contents of your ssh public key on '''<font color="green">yourcomputer</font>''' to an <code>authorized_keys</code> file on Carbon.  The command above is more reliable than cut&paste across interactive terminal sessions.  If you created a dsa-type key, or chose your own name for the key pair, you'll have to cat the appropriate file instead.  Remember to use the ''public'' part of the key, i.e. the file <code>id_foo.pub</code>.


=== Troubleshooting ===
== Troubleshooting ==
 
=== General connection issues ===
Run <code>ssh</code> with one or more <code>-v</code> options ("verbosity"), and record the output for diagnostic (copy&paste into a file). E.g.:
<source lang="bash">
ssh -v -v [other options and arguments …]
</source>
If you cannot resolve the issue yourself, follow [[HPC/Support]].
 
=== Public keys ===
If public keys do not work, use your password to gain access, then check the following:
If public keys do not work, use your password to gain access, then check the following:
; Permissions: The directories and the <code>authorized_keys</code> file must, at the least, not be writable by anyone except yourself; other permissions are recommended to be restrictive as well:
; Permissions: The directories and the <code>authorized_keys</code> file must, at the least, not be writable by anyone except yourself; other permissions are recommended to be restrictive as well:

Latest revision as of 21:11, March 14, 2024

The following sections document how to establish ssh tunneling on a Linux or MacOS X machine running OpenSSH. Numerous Windows solutions are available to provide the same functionality, but details vary considerably.

Manual setup

HPC 2012-02-06 screenshot sketch ssh tunneling windows.png

On your computer, run the following commands:

0. (Windows only) Start your X11 server if you have one.

1. Open a terminal window (such as Mac Terminal, Cygwin, PuTTY, or xterm).

2. Type:

ssh -v -L 33301:carbon:22  username@mega.cnm.anl.gov
Do not type any further commands in this window.

3. Minimize that window - no further commands need be typed there.

4. Open another terminal window.

5. Type:

ssh -Y -p 33301 username@localhost
  • Replace username by the name of your Argonne account name.
  • Steps 4 and 5 can be repeated as often as desired.

Do not type any commands at a prompt on mega.

Using an ssh config file

To simplify making connections from your computer, create or use an ssh configuration file on it.

Config file contents

On your computer:

  • Close any Carbon windows opened previously.
  • Open a new terminal window.
    • Linux: xterm
    • Mac: Terminal.app
    • Windows: a Cygwin window.
  • Copy&paste the following text into your ~/.ssh/config file.
NoHostAuthenticationForLocalhost yes

Host mega
        Hostname mega.cnm.anl.gov
        User              argonne_user_name
        LocalForward      33301  carbon:22
        LocalForward      33380  carbonmgmt:80

Host carbon
        Hostname localhost
        User              argonne_user_name
        Port              33301
        ForwardX11        yes
        ForwardX11Trusted yes
        AddKeysToAgent    yes
  • Replace the string argonne_user_name with the name of your Argonne domain account.
  • Remove write permissions to the config file, its parent directory, and your home for anyone but you:
chmod go-rwx ~/.ssh ~/.ssh/config
chmod go-w ~
  • Note for Cygwin users: To paste text into a Cygwin window, right-click with your mouse or use the Shift-Ins keyboard shortcut.
  • Simply Copy & Paste the line from this browser window to your terminal.
  • Advanced users: See the ssh_config man page for syntax and options of the config file.

Connecting with a config file

With the config file in place, the commands in section #Manual setup above simplify to:

1. In one window, run the following command, then minimize the window:
ssh -v mega
Do not type any further commands here. (You can use the -N option to intentionally suppress a command prompt.)
2. Use other terminals as often as needed to log in interactively:
ssh carbon

Advanced: Connecting to a specific login node

The configuration described above uses a generic host name carbon, which at present will lead to one specific login node. However, you may want to connect to another node that you have used previously, such as to reconnect to a VNC sesssion. To do so, change your .ssh/config to forward additional ports and set up more specific Host aliases.

  • Similar to the above, copy&paste the following text into your ~/.ssh/config file.
NoHostAuthenticationForLocalhost yes

Host mega
        Hostname          mega.cnm.anl.gov
        User              argonne_user_name
        LocalForward      33301  carbon:22
        LocalForward      33305  clogin5:22
        LocalForward      33306  clogin6:22
        LocalForward      33380  carbonmgmt:80

Host carbon
        Port              33301

Host clogin5
        Port              33305

Host clogin6
        Port              33306

Host carbon clogin*
        Hostname		localhost
        User			argonne_user_name
        ForwardX11		yes
        ForwardX11Trusted	yes
        AddKeysToAgent		yes

With this modified config file in place, you can connect to the network-default carbon, but also to the specific login hosts you configured.

1. Run once in your desktop session:
ssh -v mega
2. Run as often as needed, any one of these commands:
ssh clogin5
ssh clogin6

Test remote graphics using X11

  1. In a terminal connected to a Carbon login node, run the command:
    echo $DISPLAY
    
    You should get something like:
    localhost:17.0
    The actual number will vary.
    HPC 2011-06-23 xload example.png
  2. Start a simple X11 program:
    xload
    
    You should see a small window pop up on your screen, labeled "login5" or "login6".
  3. Close the window using its close button or press Ctrl-C in the terminal window.
  4. Now use graphical applications on Carbon, for instance:
    HPC 2011-06-23 gnuplot example.png
    gnuplot
    
    This will start the gnuplot interpreter in the terminal.
    • Create a sample plot. At the gnuplot> prompt, type:
      plot sin(x)
      
    • Exit the program:
      exit
      

File transfer

  • There are many ways to transfer files through an ssh tunnel. However, you must always initiate the connection from the remote machine (your home computer), and either push files to Carbon or pull files from Carbon.
  • With the above tunnel setup you cannot initiate a file transfer from Carbon or mega.
  • Do not use mega as an intermediate. Files stored there wil be deleted.
Prerequisite
The command examples below require that a tunnel-establishing connection to mega is open. Follow section #Manual setup or #Connecting with a config file above to open or re-open this connection if needed.

Without SSH config file

Run the following example commands on your machine.

Copy to Carbon – "push"
scp -P 33301 -p  'foofile'  argonne_user_name@localhost:'dir/on/carbon/'
Copy from Carbon – "pull"
scp -P -p  argonne_user_name@localhost:'dir/on/carbon/name_on_carbon'  destination_on_your_machine/
  • Type localhost as written. Together with the option -P 33301 (or -o port=number for older scp versions) it refers to the tunnel that you have set up earlier.
  • Replace argonne_user_name by the user name you have at Argonne.

With an SSH config file

Run the following example commands on your machine.

Copy a file to Carbon (push from outside)

  • With the above ssh/.config file in place:
scp -p 'foofile' carbon:'dir/on/carbon/'

Copy a whole directory to Carbon

Short of using tar or zip:

scp -rp 'local/path/' carbon:'dir/on/carbon/'

This method does not preserve symbolic links.

Copy a file from Carbon (pull from outside)

scp -p carbon:remote/path/foo  local/path/
scp -p carbon:remote/path/foo  .

Note the trailing "." in the last example to copy to your current directory.

Reverse tunneling

The file copy operations above must all be initiated on the outside host. It is possible to set up tunnels to be able to initiate file operations on the inside. However, this is more complex and will be left as an exercise for advanced users. It involves setting up:

  1. agent forwarding
  2. a .ssh/config file on Carbon, and
  3. specifying -R command line options or RemoteForward config file directives when accessing carbon at the second stage.

Bonus – Intranet web access

Open the following links in a browser on your external workstation:

https://localhost:33343/cnm/HPC
http://localhost:33380/

Copy a file to Carbon from a third host

0. Similar to the procedure in section #Manual setup above, open two interactive sessions to the remote computer.

1. From the first session, open a connection to Mega and forward a port:

ssh -v -L 33301:carbon:22  username@mega.cnm.anl.gov
  • Do not type any further commands there.

2. In the second session, test if you can reach Carbon interactively.

ssh -Y -p 33301 -o NoHostAuthenticationForLocalhost=yes username@localhost

3. Close the Carbon connection from step 2.

exit
You should arrive back at the prompt of the third host.

4. From the second session again, initiate the file transfer as:

scp -v -p -o port=33301 -o NoHostAuthenticationForLocalhost=yes \
        filename_remote username@localhost:[target_directory/][filename_on_carbon]
  • Replace username by the name of your Argonne account name.
  • Note the ":" at the end of the host name, which tells the scp command that the copy target is on a remote host.
  • The file named filename_remote will arrive in your Carbon home directory under this name, unless you specify a target_directory and/or a filename_on_carbon.

5. When done, press Ctrl-C in the first session to terminate the connection to mega.

Advanced: Speeding up logins using ssh keys

Our SSH gatway host itself does not accept SSH keys – you must always type your password for the initial connection to Mega.

Once you have established this initial connection and your tunnels are configured, you can use SSH keys to log in to Carbon login nodes without further passwords.

Create a key

  • Create an ssh key pair key if you do not already have one :
yourcomputer$ ssh-keygen -t rsa

The output will look like:

Generating public/private rsa key pair.
Enter file in which to save the key (/Users/home_id/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase):              <-- Choose and enter a password.
Enter same passphrase again: 

Your identification has been saved in /Users/home_id/.ssh/id_rsa.
Your public key has been saved in /Users/home_id/.ssh/id_rsa.pub.
The key fingerprint is:
42:c3:72:fb:4c:be:c6:80:81:bc:8b:73:d8:88:84:2e home_id@yourcomputer.local
  • Inspect the .ssh directory on your computer. It should contain the following files:
$ ls -1 ~/.ssh
config
id_rsa
id_rsa.pub
known_hosts
random_seed
id_* are the just created key files.

Using an ssh-agent

On modern systems, the mere presence of private keys with their default names triggers handling through ssh-agent and brings up a passphrase dialog at the start of the desktop session or when a key is first requested for an outgoing connection. This is the case on MacOS X since 10.5 (Leopard), where key management is secure and largely automated through its general keychain concept.

On older systems, you need to (a) set up the session to run under ssh agent and (b) request the passphrase upon login. Circumstances vary widely. Ask Google or your local admin for help. See also the page Getting started with SSH.

Place your public key on Carbon

Password dialog on connecting to carbon once keys are in place.

To productively use your ssh key pair, you need to transfer the public half to Carbon.

Requirements:

  • you have a public/private ssh key pair on your machine (called yourcomputer in this example).
  • the public file on yourcomputer is named ~/.ssh/id_rsa.pub or ~/.ssh/id_dsa.pub (either one will work).
  • the ssh host alias mega has been set up on yourcomputer in ~/.ssh/config and defines tunnels using LocalForward declarations.
  • the tunnel connection for mega is open, i.e., on yourcomputer, ssh mega runs in another terminal.
  • the ssh alias carbon has been set up as described above.
  • an interactive session ssh carbon succeeds.


Then, to transfer your public key from yourcomputer to the Carbon login nodes, type:

cat ~/.ssh/id_rsa.pub | ssh carbon "umask 033; mkdir -p .ssh; cat >> .ssh/authorized_keys"

This command will append the contents of your ssh public key on yourcomputer to an authorized_keys file on Carbon. The command above is more reliable than cut&paste across interactive terminal sessions. If you created a dsa-type key, or chose your own name for the key pair, you'll have to cat the appropriate file instead. Remember to use the public part of the key, i.e. the file id_foo.pub.

Troubleshooting

General connection issues

Run ssh with one or more -v options ("verbosity"), and record the output for diagnostic (copy&paste into a file). E.g.:

ssh -v -v [other options and arguments …]

If you cannot resolve the issue yourself, follow HPC/Support.

Public keys

If public keys do not work, use your password to gain access, then check the following:

Permissions
The directories and the authorized_keys file must, at the least, not be writable by anyone except yourself; other permissions are recommended to be restrictive as well:
login5$ ls -ld ~ ~/.ssh ~/.ssh/authorized_keys
drwxr-xr-x 28 argonne_id users 4096 Feb 22 13:52 /home/argonne_id
drwx------  4 argonne_id argonne_id 4096 Feb 18 21:25 /home/argonne_id/.ssh
-rw-------  1 argonne_id argonne_id  829 Oct  9 10:55 /home/argonne_id/.ssh/authorized_keys
To change:
login5$ chmod go-w ~
login5$ chmod go-rwx ~/.ssh ~/.ssh/authorized_keys
Corruption of authorized_keys file
The file should contain public keys in OpenSSH format, one per line, without additional line breaks. One way to check is:
yourcomputer$ cut -c1-50 ~/.ssh/authorized_keys
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEjdsfjJSAHkjh88y
ssh-dss AAAAB3NzaC1kc3MAAACBAkkjsadfJFg7EFjDJhWEjk

The output should look similar to the sample above. Use your favorite text editor to join erroneously broken lines. Note that there should not be anything like BEGIN RSA PRIVATE KEY, which would obviously indicate a private, rather than public key.

Verify that an ssh-agent is running

To verify that an ssh-agent is running and visible to your shell, check for the presence of the environment variable SSH_AUTH_SOCK. To list the keys it has loaded, use ssh-add -l (lowercase "L"). Typical output is as follows:

yourcomputer$ echo $SSH_AUTH_SOCK
/tmp/ssh-HCvZKt5478/agent.5478
yourcomputer$ ssh-add -l
1024 b9:65:98:c0:7c:25:da:b6:86:48:98:6b:2a:5a:9d:21 /Users/home_id/.ssh/id_rsa (RSA)