[BACK]Return to sshd.8 CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sshd.8 between version 1.74 and 1.75

version 1.74, 2000/11/29 21:11:59 version 1.75, 2000/12/27 11:41:31
Line 202 
Line 202 
 this many seconds, the server disconnects and exits.  this many seconds, the server disconnects and exits.
 A value of zero indicates no limit.  A value of zero indicates no limit.
 .It Fl h Ar host_key_file  .It Fl h Ar host_key_file
 Specifies the file from which the RSA host key is read (default  Specifies the file from which the host key is read (default
 .Pa /etc/ssh_host_key ) .  .Pa /etc/ssh_host_key ) .
 This option must be given if  This option must be given if
 .Nm  .Nm
 is not run as root (as the normal  is not run as root (as the normal
 host file is normally not readable by anyone but root).  host file is normally not readable by anyone but root).
   It is possible to have multiple host key files for
   the different protocol versions.
 .It Fl i  .It Fl i
 Specifies that  Specifies that
 .Nm  .Nm
Line 726 
Line 728 
 permitted for RSA authentication in SSH protocols 1.3 and 1.5  permitted for RSA authentication in SSH protocols 1.3 and 1.5
 Similarly, the  Similarly, the
 .Pa $HOME/.ssh/authorized_keys2  .Pa $HOME/.ssh/authorized_keys2
 file lists the DSA keys that are  file lists the DSA and RSA keys that are
 permitted for DSA authentication in SSH protocol 2.0.  permitted for public key authentication (PubkeyAuthentication)
   in SSH protocol 2.0.
   .Pp
 Each line of the file contains one  Each line of the file contains one
 key (empty lines and lines starting with a  key (empty lines and lines starting with a
 .Ql #  .Ql #
 are ignored as  are ignored as
 comments).  comments).
 Each line consists of the following fields, separated by  Each RSA public key consists of the following fields, separated by
 spaces: options, bits, exponent, modulus, comment.  spaces: options, bits, exponent, modulus, comment.
 The options field  Each protocol version 2 public key consists of:
 is optional; its presence is determined by whether the line starts  options, keytype, base64 encoded key, comment.
   The options fields
   are optional; its presence is determined by whether the line starts
 with a number or not (the option field never starts with a number).  with a number or not (the option field never starts with a number).
 The bits, exponent, modulus and comment fields give the RSA key; the  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  comment field is not used for anything (but may be convenient for the
 user to identify the key).  user to identify the key).
   For protocol version 2 the keytype is
   .Dq ssh-dss
   or
   .Dq ssh-rsa .
 .Pp  .Pp
 Note that lines in this file are usually several hundred bytes long  Note that lines in this file are usually several hundred bytes long
 (because of the size of the RSA key modulus).  (because of the size of the RSA key modulus).
 You don't want to type them in; instead, copy the  You don't want to type them in; instead, copy the
 .Pa identity.pub  .Pa identity.pub
   or the
   .Pa id_dsa.pub
 file and edit it.  file and edit it.
 .Pp  .Pp
 The options (if present) consist of comma-separated option  The options (if present) consist of comma-separated option

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75