]> git.pld-linux.org Git - packages/openssh.git/blob - openssh.conf
- patch5 shouldn't be applied by default
[packages/openssh.git] / openssh.conf
1 # This is the ssh client system-wide configuration file.  See
2 # ssh_config(5) for more information.  This file provides defaults for
3 # users, and the values can be changed in per-user configuration files
4 # or on the command line.
5
6 # Configuration data is parsed as follows:
7 #  1. command line options
8 #  2. user-specific file
9 #  3. system-wide file
10 # Any configuration value is only changed the first time it is set.
11 # Thus, host-specific definitions should be at the beginning of the
12 # configuration file, and defaults at the end.
13
14 # Site-wide defaults for various options
15
16 # Host *
17 #   ForwardAgent no
18 #   ForwardX11 no
19 #   RhostsAuthentication no
20 #   RhostsRSAAuthentication no
21 #   RSAAuthentication yes
22 #   PasswordAuthentication yes
23 #   BatchMode no
24 #   CheckHostIP yes
25 #   StrictHostKeyChecking ask
26 #   IdentityFile ~/.ssh/identity
27 #   IdentityFile ~/.ssh/id_rsa
28 #   IdentityFile ~/.ssh/id_dsa
29 #   Port 22
30 #   Protocol 2,1
31 #   Cipher 3des
32 #   Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
33 #   EscapeChar ~
34
35 # Be paranoid by default
36 Host *
37         ForwardAgent no
38         ForwardX11 no
39         StrictHostKeyChecking no
This page took 0.03599 seconds and 3 git commands to generate.