一个 PowerShell SSH 可以不在磁盘上存储密钥吗?
Can one PowerShell SSH without storing key on disk?
如何在 Azure 中创建从 Windows10 VM 到 RHEL8 VM 的 PowerShell 会话而不将 SSH 密钥存储在磁盘上? 看起来像 New-PSSession
cmdlet 不接受 SSH 密钥作为字符串。
$pssession = New-PSSession -Name RHELSession -HostName <> -Port 22 -Subsystem powershell -UserName <> -KeyFilePath .\<>.pem -SSHTransport
Invoke-Command -Session $pssession -ScriptBlock {hostname}
可以 Get-AzSshKey or Get-AzKeyVaultSecret 并从内存中提供密钥而不将 .pem 文件存储在磁盘上吗?
(Get-AzSshKey -ResourceGroupName <> -Name <>).publicKey
如何在 Azure 中创建从 Windows10 VM 到 RHEL8 VM 的 PowerShell 会话而不将 SSH 密钥存储在磁盘上? 看起来像 New-PSSession
cmdlet 不接受 SSH 密钥作为字符串。
$pssession = New-PSSession -Name RHELSession -HostName <> -Port 22 -Subsystem powershell -UserName <> -KeyFilePath .\<>.pem -SSHTransport
Invoke-Command -Session $pssession -ScriptBlock {hostname}
可以 Get-AzSshKey or Get-AzKeyVaultSecret 并从内存中提供密钥而不将 .pem 文件存储在磁盘上吗?
(Get-AzSshKey -ResourceGroupName <> -Name <>).publicKey