ssh_config revision 57432
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#
557432Smarkm# $FreeBSD: head/crypto/openssh/ssh_config 57432 2000-02-24 15:29:42Z markm $
657429Smarkm
757429Smarkm# Configuration data is parsed as follows:
857429Smarkm#  1. command line options
957429Smarkm#  2. user-specific file
1057429Smarkm#  3. system-wide file
1157429Smarkm# Any configuration value is only changed the first time it is set.
1257429Smarkm# Thus, host-specific definitions should be at the beginning of the
1357429Smarkm# configuration file, and defaults at the end.
1457429Smarkm
1557429Smarkm# Site-wide defaults for various options
1657429Smarkm
1757429Smarkm# Host *
1857429Smarkm#   ForwardAgent yes
1957429Smarkm#   ForwardX11 yes
2057429Smarkm#   RhostsAuthentication yes
2157429Smarkm#   RhostsRSAAuthentication yes
2257429Smarkm#   RSAAuthentication yes
2357429Smarkm#   PasswordAuthentication yes
2457429Smarkm#   FallBackToRsh yes
2557429Smarkm#   UseRsh no
2657429Smarkm#   BatchMode no
2757429Smarkm#   CheckHostIP yes
2857429Smarkm#   StrictHostKeyChecking no
2957429Smarkm#   IdentityFile ~/.ssh/identity
3057429Smarkm#   Port 22
3157429Smarkm#   Cipher blowfish
3257429Smarkm#   EscapeChar ~
33