Difference between revisions of "Application:Dropbear"

From WebOS Internals
Jump to navigation Jump to search
(New page: 11:41 rwhitby: JackieRipper: you can use terminal to put a key in /home/root/.ssh/authorized_keys 11:43 rwhitby: JackieRipper: dropbearkey -t rsa -f /home/root/.ssh/id_rsa 11:43 rwhitb...)
 
 
Line 1: Line 1:
11:41 rwhitby: JackieRipper: you can use terminal to put a key in /home/root/.ssh/authorized_keys
+
Dropbear is a relatively small SSH 2 server and client.
11:43 rwhitby: JackieRipper:  dropbearkey -t rsa -f /home/root/.ssh/id_rsa
+
 
11:43 rwhitby: JackieRipper: although you really should do your key generation on a machine that is not connected to a network, and then only move the public part to the machine connected to the network.
+
Please refer to the [http://matt.ucc.asn.au/dropbear/dropbear.html Dropbear Home Page] and read the [http://linux.die.net/man/8/dropbear Dropbear Manual Page] before using this package.
11:44 rwhitby: JackieRipper:  dropbearkey -y -f /home/root/.ssh/id_rsa
+
 
11:44 rwhitby: will print the public key and fingerprint
+
Optware installs dropbear under /opt, so you should replace any references to /bin, /sbin, and /etc in the Dropbear 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 Dropbear.  Your public ssh key needs to be stored in /home/root/.ssh/authorized_keys to be read by Dropbear to allow root login via ssh keys.
 +
 
 +
You can use:
 +
 
 +
  dropbearkey -t rsa -f /home/root/.ssh/id_rsa
 +
 
 +
to create the private key, and then:
 +
 
 +
  dropbearkey -y -f /home/root/.ssh/id_rsa
 +
 
 +
to print the public key section which needs to be put in the /home/root/.ssh/authorized_keys file.

Latest revision as of 00:33, 16 September 2009

Dropbear is a relatively small SSH 2 server and client.

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

Optware installs dropbear under /opt, so you should replace any references to /bin, /sbin, and /etc in the Dropbear 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 Dropbear. Your public ssh key needs to be stored in /home/root/.ssh/authorized_keys to be read by Dropbear to allow root login via ssh keys.

You can use:

 dropbearkey -t rsa -f /home/root/.ssh/id_rsa

to create the private key, and then:

 dropbearkey -y -f /home/root/.ssh/id_rsa

to print the public key section which needs to be put in the /home/root/.ssh/authorized_keys file.