mirror of
https://github.com/clearml/dropbear
synced 2025-05-23 04:34:00 +00:00
merge of cc7d47b52fc39dc6940ea8fff5b782fbd44a2f6c
and f697d6be3bdf1a59bfd78dc1239ea417d52904a7 --HG-- extra : convert_revision : b1cb6d6bba496c942d1850d0f6ca5d71c0deaf1f
This commit is contained in:
commit
6766dfae26
81
dropbear.8
Normal file
81
dropbear.8
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
.TH dropbear 8
|
||||||
|
.SH NAME
|
||||||
|
dropbear \- lightweight SSH2 server
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B dropbear
|
||||||
|
[\-FEmwsgjki] [\-b
|
||||||
|
.I banner\fR] [\-d
|
||||||
|
.I dsskey\fR] [\-r
|
||||||
|
.I rsakey\fR] [\-p
|
||||||
|
.IR port ]
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.B dropbear
|
||||||
|
is a SSH 2 server designed to be small enough to be used in small memory
|
||||||
|
environments, while still being functional and secure enough for general use.
|
||||||
|
.SH OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-b \fIbanner
|
||||||
|
bannerfile.
|
||||||
|
Display the contents of the file
|
||||||
|
.I banner
|
||||||
|
before user login (default: none).
|
||||||
|
.TP
|
||||||
|
.B \-d \fIdsskey
|
||||||
|
dsskeyfile.
|
||||||
|
Use the contents of the file
|
||||||
|
.I dsskey
|
||||||
|
for the dss host key (default: /etc/dropbear/dropbear_dss_host_key).
|
||||||
|
This file is generated with
|
||||||
|
.BR dropbearkey (8).
|
||||||
|
.TP
|
||||||
|
.B \-r \fIrsakey
|
||||||
|
rsakeyfile.
|
||||||
|
Use the contents of the file
|
||||||
|
.I rsakey
|
||||||
|
for the rsa host key (default: /etc/dropbear/dropbear_rsa_host_key).
|
||||||
|
This file is generated with
|
||||||
|
.BR dropbearkey (8).
|
||||||
|
.TP
|
||||||
|
.B \-F
|
||||||
|
Don't fork into background.
|
||||||
|
.TP
|
||||||
|
.B \-E
|
||||||
|
Log to standard error rather than syslog.
|
||||||
|
.TP
|
||||||
|
.B \-m
|
||||||
|
Don't display the message of the day on login.
|
||||||
|
.TP
|
||||||
|
.B \-w
|
||||||
|
Disallow root logins.
|
||||||
|
.TP
|
||||||
|
.B \-s
|
||||||
|
Disable password logins.
|
||||||
|
.TP
|
||||||
|
.B \-g
|
||||||
|
Disable password logins for root.
|
||||||
|
.TP
|
||||||
|
.B \-j
|
||||||
|
Disable local port forwarding.
|
||||||
|
.TP
|
||||||
|
.B \-k
|
||||||
|
Disable remote port forwarding.
|
||||||
|
.TP
|
||||||
|
.B \-p \fIport
|
||||||
|
Listen on specified tcp port
|
||||||
|
.IR port ;
|
||||||
|
up to 10 can be specified (default 22 if none specified).
|
||||||
|
.TP
|
||||||
|
.B \-i
|
||||||
|
Service program mode.
|
||||||
|
Use this option to run
|
||||||
|
.B dropbear
|
||||||
|
under TCP/IP servers like inetd, tcpsvd, or tcpserver.
|
||||||
|
In program mode the \-F option is implied, and \-p options are ignored.
|
||||||
|
.SH AUTHOR
|
||||||
|
Matt Johnston (matt@ucc.asn.au).
|
||||||
|
.br
|
||||||
|
Gerrit Pape (pape@smarden.org) wrote this manual page.
|
||||||
|
.SH SEE ALSO
|
||||||
|
dropbearkey(8)
|
||||||
|
.P
|
||||||
|
http://matt.ucc.asn.au/dropbear/dropbear.html
|
47
dropbearkey.8
Normal file
47
dropbearkey.8
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
.TH dropbearkey 8
|
||||||
|
.SH NAME
|
||||||
|
dropbearkey \- create private keys for the use with dropbear(8)
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B dropbearkey
|
||||||
|
\-t
|
||||||
|
.I type
|
||||||
|
\-f
|
||||||
|
.I file
|
||||||
|
[\-s
|
||||||
|
.IR bits ]
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.B dropbearkey
|
||||||
|
generates a type
|
||||||
|
.I rsa
|
||||||
|
or
|
||||||
|
.I dss
|
||||||
|
SSH private key, and saves it to a file for the use with the
|
||||||
|
.BR dropbear (8)
|
||||||
|
SSH 2 server.
|
||||||
|
.SH OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-t \fItype
|
||||||
|
Type of key to generate.
|
||||||
|
Must be one of
|
||||||
|
.I rsa
|
||||||
|
or
|
||||||
|
.IR dss .
|
||||||
|
.TP
|
||||||
|
.B \-f \fIfile
|
||||||
|
Write the secret key to the file
|
||||||
|
.IR file .
|
||||||
|
.TP
|
||||||
|
.B \-s \fIbits
|
||||||
|
Set the key size to
|
||||||
|
.I bits
|
||||||
|
bits, should be multiple of 8 (optional).
|
||||||
|
.SH EXAMPLE
|
||||||
|
# dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key
|
||||||
|
.SH AUTHOR
|
||||||
|
Matt Johnston (matt@ucc.asn.au).
|
||||||
|
.br
|
||||||
|
Gerrit Pape (pape@smarden.org) wrote this manual page.
|
||||||
|
.SH SEE ALSO
|
||||||
|
dropbear(8)
|
||||||
|
.P
|
||||||
|
http://matt.ucc.asn.au/dropbear/dropbear.html
|
Loading…
Reference in New Issue
Block a user