diff options
author | Colin Watson <cjwatson@debian.org> | 2019-04-08 10:46:29 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2019-04-08 10:46:29 +0100 |
commit | 6b56cd57db9061296231f14d537f1ebaf25e8877 (patch) | |
tree | b98e14d0473eebed64d210b7ec620d427d6a7698 /servconf.c | |
parent | 7a3fa37583d4abf128f7f4c6eb1e7ffc90115eab (diff) |
Revert "upstream: Update default IPQoS in ssh(1), sshd(8) to DSCP AF21 for"
This reverts commit 5ee8448ad7c306f05a9f56769f95336a8269f379.
The IPQoS default changes have some unfortunate interactions with
iptables (see https://bugs.debian.org/923880) and VMware, so I'm
temporarily reverting them until those have been fixed.
Bug-Debian: https://bugs.debian.org/923879
Bug-Debian: https://bugs.debian.org/926229
Bug-Ubuntu: https://bugs.launchpad.net/1822370
Last-Update: 2019-04-08
Patch-Name: revert-ipqos-defaults.patch
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c index c5dd617ef..bf2669147 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -403,9 +403,9 @@ fill_default_server_options(ServerOptions *options) | |||
403 | if (options->permit_tun == -1) | 403 | if (options->permit_tun == -1) |
404 | options->permit_tun = SSH_TUNMODE_NO; | 404 | options->permit_tun = SSH_TUNMODE_NO; |
405 | if (options->ip_qos_interactive == -1) | 405 | if (options->ip_qos_interactive == -1) |
406 | options->ip_qos_interactive = IPTOS_DSCP_AF21; | 406 | options->ip_qos_interactive = IPTOS_LOWDELAY; |
407 | if (options->ip_qos_bulk == -1) | 407 | if (options->ip_qos_bulk == -1) |
408 | options->ip_qos_bulk = IPTOS_DSCP_CS1; | 408 | options->ip_qos_bulk = IPTOS_THROUGHPUT; |
409 | if (options->version_addendum == NULL) | 409 | if (options->version_addendum == NULL) |
410 | options->version_addendum = xstrdup(""); | 410 | options->version_addendum = xstrdup(""); |
411 | if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1) | 411 | if (options->fwd_opts.streamlocal_bind_mask == (mode_t)-1) |