Difference between revisions of "SSH"

From HCL
Jump to: navigation, search
(Automate the inclusion of hostname to "known_host")
(The best way is saying no "YES")
 
(16 intermediate revisions by 4 users not shown)
Line 13: Line 13:
 
== Automatically saying "yes" ==
 
== Automatically saying "yes" ==
  
This expect script says "yes" when asked if  
+
This expect script automates typing "yes" when asked by SSH if a host should be added to known_hosts
 
+
 
  #!/usr/bin/expect -f
 
  #!/usr/bin/expect -f
 
  set arg1 [lindex $argv 0]
 
  set arg1 [lindex $argv 0]
 +
set timeout 2
 
  spawn ssh  $arg1
 
  spawn ssh  $arg1
  expect "yes"
+
  expect "yes/no" {
  send "yes\r"
+
  send "yes\n"
  send "exit\r"
+
}
expect eof
+
  send "exit\n"
+
send "\r"        
 +
 
 +
 
 
You can include it in a bash script to iterate over all nodes doing this:
 
You can include it in a bash script to iterate over all nodes doing this:
  
cat yes-everywhere.sh
+
  for i in `uniq hostfile` ; do
  for i in `cat hostfile` ; do
 
 
  ./say-yes.exp $i
 
  ./say-yes.exp $i
 
  done
 
  done
~                                                                             
+
 
~
+
== Better than automatically saying "yes" ==
 +
 
 +
Remark: It turns out there is a more ellegant way to do this task: using a tool called ''ssh-keyscan''.
  
 
== Making a cascade of SSH connections easy ==
 
== Making a cascade of SSH connections easy ==
Line 44: Line 48:
  
 
Since the installation of a new PBS system, you can not directly log into a hclXX node. You can do
 
Since the installation of a new PBS system, you can not directly log into a hclXX node. You can do
  ssh heterogeneous
+
  ssh heterogeneous instead and use "qsub" [[HCL_cluster#Access_and_Security]]
instead and use "qsub"
+
 
 +
== The best way is saying no "YES" ==
 +
 
 +
This trick avoids a confirmation message asking "yes" when asked by SSH if a host should be added to known_hosts:
 +
 
 +
    ssh -q -o StrictHostKeyChecking=no
 +
 
 +
So with OpenMPI it can be used as
 +
 
 +
    mpirun --mca plm_rsh_agent "ssh -q -o StrictHostKeyChecking=no"
  
 
== X11 forwarding ==
 
== X11 forwarding ==
Line 51: Line 64:
 
ssh -X hostname
 
ssh -X hostname
 
</code>
 
</code>
 +
or add the following line to your .ssh/ssh_config file
 +
ForwardX11 yes

Latest revision as of 10:43, 22 August 2012

Passwordless SSH

To set up passwordless SSH, there are three main things to do:

  • generate a pair of public/private keys on your local computer
  • copy the public key from the source computer to the target computer's authorized_keys file
  • check the permissions.

You can repeat that transitively for "A->B->C". You can use the initial pair of keys everywhere.

See here for details:

http://www.stearns.org/doc/ssh-techniques.current.html

Automatically saying "yes"

This expect script automates typing "yes" when asked by SSH if a host should be added to known_hosts

#!/usr/bin/expect -f
set arg1 [lindex $argv 0]
set timeout 2
spawn ssh  $arg1
expect "yes/no"  {
send "yes\n"
}
send "exit\n"
send "\r"          


You can include it in a bash script to iterate over all nodes doing this:

for i in `uniq hostfile` ; do
./say-yes.exp $i
done

Better than automatically saying "yes"

Remark: It turns out there is a more ellegant way to do this task: using a tool called ssh-keyscan.

Making a cascade of SSH connections easy

Here is a very convenient way to set up the access to any machine directly instead of doing a cascade of SSH calls. If you can not directly access e.g. the machine "heterogeneous", but you can log into "csserver" and then to "heterogeneous", you can put this into your .ssh/config file :

Host csserver
  User kdichev
  Hostname csserver.ucd.ie
Host heterogeneous
  User kiril
  Hostname heterogeneous.ucd.ie
  ProxyCommand ssh -qax csserver nc %h %p


Since the installation of a new PBS system, you can not directly log into a hclXX node. You can do

ssh heterogeneous instead and use "qsub" HCL_cluster#Access_and_Security

The best way is saying no "YES"

This trick avoids a confirmation message asking "yes" when asked by SSH if a host should be added to known_hosts:

   ssh -q -o StrictHostKeyChecking=no 

So with OpenMPI it can be used as

   mpirun --mca plm_rsh_agent "ssh -q -o StrictHostKeyChecking=no"

X11 forwarding

ssh -X hostname or add the following line to your .ssh/ssh_config file

ForwardX11 yes