From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH v2] fix broken SFTP in OpenSSH server Date: Mon, 08 Oct 2018 19:30:09 +0200 Message-ID: <20181008173009.3795-1-peter.mueller@link38.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5069834758760275318==" List-Id: --===============5069834758760275318== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Fixes #11887 The second version of this patch uses the correct path on IPFire systems and supersedes the first one. It also referrs to the correct issue ID. Thanks to Matthias Fischer for reporting this. Signed-off-by: Peter Müller --- config/ssh/sshd_config | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/ssh/sshd_config b/config/ssh/sshd_config index 60bb0a9e6..a248c4906 100644 --- a/config/ssh/sshd_config +++ b/config/ssh/sshd_config @@ -75,4 +75,7 @@ ClientAliveInterval 10 # close unresponsive SSH sessions which fail to answer keep-alive ClientAliveCountMax 6 +# add support for SFTP +Subsystem sftp /usr/lib/openssh/sftp-server + # EOF -- 2.16.4 --===============5069834758760275318==--