In the client side , sftp application send some packet to ssh server port 22.
SFTP application send packet to TCP , from etherial capture we can see that sftp packet send from application to TCP and TCP send to packet to server but TCP not recieved TCP ACK from the server so TCP again send the packet after few second but still no response from server..
It seems that server no received the packet from client.
Client SFTP allication wait in select for TCP recv with timeout of 120 second after 120 second application get timeout from select and close the SFTP operation with timeout error.
In capture I can see TCP retransmit packet many times but fail to recv server TCP ACK.
Scenario: 1. Timeout happen sometime only. 2. After this issue next SFTP opration[upload] success with same server. 3. It seems network has no issue because next upload is working fine. 4. both client and server has SOLARIS OS 5. we are unable to reproduce this in our Lab environment 6. This issue happen only in real customer network. 7. Appln is in C language. SSH server is Open SSH server.
I want to know: 1. How can we found reason for TCP not recv ACK repply form Server. 2. Is any TCP system setting in solaris cause this issue. 3. please provide any inforamtion so that we can resolve this issue.