0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windows10でSSHサーバーを利用する方法

Last updated at Posted at 2023-06-25

概要

普段はLinuxしか使わないおじさんがWindows10にSSHサーバーをインストールする必要があり困った話。

やりたいこと:

・Windows10へSSHのインストール
・外部からWindows10に接続する

解決方法

PowerShellを管理者権限で開きましょ。

OpenSSHがインストールされているか確認する

Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'

インストールされていない場合には以下のような出力があります。
その場合、両方ともインストールしてやってください。

Name  : OpenSSH.Client~~~~0.0.1.0
State : NotPresent

Name  : OpenSSH.Server~~~~0.0.1.0
State : NotPresent

クライアントをインストールする場合以下のコマンドを入力してください。

Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0

サーバーをインストールする場合以下のコマンドを入力してください。

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

こちらの画面でもまたインストール可能です。

image.png

SSHサーバーを起動させる

以下のコマンドでSSHサーバーを起動させて、自動起動を有効化します。

Start-Service sshd
Set-Service -Name sshd -StartupType 'Automatic'

以下のコマンドでファイアウォールの設定をします。

# Confirm the Firewall rule is configured. It should be created automatically by setup. Run the following to verify
if (!(Get-NetFirewallRule -Name "OpenSSH-Server-In-TCP" -ErrorAction SilentlyContinue | Select-Object Name, Enabled)) {
    Write-Output "Firewall Rule 'OpenSSH-Server-In-TCP' does not exist, creating it..."
    New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
} else {
    Write-Output "Firewall rule 'OpenSSH-Server-In-TCP' has been created and exists."
}

接続テスト

ssh username@servername

(何かがうまくいかない場合は管理者権限で実行することをお勧めします。)

まとめ

Windows10にSSHサーバーをインストールして、接続するなんてことをしました。
ありがたいマイクロソフトドキュメント。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?