ssh_config revision 99132
198684Sdes#	$OpenBSD: ssh_config,v 1.15 2002/06/20 20:03:34 stevesk Exp $
299051Sdes#	$FreeBSD: head/crypto/openssh/ssh_config 99132 2002-06-30 10:32:09Z des $
357429Smarkm
498684Sdes# This is the ssh client system-wide configuration file.  See
598684Sdes# ssh_config(5) for more information.  This file provides defaults for
698684Sdes# users, and the values can be changed in per-user configuration files
798684Sdes# or on the command line.
876262Sgreen
957429Smarkm# Configuration data is parsed as follows:
1057429Smarkm#  1. command line options
1157429Smarkm#  2. user-specific file
1257429Smarkm#  3. system-wide file
1357429Smarkm# Any configuration value is only changed the first time it is set.
1457429Smarkm# Thus, host-specific definitions should be at the beginning of the
1557429Smarkm# configuration file, and defaults at the end.
1657429Smarkm
1757429Smarkm# Site-wide defaults for various options
1857429Smarkm
1957429Smarkm# Host *
2076262Sgreen#   ForwardAgent no
2176262Sgreen#   ForwardX11 no
2298684Sdes#   RhostsAuthentication no
2398684Sdes#   RhostsRSAAuthentication no
2457429Smarkm#   RSAAuthentication yes
2557429Smarkm#   PasswordAuthentication yes
2657429Smarkm#   BatchMode no
2757429Smarkm#   CheckHostIP yes
2892559Sdes#   StrictHostKeyChecking ask
2957429Smarkm#   IdentityFile ~/.ssh/identity
3092559Sdes#   IdentityFile ~/.ssh/id_rsa
3176262Sgreen#   IdentityFile ~/.ssh/id_dsa
3257429Smarkm#   Port 22
3360576Skris#   Protocol 2,1
3492559Sdes#   Cipher 3des
3592559Sdes#   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
3657429Smarkm#   EscapeChar ~
3799132Sdes#   VersionAddendum FreeBSD-20020629
38