如何从 powershell 进行 ssh?

如何从 powershell 进行 ssh?

如何从 powershell 进行 ssh?基本上是从我的主机操作系统 windows7 到我的客户操作系统 linux。

答案1

安装 SSH 客户端并启动它?

答案2

名为 PLINK 的 putty 实用程序 用法:

$out = .\plink.exe -ssh $($hostIP) -l $($attribute_user) -pw $($attribute_password) -batch super cat /etc/opt/somefile_or_any_other_command

您必须在首次连接之前存储远程服务器的 SSL 证书。这可以通过以下方式完成:

echo Y | .\plink.exe -ssh $($hostIP) -l $($attribute_user) -pw $($attribute_password) exit

相关内容