Can I have a test account on your server?
- martin
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
I'm trying to rename files in a SFTP and it works, but after a few files renamed, suddenly the below text is written in the log and the exception is never thrown.
. 2016-01-28 12:46:06.719 --------------------------------------------------------------------------
. 2016-01-28 12:46:06.719 Looking up host "sftp.cleanharbors.com"
. 2016-01-28 12:46:06.719 Connecting to 12.15.160.40 port 22
. 2016-01-28 12:46:06.938 Server unexpectedly closed network connection
. 2016-01-28 12:46:06.938 Knocking FTP port.
. 2016-01-28 12:46:07.079 FTP port opened, will suggest using FTP protocol.
I already set SendBuf=0 and SshSimple=0
I'm using C#
sessionOptions.AddRawSettings("SendBuf", "0");
sessionOptions.AddRawSettings("SshSimple", "0");
SendBuf
and SshSimple
are absolutely not related to this problem either.
SshSimple=0
/log=path_to_log_file
command-line argument. Submit the log with your post as an attachment. Note that passwords and passphrases not stored in the log. You may want to remove other data you consider sensitive though, such as host names, IP addresses, account names or file names (unless they are relevant to the problem). If you do not want to post the log publicly, you can mark the attachment as private.Server unexpectedly closed network connection.
-rawsettings SendBuf=0
appended to the open
command, the connection will "unexpectedly close" on files larger than a few megabytes.
SendBuf=0
completely turn off the feature as the GUI checkbox does?