ssh_config revision 92559
116359Sasami#	$OpenBSD: ssh_config,v 1.12 2002/01/16 17:55:33 stevesk Exp $
216359Sasami#	$FreeBSD: head/crypto/openssh/ssh_config 92559 2002-03-18 10:09:43Z des $
316359Sasami
418265Sasami# This is the ssh client system-wide configuration file.  See ssh(1)
516359Sasami# for more information.  This file provides defaults for users, and
650477Speter# the values can be changed in per-user configuration files or on the
718265Sasami# command line.
826375Skato
926375Skato# Configuration data is parsed as follows:
1026375Skato#  1. command line options
1126375Skato#  2. user-specific file
1255087Skato#  3. system-wide file
1355664Skato# Any configuration value is only changed the first time it is set.
1455664Skato# Thus, host-specific definitions should be at the beginning of the
1516359Sasami# configuration file, and defaults at the end.
1655087Skato
1716359Sasami# Site-wide defaults for various options
1855087Skato
1955664Skato# Host *
2055664Skato#   ForwardAgent no
2154355Skato#   ForwardX11 no
2255087Skato#   RhostsAuthentication yes
2354355Skato#   RhostsRSAAuthentication yes
2416359Sasami#   RSAAuthentication yes
2555087Skato#   PasswordAuthentication yes
2655664Skato#   FallBackToRsh no
2716359Sasami#   UseRsh no
2816359Sasami#   BatchMode no
2916359Sasami#   CheckHostIP yes
3055087Skato#   StrictHostKeyChecking ask
3155087Skato#   IdentityFile ~/.ssh/identity
3255664Skato#   IdentityFile ~/.ssh/id_rsa
3355087Skato#   IdentityFile ~/.ssh/id_dsa
3455087Skato#   Port 22
3555087Skato#   Protocol 2,1
3645783Skato#   Cipher 3des
3745783Skato#   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
3845783Skato#   EscapeChar ~
3945783Skato