summaryrefslogtreecommitdiff
path: root/dropbear.8
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2008-11-05 14:14:40 +0000
committerMatt Johnston <matt@ucc.asn.au>2008-11-05 14:14:40 +0000
commite80f8e8c09dab7cece30660a33e2a2bfd5d5f571 (patch)
tree5d3757992e1b286d85f687dab687d007946156dd /dropbear.8
parent1fdfa2ecfdf4d6be72319390cbbfa6ac0cc9d34f (diff)
downloaddropbear-e80f8e8c09dab7cece30660a33e2a2bfd5d5f571.tar.gz
- Update manuals, include section on authorized_keys
- Change default PATH to /usr/bin:/bin - Mention DEBUG_TRACE in -v help text --HG-- extra : convert_revision : cdcc3c729e29544e8b98a408e2dc60e4483dfd2a
Diffstat (limited to 'dropbear.8')
-rw-r--r--dropbear.854
1 files changed, 54 insertions, 0 deletions
diff --git a/dropbear.8 b/dropbear.8
index c9c2e79..f3a9501 100644
--- a/dropbear.8
+++ b/dropbear.8
@@ -94,6 +94,60 @@ useful for working around firewalls or routers that drop connections after
a certain period of inactivity. The trade-off is that a session may be
closed if there is a temporary lapse of network connectivity. A setting
if 0 disables keepalives.
+.SH FILES
+
+.TP
+Authorized Keys
+
+~/.ssh/authorized_keys can be set up to allow remote login with a RSA or DSS
+key. Each line is of the form
+.TP
+[restrictions] ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIgAsp... [comment]
+
+and can be extracted from a Dropbear private host key with "dropbearkey -y". This is the same format as used by OpenSSH, though the restrictions are a subset (keys with unknown restrictions are ignored).
+Restrictions are comma separated, with double quotes around spaces in arguments.
+Available restrictions are:
+
+.TP
+.B no-port-forwarding
+Don't allow port forwarding for this connection
+
+.TP
+.B no-agent-forwarding
+Don't allow agent forwarding for this connection
+
+.TP
+.B no-X11-forwarding
+Don't allow X11 forwarding for this connection
+
+.TP
+.B no-pty
+Disable PTY allocation. Note that a user can still obtain most of the
+same functionality with other means even if no-pty is set.
+
+.TP
+.B command="\fIforced_command\fR"
+Disregard the command provided by the user and always run \fIforced_command\fR.
+
+The authorized_keys file and its containing ~/.ssh directory must only be
+writable by the user, otherwise Dropbear will not allow a login using public
+key authentication.
+
+.TP
+Host Key Files
+
+Host key files are read at startup from a standard location, by default
+/etc/dropbear/dropbear_dss_host_key and /etc/dropbear/dropbear_rsa_host_key
+or specified on the commandline with -d or -r. These are of the form generated
+by dropbearkey.
+
+.TP
+Message Of The Day
+
+By default the file /etc/motd will be printed for any login shell (unless
+disabled at compile-time). This can also be disabled per-user
+by creating a file ~/.hushlogin .
+
.SH AUTHOR
Matt Johnston (matt@ucc.asn.au).
.br