13

Lately, I get lots of these errors on my home server. Their occurrence seems proportional to the traffic, so if I am working in a shell on the server I may seem 1-2 a day. But If I start some rsync, or scp process I see 5-6 per file transferred.

kex protocol error: type 7 seq 358115
kex protocol error: type 7 seq 429489
kex protocol error: type 7 seq 500711
kex protocol error: type 7 seq 571534
kex protocol error: type 7 seq 642352

The server is a Gentoo Linux running OpenSSH_7.2p2, OpenSSL 1.0.2h This problem seems to happen independent on the client that is connected to the server. That might be my notebook (also Gentoo with OpenSSH_7.2p2, OpenSSL 1.0.2h) or a Qnap NAS (Linux QNAP1 3.4.6 #1 SMP Wed Jun 1 05:17:33 CST 2016 x86_64 unknown - OpenSSH_7.2p2, OpenSSL 1.0.1t)

I have not been able to find out what a "type 7" error means. Despite these warnings the transfer seems to work well, I have checked the transferred files and there is no coruption. So basically these warning messages just garble the screen output, which is my main motivation to get rid of them.

4
  • 1
    From this log is not clear why the error occurred, but it is certainly inside of openssh. If you can reproduce this behaviour, can you provide the verbose log from the client (scp -vvv original_argumetns)? It should say what message caused this error. The message means that the server received message, that is not supported.
    – Jakuje
    Commented Jun 20, 2016 at 17:42
  • I can actually reproduce it for over a year now and across distributions (former Gentoo, now Arch). Meanwhile this is still a thing with OpenSSH 7.4 on Arch copying to a LibreElec as well as to a Qnap NAS.
    – Perlator
    Commented Apr 5, 2017 at 18:14
  • 1
    Almost a year ago I asked for the verbose log to see the context of the message.
    – Jakuje
    Commented Apr 5, 2017 at 19:33
  • @Jakuje verbose log is here pastebin.com/HgGAtH9R Commented Dec 27, 2017 at 23:53

1 Answer 1

7

Seems to be a bug in openssh :

http://lists.mindrot.org/pipermail/openssh-unix-dev/2016-August/035350.html

To avoid Problems try to use in your sshd_config:

UsePrivilegeSeparation yes

0

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .