在 PowerShell 中向 SSH 会话发送命令并在 TextBox 中接收输出
Send commands to SSH session in PowerShell and receive output in TextBox
我需要向多个设备发送命令列表。对于每个 IP,使用 User 和 Password 文本框中的给定凭据打开 SSH 连接,运行 所有命令和 return 输出到 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 和命令框的行分解为字符串数组并创建循环。然后我尝试了 Start-Job
和 SystemDiagnostics.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
}
returns:
~~~~~ 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
现在我需要完成两件事:
从相应的输入字段中获取凭据(目前,我需要为每个 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
让它等待命令完成,然后再发送下一个命令。 (目前只等待1秒)
不过,至少我很高兴远程主机现在可以与我交谈。
谢谢你。
如果我需要有关脚本的进一步帮助或继续记录进度,我应该在这里打开新问题吗?
您显然连接到一些 "device",而不是完整的服务器。嵌入式 SSH 实现通常不实现 SSH "exec" 通道。您必须使用 "shell" 通道(否则不建议用于命令自动化)。
使用 Plink,您可以通过将 "command" 写入 Plink 输入来实现,而不是使用 -m
开关。
另见 。
尽管您不应该 运行 外部应用程序来实施 SSH。使用本机 .NET SSH 实现,例如 SSH.NET。在 "shell" 频道中使用 SSH.NET 执行命令的伪代码:
var client = new SshClient(...);
client.Connect();
var shell = client.CreateShellStream(...);
shell.WriteLine("command");
var output = shell.Read();
"shell" 通道是一个带有输入和输出的黑盒子。没有可靠的方法可以使用它来执行命令、读取其输出和执行其他命令。您没有 API 来判断命令执行何时结束。这就是为什么我在上面写道不建议将 "shell" 通道用于命令自动化。您所能做的就是解析 shell 输出并查找设备的命令提示符:System_20>
.
我需要向多个设备发送命令列表。对于每个 IP,使用 User 和 Password 文本框中的给定凭据打开 SSH 连接,运行 所有命令和 return 输出到 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 和命令框的行分解为字符串数组并创建循环。然后我尝试了 Start-Job
和 SystemDiagnostics.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
}
returns:
~~~~~ 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
现在我需要完成两件事:
从相应的输入字段中获取凭据(目前,我需要为每个 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
让它等待命令完成,然后再发送下一个命令。 (目前只等待1秒)
不过,至少我很高兴远程主机现在可以与我交谈。 谢谢你。
如果我需要有关脚本的进一步帮助或继续记录进度,我应该在这里打开新问题吗?
您显然连接到一些 "device",而不是完整的服务器。嵌入式 SSH 实现通常不实现 SSH "exec" 通道。您必须使用 "shell" 通道(否则不建议用于命令自动化)。
使用 Plink,您可以通过将 "command" 写入 Plink 输入来实现,而不是使用 -m
开关。
另见
尽管您不应该 运行 外部应用程序来实施 SSH。使用本机 .NET SSH 实现,例如 SSH.NET。在 "shell" 频道中使用 SSH.NET 执行命令的伪代码:
var client = new SshClient(...);
client.Connect();
var shell = client.CreateShellStream(...);
shell.WriteLine("command");
var output = shell.Read();
"shell" 通道是一个带有输入和输出的黑盒子。没有可靠的方法可以使用它来执行命令、读取其输出和执行其他命令。您没有 API 来判断命令执行何时结束。这就是为什么我在上面写道不建议将 "shell" 通道用于命令自动化。您所能做的就是解析 shell 输出并查找设备的命令提示符:System_20>
.