Mercurial > repos > other > Puppet
comparison modules/ssh/spec/fixtures/ssh_config_debian @ 385:d9009f54eb23
Migrate to a fully-fledged SSH module
This handles lots of the server path differences for us
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 03 Jan 2022 17:05:54 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
384:22e45bb5ea97 | 385:d9009f54eb23 |
---|---|
1 # This file is being maintained by Puppet. | |
2 # DO NOT EDIT | |
3 | |
4 # $OpenBSD: ssh_config,v 1.21 2005/12/06 22:38:27 reyk Exp $ | |
5 | |
6 # This is the ssh client system-wide configuration file. See | |
7 # ssh_config(5) for more information. This file provides defaults for | |
8 # users, and the values can be changed in per-user configuration files | |
9 # or on the command line. | |
10 | |
11 # Configuration data is parsed as follows: | |
12 # 1. command line options | |
13 # 2. user-specific file | |
14 # 3. system-wide file | |
15 # Any configuration value is only changed the first time it is set. | |
16 # Thus, host-specific definitions should be at the beginning of the | |
17 # configuration file, and defaults at the end. | |
18 | |
19 # Site-wide defaults for some commonly used options. For a comprehensive | |
20 # list of available options, their meanings and defaults, please see the | |
21 # ssh_config(5) man page. | |
22 | |
23 # Host * | |
24 # ForwardAgent no | |
25 # ForwardX11 no | |
26 # RhostsRSAAuthentication no | |
27 # RSAAuthentication yes | |
28 PasswordAuthentication yes | |
29 PubkeyAuthentication yes | |
30 # HostbasedAuthentication no | |
31 # BatchMode no | |
32 # CheckHostIP yes | |
33 # AddressFamily any | |
34 # ConnectTimeout 0 | |
35 # StrictHostKeyChecking ask | |
36 # IdentityFile ~/.ssh/identity | |
37 IdentityFile ~/.ssh/id_rsa | |
38 IdentityFile ~/.ssh/id_dsa | |
39 # Port 22 | |
40 Protocol 2 | |
41 # Cipher 3des | |
42 # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc | |
43 # EscapeChar ~ | |
44 # Tunnel no | |
45 # TunnelDevice any:any | |
46 # PermitLocalCommand no | |
47 # HashKnownHosts no | |
48 HashKnownHosts no | |
49 GlobalKnownHostsFile /etc/ssh/ssh_known_hosts | |
50 Host * | |
51 # GSSAPIAuthentication yes | |
52 GSSAPIAuthentication yes | |
53 # If this option is set to yes then remote X11 clients will have full access | |
54 # to the original X11 display. As virtually no X11 client supports the untrusted | |
55 # mode correctly we set this to yes. | |
56 ForwardX11Trusted yes | |
57 UseRoaming no | |
58 # Send locale-related environment variables | |
59 SendEnv LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES | |
60 SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT | |
61 SendEnv LC_IDENTIFICATION LC_ALL |