diff options
author | Damien Miller <djm@mindrot.org> | 2002-01-22 23:32:39 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-01-22 23:32:39 +1100 |
commit | c497e38ce626a35f68844c7667adae6434be7d6c (patch) | |
tree | 95bea100f2b15ebfae5d3e33b1927374f34318e6 /ssh_config | |
parent | fae2386cc91673f4c387f58278b36ad952b7ad65 (diff) | |
download | openssh-git-c497e38ce626a35f68844c7667adae6434be7d6c.tar.gz |
- stevesk@cvs.openbsd.org 2002/01/16 17:55:33
[ssh_config]
correct some commented defaults. add Ciphers default. ok markus@
Diffstat (limited to 'ssh_config')
-rw-r--r-- | ssh_config | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: ssh_config,v 1.11 2002/01/03 04:11:08 stevesk Exp $ +# $OpenBSD: ssh_config,v 1.12 2002/01/16 17:55:33 stevesk Exp $ # This is the ssh client system-wide configuration file. See ssh(1) # for more information. This file provides defaults for users, and @@ -18,7 +18,7 @@ # Host * # ForwardAgent no # ForwardX11 no -# RhostsAuthentication no +# RhostsAuthentication yes # RhostsRSAAuthentication yes # RSAAuthentication yes # PasswordAuthentication yes @@ -26,11 +26,12 @@ # UseRsh no # BatchMode no # CheckHostIP yes -# StrictHostKeyChecking yes +# StrictHostKeyChecking ask # IdentityFile ~/.ssh/identity -# IdentityFile ~/.ssh/id_dsa # IdentityFile ~/.ssh/id_rsa +# IdentityFile ~/.ssh/id_dsa # Port 22 # Protocol 2,1 -# Cipher blowfish +# Cipher 3des +# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc # EscapeChar ~ |