Difference between revisions of "Application:Dropbear"
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: | ||
− | + | Dropbear is a relatively small SSH 2 server and client. | |
− | + | ||
− | + | 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. | |
− | + | ||
− | + | 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 23:33, 15 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.