我有以下代码尝试连接到使用OpenSSH构建的SFTP服务器(服务器正常工作,因为我已经能够通过WinSCP客户端成功连接到此FTP):
ConnectionInfo ConnNfo = new ConnectionInfo("127.0.0.1", 22, "usertest",
new AuthenticationMethod[]{
// Pasword based Authentication
new PasswordAuthenticationMethod("usertest","usertest"),
}
);
// Upload A File
using (var sftp = new SftpClient(ConnNfo))
{
sftp.Connect();
sftp.ChangeDirectory(@"/C:/IISFTP/");
using (var uplfileStream = File.OpenRead(uploadfn))
{
sftp.UploadFile(uplfileStream, uploadfn, true);
}
sftp.Disconnect();
}
调用sftp.Connect()行时,会引发以下异常:
Message type 80 is not valid
为什么会这样?如何使用SSH.NET连接到我的SFTP服务器?
谢谢
解决方法:
消息80代表SSH_MSG_GLOBAL_REQUEST.
现代版本的OpenSSH服务器将此通用消息用于各种proprietary extensions of the SSH protocol.
大多数客户端/应该默默地忽略无法识别的消息. SSH.NET也会忽略SSH_MSG_GLOBAL_REQUEST,但在身份验证完成之前它不会期望消息.
不幸的是,OpenSSH似乎甚至在认证之前发送了其中一些(可能是hostkeys-prove-00@openssh.com).
该问题已于SSH.NET 2016.0.0-beta1修复.见Issue #8和Commit a1f46d4.
在旧版本中,转到Session.cs
并在Session.Connect()方法中将以下行稍微向上移动,在验证码上方:
RegisterMessage("SSH_MSG_GLOBAL_REQUEST");
我把它放在这条线下面:
RegisterMessage("SSH_MSG_USERAUTH_BANNER");