ssh_config revision 76262
157429Smarkm# This is ssh client systemwide configuration file.  This file provides 
257429Smarkm# defaults for users, and the values can be changed in per-user configuration
357429Smarkm# files or on the command line.
457432Smarkm#
576262Sgreen#	$OpenBSD: ssh_config,v 1.10 2001/04/03 21:19:38 todd Exp $
676262Sgreen#	$FreeBSD: head/crypto/openssh/ssh_config 76262 2001-05-04 04:14:23Z green $
757429Smarkm
876262Sgreen# This is ssh client systemwide configuration file.  See ssh(1) for more
976262Sgreen# information.  This file provides defaults for users, and the values can
1076262Sgreen# be changed in per-user configuration files or on the command line.
1176262Sgreen
1257429Smarkm# Configuration data is parsed as follows:
1357429Smarkm#  1. command line options
1457429Smarkm#  2. user-specific file
1557429Smarkm#  3. system-wide file
1657429Smarkm# Any configuration value is only changed the first time it is set.
1757429Smarkm# Thus, host-specific definitions should be at the beginning of the
1857429Smarkm# configuration file, and defaults at the end.
1957429Smarkm
2057429Smarkm# Site-wide defaults for various options
2157429Smarkm
2257429Smarkm# Host *
2376262Sgreen#   ForwardAgent no
2476262Sgreen#   ForwardX11 no
2576262Sgreen#   RhostsAuthentication no
2657429Smarkm#   RhostsRSAAuthentication yes
2757429Smarkm#   RSAAuthentication yes
2857429Smarkm#   PasswordAuthentication yes
2962940Speter#   FallBackToRsh no
3057429Smarkm#   UseRsh no
3157429Smarkm#   BatchMode no
3257429Smarkm#   CheckHostIP yes
3376262Sgreen#   StrictHostKeyChecking yes
3457429Smarkm#   IdentityFile ~/.ssh/identity
3576262Sgreen#   IdentityFile ~/.ssh/id_dsa
3676262Sgreen#   IdentityFile ~/.ssh/id_rsa
3757429Smarkm#   Port 22
3860576Skris#   Protocol 2,1
3957429Smarkm#   Cipher blowfish
4057429Smarkm#   EscapeChar ~
41