ssh_config revision 323129
155992Swpaul#	$OpenBSD: ssh_config,v 1.30 2016/02/20 23:06:23 sobrado Exp $
255992Swpaul#	$FreeBSD: stable/11/crypto/openssh/ssh_config 323129 2017-09-02 14:25:20Z des $
355992Swpaul
455992Swpaul# This is the ssh client system-wide configuration file.  See
555992Swpaul# ssh_config(5) for more information.  This file provides defaults for
655992Swpaul# users, and the values can be changed in per-user configuration files
755992Swpaul# or on the command line.
855992Swpaul
955992Swpaul# Configuration data is parsed as follows:
1055992Swpaul#  1. command line options
1155992Swpaul#  2. user-specific file
1255992Swpaul#  3. system-wide file
1355992Swpaul# Any configuration value is only changed the first time it is set.
1455992Swpaul# Thus, host-specific definitions should be at the beginning of the
1555992Swpaul# configuration file, and defaults at the end.
1655992Swpaul
1755992Swpaul# Site-wide defaults for some commonly used options.  For a comprehensive
1855992Swpaul# list of available options, their meanings and defaults, please see the
1955992Swpaul# ssh_config(5) man page.
2055992Swpaul
2155992Swpaul# Host *
2255992Swpaul#   ForwardAgent no
2355992Swpaul#   ForwardX11 no
2455992Swpaul#   RhostsRSAAuthentication no
2555992Swpaul#   RSAAuthentication yes
2655992Swpaul#   PasswordAuthentication yes
2755992Swpaul#   HostbasedAuthentication no
2855992Swpaul#   GSSAPIAuthentication no
2955992Swpaul#   GSSAPIDelegateCredentials no
3055992Swpaul#   BatchMode no
3155992Swpaul#   CheckHostIP no
3255992Swpaul#   AddressFamily any
3355992Swpaul#   ConnectTimeout 0
3455992Swpaul#   StrictHostKeyChecking ask
3555992Swpaul#   IdentityFile ~/.ssh/identity
3655992Swpaul#   IdentityFile ~/.ssh/id_rsa
3755992Swpaul#   IdentityFile ~/.ssh/id_dsa
3855992Swpaul#   IdentityFile ~/.ssh/id_ecdsa
3955992Swpaul#   IdentityFile ~/.ssh/id_ed25519
40113038Sobrien#   Port 22
41113038Sobrien#   Protocol 2
42113038Sobrien#   Cipher 3des
4355992Swpaul#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
4455992Swpaul#   MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
4555992Swpaul#   EscapeChar ~
4655992Swpaul#   Tunnel no
4755992Swpaul#   TunnelDevice any:any
4855992Swpaul#   PermitLocalCommand no
4955992Swpaul#   VisualHostKey no
5055992Swpaul#   ProxyCommand ssh -q -W %h:%p gateway.example.com
5155992Swpaul#   RekeyLimit 1G 1h
5255992Swpaul#   VerifyHostKeyDNS yes
5355992Swpaul#   VersionAddendum FreeBSD-20170902
5455992Swpaul