0

使用 SharpSSh 和 SshExec 类时,我无法让 RunCommand 工作,它总是返回一个空字符串。当我调试 SharpSsh 库时,它在尝试从流中读取命令时返回 -1。当我在同一个库中使用 sftp 类时它可以工作,但该类不支持我需要的所有 ftp 命令。

这是一个标准示例,我也无法得到正确的结果

SshConnectionInfo input = Util.GetInput();
SshExec exec = new SshExec(input.Host, input.User);
if(input.Pass != null) exec.Password = input.Pass;
if(input.IdentityFile != null) exec.AddIdentityFile( input.IdentityFile );

Console.Write("Connecting...");
exec.Connect();
Console.WriteLine("OK");
while(true)
{
    Console.Write("Enter a command to execute ['Enter' to cancel]: ");
    string command = Console.ReadLine();
    if(command=="")break;
    string output = exec.RunCommand(command);                
    Console.WriteLine(output);
}
Console.Write("Disconnecting...");
exec.Close();
Console.WriteLine("OK");

关于如何让 RunCommand 函数运行一些命令的任何想法?谢谢你的帮助 :)

4

1 回答 1

1

要从 .RunCommand 获取标准输出和错误流,我将重复我发布到的答案:SharpSSH - SSHExec,运行命令,然后等待 5 秒以获取数据!

您可能想尝试以下重载:

SshExec exec = new SshExec("192.168.0.1", "admin", "haha");
exec.Connect();
string stdOut = null;
string stdError = null;
exec.RunCommand("interface wireless scan wlan1 duration=5", ref stdOut, ref stdError);

Console.WriteLine(stdOut);
exec.Close();

如果他们的 API 实现了顾名思义,它应该将命令的标准输出放在 stdOut 中,将标准错误放在 stdError 中。

有关标准流的更多信息,请查看:http ://en.wikipedia.org/wiki/Standard_streams

于 2010-10-25T06:07:00.783 回答