diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:10:18 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2018-04-03 18:40:49 +0100 |
commit | e8e09061f8168f6f105f56fca10b6cd61b9f587a (patch) | |
tree | 9dcdf46099c2026e16314f37d7686386fa6ca1cd /ssh_config.5 | |
parent | 4acdde3e5b206718774fa162763058155fe572bf (diff) |
Various Debian-specific configuration changes
ssh: Enable ForwardX11Trusted, returning to earlier semantics which cause
fewer problems with existing setups (http://bugs.debian.org/237021).
ssh: Set 'SendEnv LANG LC_*' by default (http://bugs.debian.org/264024).
ssh: Enable HashKnownHosts by default to try to limit the spread of ssh
worms.
ssh: Enable GSSAPIAuthentication by default.
sshd: Enable PAM, disable ChallengeResponseAuthentication, and disable
PrintMotd.
sshd: Enable X11Forwarding.
sshd: Set 'AcceptEnv LANG LC_*' by default.
sshd: Change sftp subsystem path to /usr/lib/openssh/sftp-server.
Document all of this.
Author: Russ Allbery <rra@debian.org>
Forwarded: not-needed
Last-Update: 2017-10-04
Patch-Name: debian-config.patch
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index ca0528842..ed6e5d026 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -71,6 +71,22 @@ Since the first obtained value for each parameter is used, more | |||
71 | host-specific declarations should be given near the beginning of the | 71 | host-specific declarations should be given near the beginning of the |
72 | file, and general defaults at the end. | 72 | file, and general defaults at the end. |
73 | .Pp | 73 | .Pp |
74 | Note that the Debian | ||
75 | .Ic openssh-client | ||
76 | package sets several options as standard in | ||
77 | .Pa /etc/ssh/ssh_config | ||
78 | which are not the default in | ||
79 | .Xr ssh 1 : | ||
80 | .Pp | ||
81 | .Bl -bullet -offset indent -compact | ||
82 | .It | ||
83 | .Cm SendEnv No LANG LC_* | ||
84 | .It | ||
85 | .Cm HashKnownHosts No yes | ||
86 | .It | ||
87 | .Cm GSSAPIAuthentication No yes | ||
88 | .El | ||
89 | .Pp | ||
74 | The file contains keyword-argument pairs, one per line. | 90 | The file contains keyword-argument pairs, one per line. |
75 | Lines starting with | 91 | Lines starting with |
76 | .Ql # | 92 | .Ql # |
@@ -690,11 +706,12 @@ elapsed. | |||
690 | .It Cm ForwardX11Trusted | 706 | .It Cm ForwardX11Trusted |
691 | If this option is set to | 707 | If this option is set to |
692 | .Cm yes , | 708 | .Cm yes , |
709 | (the Debian-specific default), | ||
693 | remote X11 clients will have full access to the original X11 display. | 710 | remote X11 clients will have full access to the original X11 display. |
694 | .Pp | 711 | .Pp |
695 | If this option is set to | 712 | If this option is set to |
696 | .Cm no | 713 | .Cm no |
697 | (the default), | 714 | (the upstream default), |
698 | remote X11 clients will be considered untrusted and prevented | 715 | remote X11 clients will be considered untrusted and prevented |
699 | from stealing or tampering with data belonging to trusted X11 | 716 | from stealing or tampering with data belonging to trusted X11 |
700 | clients. | 717 | clients. |