- stevesk@cvs.openbsd.org 2001/03/05 17:40:48
[ssh.1] more ssh_known_hosts2 documentation; ok markus@
This commit is contained in:
parent
4c4f05e096
commit
1e62174af1
|
@ -24,6 +24,9 @@
|
||||||
P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key
|
P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key
|
||||||
agreement with short exponents, In Advances in Cryptology
|
agreement with short exponents, In Advances in Cryptology
|
||||||
- EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343.
|
- EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343.
|
||||||
|
- stevesk@cvs.openbsd.org 2001/03/05 17:40:48
|
||||||
|
[ssh.1]
|
||||||
|
more ssh_known_hosts2 documentation; ok markus@
|
||||||
|
|
||||||
20010305
|
20010305
|
||||||
- (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
|
- (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
|
||||||
|
@ -4395,4 +4398,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.913 2001/03/06 01:09:20 mouring Exp $
|
$Id: ChangeLog,v 1.914 2001/03/06 01:10:53 mouring Exp $
|
||||||
|
|
23
ssh.1
23
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.94 2001/03/05 15:56:16 deraadt Exp $
|
.\" $OpenBSD: ssh.1,v 1.95 2001/03/05 17:40:48 stevesk Exp $
|
||||||
.Dd September 25, 1999
|
.Dd September 25, 1999
|
||||||
.Dt SSH 1
|
.Dt SSH 1
|
||||||
.Os
|
.Os
|
||||||
|
@ -750,8 +750,13 @@ or
|
||||||
The default is
|
The default is
|
||||||
.Dq no .
|
.Dq no .
|
||||||
.It Cm GlobalKnownHostsFile
|
.It Cm GlobalKnownHostsFile
|
||||||
Specifies a file to use instead of
|
Specifies a file to use for the protocol version 1 global
|
||||||
|
host key database instead of
|
||||||
.Pa /etc/ssh_known_hosts .
|
.Pa /etc/ssh_known_hosts .
|
||||||
|
.It Cm GlobalKnownHostsFile2
|
||||||
|
Specifies a file to use for the protocol version 2 global
|
||||||
|
host key database instead of
|
||||||
|
.Pa /etc/ssh_known_hosts2 .
|
||||||
.It Cm HostKeyAlias
|
.It Cm HostKeyAlias
|
||||||
Specifies an alias that should be used instead of the
|
Specifies an alias that should be used instead of the
|
||||||
real host name when looking up or saving the host key
|
real host name when looking up or saving the host key
|
||||||
|
@ -999,8 +1004,13 @@ This can be useful if you have a different user name on different machines.
|
||||||
This saves the trouble of
|
This saves the trouble of
|
||||||
having to remember to give the user name on the command line.
|
having to remember to give the user name on the command line.
|
||||||
.It Cm UserKnownHostsFile
|
.It Cm UserKnownHostsFile
|
||||||
Specifies a file to use instead of
|
Specifies a file to use for the protocol version 1 user
|
||||||
|
host key database instead of
|
||||||
.Pa $HOME/.ssh/known_hosts .
|
.Pa $HOME/.ssh/known_hosts .
|
||||||
|
.It Cm UserKnownHostsFile2
|
||||||
|
Specifies a file to use for the protocol version 2 user
|
||||||
|
host key database instead of
|
||||||
|
.Pa $HOME/.ssh/known_hosts2 .
|
||||||
.It Cm UseRsh
|
.It Cm UseRsh
|
||||||
Specifies that rlogin/rsh should be used for this host.
|
Specifies that rlogin/rsh should be used for this host.
|
||||||
It is possible that the host does not at all support the
|
It is possible that the host does not at all support the
|
||||||
|
@ -1091,10 +1101,13 @@ and adds lines of the format
|
||||||
to the environment.
|
to the environment.
|
||||||
.Sh FILES
|
.Sh FILES
|
||||||
.Bl -tag -width Ds
|
.Bl -tag -width Ds
|
||||||
.It Pa $HOME/.ssh/known_hosts
|
.It Pa $HOME/.ssh/known_hosts, $HOME/.ssh/known_hosts2
|
||||||
Records host keys for all hosts the user has logged into (that are not
|
Records host keys for all hosts the user has logged into (that are not
|
||||||
in
|
in
|
||||||
.Pa /etc/ssh_known_hosts ) .
|
.Pa /etc/ssh_known_hosts
|
||||||
|
for protocol version 1 or
|
||||||
|
.Pa /etc/ssh_known_hosts2
|
||||||
|
for protocol version 2).
|
||||||
See
|
See
|
||||||
.Xr sshd 8 .
|
.Xr sshd 8 .
|
||||||
.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa
|
.It Pa $HOME/.ssh/identity, $HOME/.ssh/id_dsa
|
||||||
|
|
Loading…
Reference in New Issue