1296633Sdes#	$OpenBSD: ssh_config,v 1.30 2016/02/20 23:06:23 sobrado Exp $
299051Sdes#	$FreeBSD: stable/11/crypto/openssh/ssh_config 323136 2017-09-02 23:39:51Z 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
38296633Sdes#   IdentityFile ~/.ssh/id_ecdsa
39296633Sdes#   IdentityFile ~/.ssh/id_ed25519
4057429Smarkm#   Port 22
41296633Sdes#   Protocol 2
4292559Sdes#   Cipher 3des
43192595Sdes#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
44181111Sdes#   MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
4557429Smarkm#   EscapeChar ~
46157019Sdes#   Tunnel no
47157019Sdes#   TunnelDevice any:any
48157019Sdes#   PermitLocalCommand no
49192595Sdes#   VisualHostKey no
50204917Sdes#   ProxyCommand ssh -q -W %h:%p gateway.example.com
51255767Sdes#   RekeyLimit 1G 1h
52255461Sdes#   VerifyHostKeyDNS yes
53323136Sdes#   VersionAddendum FreeBSD-20170903
54