我正在尝试使用Solaris/Unix
类连接到C#
服务器来读取系统信息/配置,内存使用情况等。
我的要求是从C#应用程序运行服务器上的命令(与我们使用PuTTY
客户端一样)并将响应存储在string
变量中后来处理。
经过一些研究,我发现 SharpSSH
库可以用来做同样的事情。
当我尝试运行我的代码时,以下行为我提供了 Auth Fail
异常。
我确信凭据(服务器名称,用户名和密码)是正确的,因为我能够使用相同的凭据从PuTTY
客户端登录。
SshStream ssh = new SshStream(servername, username, password);
我做错了什么?
如果有帮助,以下是堆栈跟踪!
at Tamir.SharpSsh.jsch.Session.connect(Int32 connectTimeout)
at Tamir.SharpSsh.jsch.Session.connect()
at Tamir.SharpSsh.SshStream..ctor(String host, String username, String password)
答案 0 :(得分:2)
经过一番研究,我找到了一个VB代码,它指出了正确的方向。似乎为KeyboardInteractiveAuthenticationMethod
添加一个额外的事件处理程序有助于解决这个问题。希望这有助于其他人。
void HandleKeyEvent(Object sender, AuthenticationPromptEventArgs e)
{
foreach (AuthenticationPrompt prompt in e.Prompts)
{
if (prompt.Request.IndexOf("Password:", StringComparison.InvariantCultureIgnoreCase) != -1)
{
prompt.Response = password;
}
}
}
private bool connectToServer()
{
try
{
KeyboardInteractiveAuthenticationMethod kauth = new KeyboardInteractiveAuthenticationMethod(username);
PasswordAuthenticationMethod pauth = new PasswordAuthenticationMethod(username, password);
kauth.AuthenticationPrompt += new EventHandler<AuthenticationPromptEventArgs>(HandleKeyEvent);
ConnectionInfo connectionInfo = new ConnectionInfo(serverName, port, username, pauth, kauth);
sshClient = new SshClient(connectionInfo);
sshClient.Connect();
return true;
}
catch (Exception ex)
{
if (null != sshClient && sshClient.IsConnected)
{
sshClient.Disconnect();
}
throw ex;
}
}