ssh_config revision 157019
117680Spst#	$OpenBSD: ssh_config,v 1.21 2005/12/06 22:38:27 reyk Exp $
239300Sfenner#	$FreeBSD: head/crypto/openssh/ssh_config 157019 2006-03-22 20:41:37Z des $
317680Spst
417680Spst# This is the ssh client system-wide configuration file.  See
517680Spst# ssh_config(5) for more information.  This file provides defaults for
617680Spst# users, and the values can be changed in per-user configuration files
717680Spst# or on the command line.
817680Spst
917680Spst# Configuration data is parsed as follows:
1017680Spst#  1. command line options
1117680Spst#  2. user-specific file
1217680Spst#  3. system-wide file
1317680Spst# Any configuration value is only changed the first time it is set.
1417680Spst# Thus, host-specific definitions should be at the beginning of the
1517680Spst# configuration file, and defaults at the end.
1617680Spst
1717680Spst# Site-wide defaults for some commonly used options.  For a comprehensive
1817680Spst# list of available options, their meanings and defaults, please see the
1917680Spst# ssh_config(5) man page.
2056896Sfenner
2156896Sfenner# Host *
2217680Spst#   ForwardAgent no
2317680Spst#   ForwardX11 no
2417680Spst#   RhostsRSAAuthentication no
25127675Sbms#   RSAAuthentication yes
26190207Srpaulo#   PasswordAuthentication yes
2717680Spst#   HostbasedAuthentication no
2817680Spst#   BatchMode no
2956896Sfenner#   CheckHostIP no
3056896Sfenner#   AddressFamily any
3156896Sfenner#   ConnectTimeout 0
3256896Sfenner#   StrictHostKeyChecking ask
33127675Sbms#   IdentityFile ~/.ssh/identity
3417680Spst#   IdentityFile ~/.ssh/id_rsa
3517680Spst#   IdentityFile ~/.ssh/id_dsa
3617680Spst#   Port 22
3717680Spst#   Protocol 2,1
38146778Ssam#   Cipher 3des
3917680Spst#   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
4075118Sfenner#   EscapeChar ~
4117680Spst#   Tunnel no
4217680Spst#   TunnelDevice any:any
4317680Spst#   PermitLocalCommand no
4475118Sfenner#   VersionAddendum FreeBSD-20060322
4575118Sfenner