summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-01-02 23:41:37 +1100
committerDamien Miller <djm@mindrot.org>2006-01-02 23:41:37 +1100
commita07a59188a5a236c0fb8ef3fb8188ca3d6227458 (patch)
tree3bf3e231fc8d752ae4949b38eeb6df0f516a8e9f
parenta1d9a18e142d05cb8cfe10dc7abf253f1e2c6a5b (diff)
- jmc@cvs.openbsd.org 2006/01/02 12:31:06
[ssh.1] start to cut some duplicate info from FILES; help/ok djm
-rw-r--r--ChangeLog6
-rw-r--r--ssh.131
2 files changed, 12 insertions, 25 deletions
diff --git a/ChangeLog b/ChangeLog
index 577123925..99b7aedcd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -28,6 +28,10 @@
28 clarify tun(4) opening - set the mode and bring the interface up. also 28 clarify tun(4) opening - set the mode and bring the interface up. also
29 (re)sets the tun(4) layer 2 LINK0 flag for existing tunnel interfaces. 29 (re)sets the tun(4) layer 2 LINK0 flag for existing tunnel interfaces.
30 suggested and ok by djm@ 30 suggested and ok by djm@
31 - jmc@cvs.openbsd.org 2006/01/02 12:31:06
32 [ssh.1]
33 start to cut some duplicate info from FILES;
34 help/ok djm
31 35
3220060101 3620060101
33 - (djm) [Makefile.in configure.ac includes.h misc.c] 37 - (djm) [Makefile.in configure.ac includes.h misc.c]
@@ -3618,4 +3622,4 @@
3618 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3622 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3619 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3623 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3620 3624
3621$Id: ChangeLog,v 1.4070 2006/01/02 12:41:21 djm Exp $ 3625$Id: ChangeLog,v 1.4071 2006/01/02 12:41:37 djm Exp $
diff --git a/ssh.1 b/ssh.1
index 2a8386dc4..de9d9312f 100644
--- a/ssh.1
+++ b/ssh.1
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: ssh.1,v 1.234 2005/12/31 13:45:19 jmc Exp $ 37.\" $OpenBSD: ssh.1,v 1.235 2006/01/02 12:31:06 jmc Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSH 1 39.Dt SSH 1
40.Os 40.Os
@@ -1061,38 +1061,21 @@ in
1061See 1061See
1062.Xr sshd 8 . 1062.Xr sshd 8 .
1063.It Pa ~/.ssh/identity, ~/.ssh/id_dsa, ~/.ssh/id_rsa 1063.It Pa ~/.ssh/identity, ~/.ssh/id_dsa, ~/.ssh/id_rsa
1064Contains the authentication identity of the user. 1064Contains the private key for authentication.
1065They are for protocol 1 RSA, protocol 2 DSA, and protocol 2 RSA, respectively.
1066These files 1065These files
1067contain sensitive data and should be readable by the user but not 1066contain sensitive data and should be readable by the user but not
1068accessible by others (read/write/execute). 1067accessible by others (read/write/execute).
1069Note that
1070.Nm 1068.Nm
1071ignores a private key file if it is accessible by others. 1069will simply ignore a private key file if it is accessible by others.
1072It is possible to specify a passphrase when 1070It is possible to specify a passphrase when
1073generating the key; the passphrase will be used to encrypt the 1071generating the key which will be used to encrypt the
1074sensitive part of this file using 3DES. 1072sensitive part of this file using 3DES.
1075.It Pa ~/.ssh/identity.pub, ~/.ssh/id_dsa.pub, ~/.ssh/id_rsa.pub 1073.It Pa ~/.ssh/identity.pub, ~/.ssh/id_dsa.pub, ~/.ssh/id_rsa.pub
1076Contains the public key for authentication (public part of the 1074Contains the public key for authentication.
1077identity file in human-readable form).
1078The contents of the
1079.Pa ~/.ssh/identity.pub
1080file should be added to the file
1081.Pa ~/.ssh/authorized_keys
1082on all machines
1083where the user wishes to log in using protocol version 1 RSA authentication.
1084The contents of the
1085.Pa ~/.ssh/id_dsa.pub
1086and
1087.Pa ~/.ssh/id_rsa.pub
1088file should be added to
1089.Pa ~/.ssh/authorized_keys
1090on all machines
1091where the user wishes to log in using protocol version 2 DSA/RSA authentication.
1092These files are not 1075These files are not
1093sensitive and can (but need not) be readable by anyone. 1076sensitive and can (but need not) be readable by anyone.
1094These files are 1077They are
1095never used automatically and are not necessary; they are only provided for 1078never used automatically and are not necessary: they are only provided for
1096the convenience of the user. 1079the convenience of the user.
1097.It Pa ~/.ssh/config 1080.It Pa ~/.ssh/config
1098This is the per-user configuration file. 1081This is the per-user configuration file.