This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

FIN ACK after sent packet

0

I'm implementing the ssh ftp protocol to connect to an sftp server on port 22 and I keep getting a FIN ACK from the server after I send either a ssh binary packet SSH_KEX_MSG_DH_GEX_REQUEST or an SSH_MSG_KEXINIT, which seems to close the connection. I want to keep the connection open so that I can establish the server authentication. What could be causing this?

asked 12 Feb '14, 08:47

mikepol's gravatar image

mikepol
11113
accept rate: 0%


One Answer:

2

What could be causing this?

a bug in your ssh protocol implementation, which causes the server to close the session. You should enable debugging in the SSH server and check if/what it is reporting.

Regards
Kurt

answered 12 Feb '14, 08:58

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

Thanks Kurt. I'll give that a shot.

(12 Feb '14, 09:27) mikepol

O.K.

Hint: If a supplied answer resolves your question can you please "accept" it by clicking the checkmark icon next to it. This highlights good answers for the benefit of subsequent users with the same or similar questions.

(12 Feb '14, 09:33) Kurt Knochner ♦