如何通过 powershell (posh SSH) ssh 进入 Linux VM

如何通过 powershell (posh SSH) ssh 进入 Linux VM

通过 ssh 进入 Linux VM 的经典方式是使用 putty 并上传您的私钥 (.ppk)。

但是,我想要做的是使用 Powershell 和 Posh SSH 创建与 Linux VM 的连接

我不知道如何引用私钥来创建连接。我在 Oracle Cloud (OCI) 中运行了一个 Linux VM,我正在使用以下命令:

New-SSHSession ip_address -computer hostname -keyfile path_to_private_key

笔记:我已通过 puttygen 将我的 .ppk 私钥转换为 openSSH 格式

有任何想法吗?

相关内容