OpenSSH : Configure SSH Client2024/11/27 |
Configure SSH Client to connect to SSH Server. |
|
[1] | On Windows Server, OpenSSH Client is installed by default, but if it has not been installed, Run PowerShell with Admin Privilege and Install it like follows. |
PowerShell Copyright (C) Microsoft Corporation. All rights reserved. # get available name of OpenSSH PS C:\Users\Administrator> Get-WindowsCapability -Online | ? Name -like 'OpenSSH*' Name : OpenSSH.Client~~~~0.0.1.0 State : Installed Name : OpenSSH.Server~~~~0.0.1.0 State : Installed # install OpenSSH Client PS C:\Users\Administrator> Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 |
[2] |
It's possible to use [ssh] client command like follows on PowerShell or Command prompt.
PS > ssh (username)@(SSH Server's Hostname or IP address)
|
[3] | It's also possible to use [scp] command, [sftp] command for SSH file transfer. Usage is the same with OpenSSH Client on Linux, refer to here. |
Sponsored Link |
|