diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-01-16 17:55:34 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-01-16 17:55:34 +0000 |
commit | 74a5e34bcafe4c8e2960ba2bfd2604de478e536f (patch) | |
tree | 2eeaa1a45935e99233827fb75abc12ae09627a9b /usr.bin/ssh | |
parent | 1ae9a142cba1f8f0492b3fa01c9129d99d24b5e9 (diff) |
correct some commented defaults. add Ciphers default. ok markus@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh_config | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/usr.bin/ssh/ssh_config b/usr.bin/ssh/ssh_config index 7d1b210677c..a8a8d72abfc 100644 --- a/usr.bin/ssh/ssh_config +++ b/usr.bin/ssh/ssh_config @@ -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 ~ |