summaryrefslogtreecommitdiff
path: root/ssh_config.5
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-03-01 21:47:37 +1100
committerDamien Miller <djm@mindrot.org>2005-03-01 21:47:37 +1100
commite1776155d19db4f3ab2ff42323d6499f0712cfa4 (patch)
treea1c1994615f6c15a51eddb9dabf4c7baad76efdf /ssh_config.5
parentf91ee4c3def4de8b4b9409f07ab26a61e535e1e6 (diff)
- djm@cvs.openbsd.org 2005/03/01 10:40:27
[hostfile.c hostfile.h readconf.c readconf.h ssh.1 ssh_config.5] [sshconnect.c sshd.8] add support for hashing host names and addresses added to known_hosts files, to improve privacy of which hosts user have been visiting; ok markus@ deraadt@
Diffstat (limited to 'ssh_config.5')
-rw-r--r--ssh_config.517
1 files changed, 16 insertions, 1 deletions
diff --git a/ssh_config.5 b/ssh_config.5
index 6b6cfc5e9..9077acbee 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -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_config.5,v 1.43 2005/03/01 10:09:52 djm Exp $ 37.\" $OpenBSD: ssh_config.5,v 1.44 2005/03/01 10:40:27 djm Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSH_CONFIG 5 39.Dt SSH_CONFIG 5
40.Os 40.Os
@@ -407,6 +407,21 @@ Forward (delegate) credentials to the server.
407The default is 407The default is
408.Dq no . 408.Dq no .
409Note that this option applies to protocol version 2 only. 409Note that this option applies to protocol version 2 only.
410.It Cm HashKnownHosts
411Indicates that
412.Nm ssh
413should hash host names and addresses when they are added to
414.Pa $HOME/.ssh/known_hosts .
415These hashed names may be used normally by
416.Nm ssh
417and
418.Nm sshd ,
419but they do not reveal identifying information should the file's contents
420be disclosed.
421The default is
422.Dq no .
423Note that hashing of names and addresses will not be retrospectively applied
424to existing known hosts files.
410.It Cm HostbasedAuthentication 425.It Cm HostbasedAuthentication
411Specifies whether to try rhosts based authentication with public key 426Specifies whether to try rhosts based authentication with public key
412authentication. 427authentication.