3
2

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 3 years have passed since last update.

Windows 10 で OpenSSH server 起動し公開鍵認証ログインするメモ

Last updated at Posted at 2020-06-19

背景

  • Linux から, Windows 10 に ssh ログインしたい.
  • 自身のアカウントは管理者権限とします.

方法

OpenSSH が最近では標準で入ってました(cygwin とかで ssh サーバ入れなくてもよくなった)

Windows 10にオンデマンド機能のOpenSSHサーバをインストールする方法
https://www.atmarkit.co.jp/ait/articles/1903/28/news005.html

authorized_keys

デフォルトでは, authorized_keys は, 管理者権限アカウントでは以下のファイルを見にいきます.

C:\ProgramData\ssh\administrators_authorized_keys

ここに公開鍵追加します.

また, 以下を参考にして, powershell で permission 設定する必要があります.

$acl = Get-Acl C:\ProgramData\ssh\administrators_authorized_keys
$acl.SetAccessRuleProtection($true, $false)
$administratorsRule = New-Object system.security.accesscontrol.filesystemaccessrule("Administrators","FullControl","Allow")
$systemRule = New-Object system.security.accesscontrol.filesystemaccessrule("SYSTEM","FullControl","Allow")
$acl.SetAccessRule($administratorsRule)
$acl.SetAccessRule($systemRule)
$acl | Set-Acl

Bash にする

Windows10でSSHサーバーを立ててデフォルトシェルをBashにする
https://qiita.com/kenji0x02/items/3f4e7262e6de0d8c8702

ありがとうございます.

必要に応じて, cmd.exe or powershell.exe にすれば, command prompt, power shell に移ることできます.

問題点

画面を RDP で出していて, 画面に explorer 出そうとして start .(カレントディレクリを explorer で開く)とやるとターミナルがハングしますので注意です.
(ctrl + c か ctrl + z しても終わらない. しばらく待つと復帰する模様)

explorer.exe 単体はうまく行きました(ただし引数にパス指定するとなにも起こらない)

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?