- jmc@cvs.openbsd.org 2006/01/02 12:31:06
[ssh.1] start to cut some duplicate info from FILES; help/ok djm
This commit is contained in:
parent
a1d9a18e14
commit
a07a59188a
|
@ -28,6 +28,10 @@
|
||||||
clarify tun(4) opening - set the mode and bring the interface up. also
|
clarify tun(4) opening - set the mode and bring the interface up. also
|
||||||
(re)sets the tun(4) layer 2 LINK0 flag for existing tunnel interfaces.
|
(re)sets the tun(4) layer 2 LINK0 flag for existing tunnel interfaces.
|
||||||
suggested and ok by djm@
|
suggested and ok by djm@
|
||||||
|
- jmc@cvs.openbsd.org 2006/01/02 12:31:06
|
||||||
|
[ssh.1]
|
||||||
|
start to cut some duplicate info from FILES;
|
||||||
|
help/ok djm
|
||||||
|
|
||||||
20060101
|
20060101
|
||||||
- (djm) [Makefile.in configure.ac includes.h misc.c]
|
- (djm) [Makefile.in configure.ac includes.h misc.c]
|
||||||
|
@ -3618,4 +3622,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4070 2006/01/02 12:41:21 djm Exp $
|
$Id: ChangeLog,v 1.4071 2006/01/02 12:41:37 djm Exp $
|
||||||
|
|
31
ssh.1
31
ssh.1
|
@ -34,7 +34,7 @@
|
||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.\" $OpenBSD: ssh.1,v 1.234 2005/12/31 13:45:19 jmc Exp $
|
.\" $OpenBSD: ssh.1,v 1.235 2006/01/02 12:31:06 jmc Exp $
|
||||||
.Dd September 25, 1999
|
.Dd September 25, 1999
|
||||||
.Dt SSH 1
|
.Dt SSH 1
|
||||||
.Os
|
.Os
|
||||||
|
@ -1061,38 +1061,21 @@ in
|
||||||
See
|
See
|
||||||
.Xr sshd 8 .
|
.Xr sshd 8 .
|
||||||
.It Pa ~/.ssh/identity, ~/.ssh/id_dsa, ~/.ssh/id_rsa
|
.It Pa ~/.ssh/identity, ~/.ssh/id_dsa, ~/.ssh/id_rsa
|
||||||
Contains the authentication identity of the user.
|
Contains the private key for authentication.
|
||||||
They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
|
|
||||||
These files
|
These files
|
||||||
contain sensitive data and should be readable by the user but not
|
contain sensitive data and should be readable by the user but not
|
||||||
accessible by others (read/write/execute).
|
accessible by others (read/write/execute).
|
||||||
Note that
|
|
||||||
.Nm
|
.Nm
|
||||||
ignores a private key file if it is accessible by others.
|
will simply ignore a private key file if it is accessible by others.
|
||||||
It is possible to specify a passphrase when
|
It is possible to specify a passphrase when
|
||||||
generating the key; the passphrase will be used to encrypt the
|
generating the key which will be used to encrypt the
|
||||||
sensitive part of this file using 3DES.
|
sensitive part of this file using 3DES.
|
||||||
.It Pa ~/.ssh/identity.pub, ~/.ssh/id_dsa.pub, ~/.ssh/id_rsa.pub
|
.It Pa ~/.ssh/identity.pub, ~/.ssh/id_dsa.pub, ~/.ssh/id_rsa.pub
|
||||||
Contains the public key for authentication (public part of the
|
Contains the public key for authentication.
|
||||||
identity file in human-readable form).
|
|
||||||
The contents of the
|
|
||||||
.Pa ~/.ssh/identity.pub
|
|
||||||
file should be added to the file
|
|
||||||
.Pa ~/.ssh/authorized_keys
|
|
||||||
on all machines
|
|
||||||
where the user wishes to log in using protocol version 1 RSA authentication.
|
|
||||||
The contents of the
|
|
||||||
.Pa ~/.ssh/id_dsa.pub
|
|
||||||
and
|
|
||||||
.Pa ~/.ssh/id_rsa.pub
|
|
||||||
file should be added to
|
|
||||||
.Pa ~/.ssh/authorized_keys
|
|
||||||
on all machines
|
|
||||||
where the user wishes to log in using protocol version 2 DSA/RSA authentication.
|
|
||||||
These files are not
|
These files are not
|
||||||
sensitive and can (but need not) be readable by anyone.
|
sensitive and can (but need not) be readable by anyone.
|
||||||
These files are
|
They are
|
||||||
never used automatically and are not necessary; they are only provided for
|
never used automatically and are not necessary: they are only provided for
|
||||||
the convenience of the user.
|
the convenience of the user.
|
||||||
.It Pa ~/.ssh/config
|
.It Pa ~/.ssh/config
|
||||||
This is the per-user configuration file.
|
This is the per-user configuration file.
|
||||||
|
|
Loading…
Reference in New Issue