ssh_config revision 124211
180016Sobrien#	$OpenBSD: ssh_config,v 1.19 2003/08/13 08:46:31 markus Exp $
280016Sobrien#	$FreeBSD: head/crypto/openssh/ssh_config 124211 2004-01-07 11:16:27Z des $
380016Sobrien
480016Sobrien# This is the ssh client system-wide configuration file.  See
580016Sobrien# ssh_config(5) for more information.  This file provides defaults for
680016Sobrien# users, and the values can be changed in per-user configuration files
7218822Sdim# or on the command line.
8218822Sdim
9218822Sdim# Configuration data is parsed as follows:
10218822Sdim#  1. command line options
11218822Sdim#  2. user-specific file
12218822Sdim#  3. system-wide file
1380016Sobrien# Any configuration value is only changed the first time it is set.
1480016Sobrien# Thus, host-specific definitions should be at the beginning of the
1580016Sobrien# configuration file, and defaults at the end.
16130561Sobrien
1780016Sobrien# Site-wide defaults for various options
1880016Sobrien
1980016Sobrien# Host *
2080016Sobrien#   ForwardAgent no
2180016Sobrien#   ForwardX11 no
2280016Sobrien#   RhostsRSAAuthentication no
2380016Sobrien#   RSAAuthentication yes
2480016Sobrien#   PasswordAuthentication yes
2580016Sobrien#   HostbasedAuthentication no
2680016Sobrien#   BatchMode no
2780016Sobrien#   CheckHostIP no
28218822Sdim#   AddressFamily any
2989857Sobrien#   ConnectTimeout 0
3080016Sobrien#   StrictHostKeyChecking ask
3180016Sobrien#   IdentityFile ~/.ssh/identity
3280016Sobrien#   IdentityFile ~/.ssh/id_rsa
33130561Sobrien#   IdentityFile ~/.ssh/id_dsa
34130561Sobrien#   Port 22
3589857Sobrien#   Protocol 2,1
3689857Sobrien#   Cipher 3des
3789857Sobrien#   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
3880016Sobrien#   EscapeChar ~
39218822Sdim#   VersionAddendum FreeBSD-20040106
40218822Sdim