1262566Sdes#	$OpenBSD: ssh_config,v 1.28 2013/09/16 11:35:43 sthen Exp $
299051Sdes#	$FreeBSD: releng/10.2/crypto/openssh/ssh_config 264692 2014-04-20 12:46:18Z 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
41192595Sdes#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
42181111Sdes#   MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
4357429Smarkm#   EscapeChar ~
44157019Sdes#   Tunnel no
45157019Sdes#   TunnelDevice any:any
46157019Sdes#   PermitLocalCommand no
47192595Sdes#   VisualHostKey no
48204917Sdes#   ProxyCommand ssh -q -W %h:%p gateway.example.com
49255767Sdes#   RekeyLimit 1G 1h
50255461Sdes#   VerifyHostKeyDNS yes
51264692Sdes#   VersionAddendum FreeBSD-20140420
52