ssh_config revision 62940
1124208Sdes# This is ssh client systemwide configuration file.  This file provides 
2124208Sdes# defaults for users, and the values can be changed in per-user configuration
3124208Sdes# files or on the command line.
4124208Sdes#
5124208Sdes# $FreeBSD: head/crypto/openssh/ssh_config 62940 2000-07-11 09:39:34Z peter $
6124208Sdes
7124208Sdes# Configuration data is parsed as follows:
8124208Sdes#  1. command line options
9124208Sdes#  2. user-specific file
10124208Sdes#  3. system-wide file
11124208Sdes# Any configuration value is only changed the first time it is set.
12124208Sdes# Thus, host-specific definitions should be at the beginning of the
13124208Sdes# configuration file, and defaults at the end.
14124208Sdes
15124208Sdes# Site-wide defaults for various options
16124208Sdes
17124208Sdes# Host *
18124208Sdes#   ForwardAgent yes
19124208Sdes#   ForwardX11 yes
20124208Sdes#   RhostsAuthentication yes
21124208Sdes#   RhostsRSAAuthentication yes
22124208Sdes#   RSAAuthentication yes
23124208Sdes#   PasswordAuthentication yes
24124208Sdes#   FallBackToRsh no
2598937Sdes#   UseRsh no
2698937Sdes#   BatchMode no
2798937Sdes#   CheckHostIP yes
28124208Sdes#   StrictHostKeyChecking no
2998937Sdes#   IdentityFile ~/.ssh/identity
3098937Sdes#   Port 22
3198937Sdes#   Protocol 2,1
3298937Sdes#   Cipher blowfish
3398937Sdes#   EscapeChar ~
3498937Sdes