ssh_config revision 76262
1# This is ssh client systemwide configuration file.  This file provides 
2# defaults for users, and the values can be changed in per-user configuration
3# files or on the command line.
4#
5#	$OpenBSD: ssh_config,v 1.10 2001/04/03 21:19:38 todd Exp $
6#	$FreeBSD: head/crypto/openssh/ssh_config 76262 2001-05-04 04:14:23Z green $
7
8# This is ssh client systemwide configuration file.  See ssh(1) for more
9# information.  This file provides defaults for users, and the values can
10# be changed in per-user configuration files or on the command line.
11
12# Configuration data is parsed as follows:
13#  1. command line options
14#  2. user-specific file
15#  3. system-wide file
16# Any configuration value is only changed the first time it is set.
17# Thus, host-specific definitions should be at the beginning of the
18# configuration file, and defaults at the end.
19
20# Site-wide defaults for various options
21
22# Host *
23#   ForwardAgent no
24#   ForwardX11 no
25#   RhostsAuthentication no
26#   RhostsRSAAuthentication yes
27#   RSAAuthentication yes
28#   PasswordAuthentication yes
29#   FallBackToRsh no
30#   UseRsh no
31#   BatchMode no
32#   CheckHostIP yes
33#   StrictHostKeyChecking yes
34#   IdentityFile ~/.ssh/identity
35#   IdentityFile ~/.ssh/id_dsa
36#   IdentityFile ~/.ssh/id_rsa
37#   Port 22
38#   Protocol 2,1
39#   Cipher blowfish
40#   EscapeChar ~
41