Difference between revisions of "Application:OpenSSH"

From WebOS Internals
Jump to navigation Jump to search
(New page: /opt/bin/ssh-keygen mv /home/root/.ssh/id_rsa.pub /home/root/.ssh/authorized_keys)
 
Line 1: Line 1:
 +
OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on.
 +
 +
Please refer to the [http://www.openssh.com/ OpenSSH Home Page] and read the [http://www.openssh.com/manual.html OpenSSH Manual Pages] before using this package.
 +
 +
Optware installs openssh under /opt, so you should replace any references to /bin, /sbin, and /etc in the OpenSSH documentation with /opt/bin, /opt/sbin and /opt/etc respectively.
 +
 +
You can use the [http://www.webos-internals.org/wiki/Application:Terminal Terminal] application to create your secure SSH keys for use with OpenSSH.  Your public ssh key needs to be stored in /home/root/.ssh/authorized_keys to be read by OpenSSH to allow root login via ssh keys.
 +
 +
You can use:
 +
 
  /opt/bin/ssh-keygen
 
  /opt/bin/ssh-keygen
 +
 +
to create the private and public keys, and then:
 +
 
  mv /home/root/.ssh/id_rsa.pub /home/root/.ssh/authorized_keys
 
  mv /home/root/.ssh/id_rsa.pub /home/root/.ssh/authorized_keys
 +
 +
to move the public key to become the /home/root/.ssh/authorized_keys file.

Revision as of 00:42, 16 September 2009

OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on.

Please refer to the OpenSSH Home Page and read the OpenSSH Manual Pages before using this package.

Optware installs openssh under /opt, so you should replace any references to /bin, /sbin, and /etc in the OpenSSH documentation with /opt/bin, /opt/sbin and /opt/etc respectively.

You can use the Terminal application to create your secure SSH keys for use with OpenSSH. Your public ssh key needs to be stored in /home/root/.ssh/authorized_keys to be read by OpenSSH to allow root login via ssh keys.

You can use:

/opt/bin/ssh-keygen

to create the private and public keys, and then:

mv /home/root/.ssh/id_rsa.pub /home/root/.ssh/authorized_keys

to move the public key to become the /home/root/.ssh/authorized_keys file.