exim-config: Advance to new upstream version.
[distorted-ansible] / roles / common / files / ssh-config / ssh_config
CommitLineData
3f6c5992
MW
1### -*-conf-*-
2###
3### SSH client configuration defaults.
4###
5### This file is maintained on ibanez: edit it there and run `update-slaves'.
6
7###--------------------------------------------------------------------------
8### General default settings.
9###
10### Stuff above or from user configuration overrides this.
11
12Host *
13
14 ## These are a bad idea to use with sites you don't trust. Users can
15 ## override this if they feel brave.
16 ForwardAgent no
17 ForwardX11 no
18 ForwardX11Trusted no
19
20 ## Take a punt on Kerberos authentication.
21 ##GSSAPIAuthentication yes
22 ##GSSAPIKeyExchange yes
23
24 ## Send locale and time-zone information.
25 SendEnv LANG LC_* TZ
26
27 ## Don't make the known_hosts file incomprehensible.
28 HashKnownHosts no
29
30###----- That's all, folks --------------------------------------------------