gpt4 book ai didi

winforms - 在 PowerShell 中向 SSH session 发送命令并在 TextBox 中接收输出

转载 作者:行者123 更新时间:2023-12-01 21:15:57 26 4
gpt4 key购买 nike

我需要向多个设备发送命令列表。对于每个 IP,使用用户密码文本框中给定的凭据打开 SSH 连接,运行所有命令并将输出返回到输出 em> 文本框。

Screenshot of Window containing textboxes for credetials, IPs, commands and output

通常我会使用

plink.exe -ssh admin@172.16.17.18 -pw PassW0rd "command"

不幸的是,远程主机不允许我这样做:

Sent password
Access granted
Opening session as main channel
Opened main channel
Server refused to start a shell/command
FATAL ERROR: Server refused to start a shell/command

但是,如果我在不移交命令的情况下进行连接:

Sent password
Access granted
Opening session as main channel
Opened main channel
Allocated pty (ospeed 38400bps, ispeed 38400bps)
Started a shell/command


Welcome to XXX
System_Name>#

现在,我可以输入命令并执行它们。我尝试了 PoshSSH,它可以让我连接,但任何命令都会超时。

我将 IP 框和命令框的行分解为字符串数组并进行 for 循环。然后我尝试了 Start-JobSystemDiagnostics.Process* 的几种方法,但没有成功。现在我有点无能为力,希望得到任何帮助:

for ($a=0; $a -lt $IPArray.Length; $a++){
# Open an interactive Session with plink like
# plink.exe -ssh ' + $User + '@' + $IPArray[$a] + ' -pw ' + $Passwd
for ($b=0; $b -lt $CommandArray.Length; $b++){
# Send $CommandArray[$b] to plink-Session
# Wait for command to finish
# Read output and send it to the textbox
}
}
<小时/>

编辑:感谢 Martin Prikryl 的回答,我又向前迈进了一步:

for ($a=0; $a -lt $IPArray.Length; $a++){
$User = $UserTextBox.text
$IP = $IPArray[$a]
# $Passwd = $PwdTextBox.Text
$Outputtext= $Outputtext + "~~~~~ " + $IP + " ~~~~~" + "`r`n"
$isSession = New-SSHSession -ComputerName $IP -Credential $User
$isStream = $isSession.Session.CreateShellStream("PS-SSH", 0, 0, 0, 0, 1000)
for ($b=0; $b -lt $CommandArray.Length; $b++){
$Command = $CommandArray[$b]
$isStream.WriteLine("$Command")
Start-Sleep -Seconds 1
}
$isReturn = $isStream.Read()
$Outputtext= $Outputtext + $isReturn + "`r`n"
$outputBox.Text = $Outputtext
}

返回:

~~~~~ 172.16.17.18 ~~~~~

Welcome to XXX
System_18>#echo 1
1
System_18>#echo 2
2
System_18>#ping 8.8.8.8
PING 8.8.8.8 56 data bytes

~~~~~ 172.16.17.19 ~~~~~


Welcome to XXX
System_19>#echo 1
1
System_19>#echo 2
2
System_19>#ping 8.8.8.8
PING 8.8.8.8 56 data bytes

~~~~~ 172.16.17.20 ~~~~~

Welcome to XXX
System_20>#echo 1
1
System_20>#echo 2
2
System_20>#ping 8.8.8.8
PING 8.8.8.8 56 data bytes

现在我需要实现两件事:

  1. 从相应的输入字段获取凭据(目前,我需要为每个 IP 输入一次密码)

    完成:

    $User = $UserTextBox.text
    $Passwd = ConvertTo-SecureString $PwdTextBox.Text -AsPlainText -Force
    $SSHCred = New-Object System.Management.Automation.PSCredential -ArgumentList ($User, $Passwd)
    # ...
    $isSession = New-SSHSession -ComputerName $IP -Credential $SSHCred
  2. 让它等待命令完成,然后再发送下一个命令。 (目前只等待1秒)

但是,我很高兴至少远程主机现在可以与我交谈。谢谢。

如果我需要有关脚本的进一步帮助或继续在此处记录进度,我应该提出新问题吗?

最佳答案

您显然正在连接到某个“设备”,而不是完整的服务器。嵌入式 SSH 实现通常不实现 SSH“exec” channel 。您必须使用“shell” channel (否则不建议用于命令自动化)。

使用 Plink,您可以通过将“命令”写入 Plink 输入来实现这一点,而不是使用 -m 开关。

另请参阅Executing command using Plink does not work, but does in PuTTY .

<小时/>

尽管您不应该运行外部应用程序来实现 SSH。使用 native .NET SSH 实现,例如 SSH.NET 。在“shell” channel 中使用 SSH.NET 执行命令的伪代码:

var client = new SshClient(...);
client.Connect();
var shell = client.CreateShellStream(...);
shell.WriteLine("command");
var output = shell.Read();

“shell” channel 是一个带有输入和输出的黑匣子。没有可靠的方法可以使用它来执行命令、读取其输出以及执行其他命令。您没有 API 可以判断命令执行何时结束。这就是为什么我在上面写到不建议使用“shell” channel 进行命令自动化。您所能做的就是解析 shell 输出并查找设备的命令提示符:System_20>

关于winforms - 在 PowerShell 中向 SSH session 发送命令并在 TextBox 中接收输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58487793/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com