~vcs-imports/ipfire/ipfire-2.x

« back to all changes in this revision

Viewing changes to lfs/strip

  • Committer: Peter Müller
  • Date: 2022-04-23 14:27:56 UTC
  • mto: This revision was merged to the branch mainline in revision 9750.
  • Revision ID: git-v1:7a981d94cb2c3e48ecaf07c506c8353a2c839d79
SSH: do not send spoofable TCP keep alive messages

By default, both SSH server and client rely on TCP-based keep alive
messages to detect broken sessions, which can be spoofed rather easily
in order to keep a broken session opened (and vice versa).

Since we rely on SSH-based keep alive messages, which are not vulnerable
to this kind of tampering, there is no need to double-check connections
via TCP keep alive as well.

This patch thereof disables using TCP keep alive for both SSH client and
server scenario. For usability reasons, a timeout of 5 minutes (10
seconds * 30 keep alive messages = 300 seconds) will be used for both
client and server configuration, as 60 seconds were found to be too
short for unstable connectivity scenarios.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
###############################################################################
2
2
#                                                                             #
3
3
# IPFire.org - A linux based firewall                                         #
4
 
# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
 
4
# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
5
5
#                                                                             #
6
6
# This program is free software: you can redistribute it and/or modify        #
7
7
# it under the terms of the GNU General Public License as published by        #
59
59
        $(DIR_SRC)/src/stripper / \
60
60
                --exclude=$(TOOLS_DIR) \
61
61
                --exclude=$(QEMU_TARGET_HELPER) \
62
 
                --exclude=/lib/firmware/qcom/sc8280xp/LENOVO/21BX \
63
62
                --exclude=/tmp \
64
 
                --exclude=/usr/lib/go \
 
63
                --exclude=/usr/src \
65
64
                --exclude=/usr/lib/vdr \
66
65
                --exclude=/usr/sbin/vdr \
67
 
                --exclude=/usr/bin/cargo \
68
 
                --exclude=/usr/bin/rustdoc \
69
 
                --exclude=/usr/bin/rustc \
70
 
                --exclude=/usr/libexec/rust-analyzer-proc-macro-srv \
71
 
                --exclude=/usr/libexec/cargo-credential-1password \
72
 
                --exclude=/usr/src \
73
 
                --exclude=/var/tmp
 
66
                --exclude=/var/tmp \
 
67
                --exclude=/usr/lib/go
74
68
endif