我要求从C#中的一个远程服务器下载大文件(20GB +)到另一个远程服务器。我们已经为其他文件操作建立了ssh连接。我们需要以二进制模式从ssh会话启动ftp下载(这是远程服务器要求以特定格式传送文件)。问题 - 如何在ssh会话中发送ftp命令以与凭证建立连接并将模式设置为“bin”?基本上相当于使用ssh:
FtpWebRequest request =(FtpWebRequest)WebRequest.Create(
@"ftp://xxx.xxx.xxx.xxx/someDirectory/someFile");
request.Credentials = new NetworkCredential("username", "password");
request.UseBinary = true;
request.Method = WebRequestMethods.Ftp.DownloadFile;
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
答案 0 :(得分:1)
SSH是一个" Secure SHell"这就像一个cmd提示符,你可以给它命令来运行。它不是FTP。 SSH可以执行FTP实用程序或应用程序。
SSH确实有一些名为SFTP(或SSH文件传输协议)的东西,但是.NET(即BCL)没有内置任何功能。 FtpWebRequest
不支持SFTP。
尽管分享" FTP"他们是不同的协议,彼此不兼容。
如果要启动FTP下载,则必须告诉SSH执行某种实用程序。如果要启动SFTP传输,可以发出sftp命令。但是,另一端需要支持sftp。或者你发出scp命令(安全副本);但同样,另一端需要支持该协议(它与SFTP和FTP不同)......
如果你想写另一端,你必须找到一个执行SFTP或SCP的第三方库...
答案 1 :(得分:0)
我最喜欢的lib来实现你所需要的是来自ChilkatSoft的Chilkat (免责声明:我只是一个与该公司没有任何关系的付费用户)。
Chilkat.SFtp sftp = new Chilkat.SFtp();
// Any string automatically begins a fully-functional 30-day trial.
bool success;
success = sftp.UnlockComponent("Anything for 30-day trial");
if (success != true) {
MessageBox.Show(sftp.LastErrorText);
return;
}
// Set some timeouts, in milliseconds:
sftp.ConnectTimeoutMs = 5000;
sftp.IdleTimeoutMs = 10000;
// Connect to the SSH server.
// The standard SSH port = 22
// The hostname may be a hostname or IP address.
int port;
string hostname;
hostname = "www.my-ssh-server.com";
port = 22;
success = sftp.Connect(hostname,port);
if (success != true) {
MessageBox.Show(sftp.LastErrorText);
return;
}
// Authenticate with the SSH server. Chilkat SFTP supports
// both password-based authenication as well as public-key
// authentication. This example uses password authenication.
success = sftp.AuthenticatePw("myLogin","myPassword");
if (success != true) {
MessageBox.Show(sftp.LastErrorText);
return;
}
// After authenticating, the SFTP subsystem must be initialized:
success = sftp.InitializeSftp();
if (success != true) {
MessageBox.Show(sftp.LastErrorText);
return;
}
// Open a file on the server:
string handle;
handle = sftp.OpenFile("hamlet.xml","readOnly","openExisting");
if (handle == null ) {
MessageBox.Show(sftp.LastErrorText);
return;
}
// Download the file:
success = sftp.DownloadFile(handle,"c:/temp/hamlet.xml");
if (success != true) {
MessageBox.Show(sftp.LastErrorText);
return;
}
// Close the file.
success = sftp.CloseHandle(handle);
if (success != true) {
MessageBox.Show(sftp.LastErrorText);
return;
}