ssh_config revision 162856
1162856Sdes#	$OpenBSD: ssh_config,v 1.22 2006/05/29 12:56:33 dtucker Exp $
299051Sdes#	$FreeBSD: head/crypto/openssh/ssh_config 162856 2006-09-30 13:38:06Z 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
17147005Sdes# Site-wide defaults for some commonly used options.  For a comprehensive
18147005Sdes# list of available options, their meanings and defaults, please see the
19147005Sdes# ssh_config(5) man page.
2057429Smarkm
2157429Smarkm# Host *
2276262Sgreen#   ForwardAgent no
2376262Sgreen#   ForwardX11 no
2498684Sdes#   RhostsRSAAuthentication no
2557429Smarkm#   RSAAuthentication yes
2657429Smarkm#   PasswordAuthentication yes
27106130Sdes#   HostbasedAuthentication no
28162856Sdes#   GSSAPIAuthentication no
29162856Sdes#   GSSAPIDelegateCredentials no
3057429Smarkm#   BatchMode no
31100678Sfanf#   CheckHostIP no
32124211Sdes#   AddressFamily any
33124211Sdes#   ConnectTimeout 0
3492559Sdes#   StrictHostKeyChecking ask
3557429Smarkm#   IdentityFile ~/.ssh/identity
3692559Sdes#   IdentityFile ~/.ssh/id_rsa
3776262Sgreen#   IdentityFile ~/.ssh/id_dsa
3857429Smarkm#   Port 22
3960576Skris#   Protocol 2,1
4092559Sdes#   Cipher 3des
4192559Sdes#   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
4257429Smarkm#   EscapeChar ~
43157019Sdes#   Tunnel no
44157019Sdes#   TunnelDevice any:any
45157019Sdes#   PermitLocalCommand no
46157019Sdes#   VersionAddendum FreeBSD-20060322
47