summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-15 11:31:22 +1100
committerDamien Miller <djm@mindrot.org>2006-03-15 11:31:22 +1100
commitdcfea27f1b4e7af8019f8539dd53188af1ccded3 (patch)
tree5011f4b7d241c64bc88e9200feabb5c583c53e7c
parent20c2ec48c376fc025774bbb903f57de449bb8c5c (diff)
- jmc@cvs.openbsd.org 2006/02/12 10:52:41
[sshd.8] rework the description of authorized_keys a little;
-rw-r--r--ChangeLog5
-rw-r--r--sshd.829
2 files changed, 17 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 70b3bcc6..608a438c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -82,6 +82,9 @@
- jmc@cvs.openbsd.org 2006/02/12 10:49:44
[ssh_config.5]
slight rewording; ok djm
+ - jmc@cvs.openbsd.org 2006/02/12 10:52:41
+ [sshd.8]
+ rework the description of authorized_keys a little;
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -3983,4 +3986,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
-$Id: ChangeLog,v 1.4162 2006/03/15 00:31:01 djm Exp $
+$Id: ChangeLog,v 1.4163 2006/03/15 00:31:22 djm Exp $
diff --git a/sshd.8 b/sshd.8
index e884e2b0..909339f0 100644
--- a/sshd.8
+++ b/sshd.8
@@ -34,7 +34,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.\" $OpenBSD: sshd.8,v 1.216 2006/02/09 10:10:47 jmc Exp $
+.\" $OpenBSD: sshd.8,v 1.217 2006/02/12 10:52:41 jmc Exp $
.Dd September 25, 1999
.Dt SSHD 8
.Os
@@ -374,27 +374,24 @@ authentication protocol and cookie in standard input.
Runs user's shell or command.
.El
.Sh AUTHORIZED_KEYS FILE FORMAT
-.Pa ~/.ssh/authorized_keys
-is the default file that lists the public keys that are
-permitted for RSA authentication in protocol version 1
-and for public key authentication (PubkeyAuthentication)
-in protocol version 2.
.Cm AuthorizedKeysFile
-may be used to specify an alternative file.
-.Pp
+specifies the file containing public keys for
+public key authentication;
+if none is specified, the default is
+.Pa ~/.ssh/authorized_keys .
Each line of the file contains one
key (empty lines and lines starting with a
.Ql #
are ignored as
comments).
-Each RSA public key consists of the following fields, separated by
-spaces: options, bits, exponent, modulus, comment.
-Each protocol version 2 public key consists of:
-options, keytype, base64 encoded key, comment.
-The options field
-is optional; its presence is determined by whether the line starts
+Protocol 1 public keys consist of the following space-separated fields:
+options, bits, exponent, modulus, comment.
+Protocol 2 public key consist of:
+options, keytype, base64-encoded key, comment.
+The options field is optional;
+its presence is determined by whether the line starts
with a number or not (the options field never starts with a number).
-The bits, exponent, modulus and comment fields give the RSA key for
+The bits, exponent, modulus, and comment fields give the RSA key for
protocol version 1; the
comment field is not used for anything (but may be convenient for the
user to identify the key).
@@ -409,7 +406,7 @@ Note that lines in this file are usually several hundred bytes long
keys up to 16 kilobits.
You don't want to type them in; instead, copy the
.Pa identity.pub ,
-.Pa id_dsa.pub
+.Pa id_dsa.pub ,
or the
.Pa id_rsa.pub
file and edit it.