Windows Server 2019・Windows10 †
- Windows Server 2019・Windows10からはOpenSSHを公式サポート
- SSHクライアントは有効化済み
- SSHサーバは自分で有効化する必要あり
- サービスの初期設定は手動、停止状態なので、必要に応じて起動、自動化する
Windows Server 2016 †
インストール †
インストール †
ファイアウォールの設定 †
起動 †
net start sshd
- 初回起動時に、以下に鍵ファイルが生成される
C:\ProgramData\ssh
インストール実行例 †
PS C:\opt\openssh> powershell.exe -ExecutionPolicy Bypass -File install-sshd.ps1
[*] C:\opt\openssh\moduli
Inheritance is removed from 'C:\opt\openssh\moduli'.
'NT AUTHORITY\Authenticated Users' now has Read access to 'C:\opt\openssh\moduli'.
'BUILTIN\Users' now has Read access to 'C:\opt\openssh\moduli'.
Repaired permissions
[SC] SetServiceObjectSecurity SUCCESS
[SC] ChangeServiceConfig2 SUCCESS
[SC] ChangeServiceConfig2 SUCCESS
sshd and ssh-agent services successfully installed
PS C:\opt\openssh> New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
Name : sshd
DisplayName : OpenSSH Server (sshd)
Description :
DisplayGroup :
Group :
Enabled : True
Profile : Any
Platform : {}
Direction : Inbound
Action : Allow
EdgeTraversalPolicy : Block
LooseSourceMapping : False
LocalOnlyMapping : False
Owner :
PrimaryStatus : OK
Status : 規則は、ストアから正常に解析されました。 (65536)
EnforcementStatus : NotApplicable
PolicyStoreSource : PersistentStore
PolicyStoreSourceType : Local
PS C:\opt\openssh> net start sshd
OpenSSH SSH Server サービスを開始します..
OpenSSH SSH Server サービスは正常に開始されました。
設定 †
サービス設定 †
- サービスの画面を起動
- サービス一覧の中に「OpenSSH SSH Server」があるので、これを右クリックし、プロパティを選択
- プロパティ画面の中のスタートアップの種類を「手動」から「自動」へ変更
sshd_config の編集 †
- sshd_config_default をコピーして sshd_config ファイルを作成
- 必要に応じて、以下項目を編集
アクセス権限の変更 †
- 再度、管理者権限 の PowerShell 上で OpenSSH インストールフォルダに移動
- [.\FixHostFilePermission?.ps1] を実行
トラブルシューティング †
システム エラー 1067 が発生しました。 †
アンインストール †