📑
Windows10 でのPowershell でSSH
前提条件
秘密キーの作成とPowershell の環境構築は終わっている前提
configの設定
エイリアスで接続できるようにconfigを設定
ファイルは C:\Users\XXXXX.ssh に作成
フォーマット
Host hoge # エイリアス名
HostName XXX # IP Adress or host name
port 22 # port 番号
User XXX # user 名
Protocol 2
IdentityFile C:\Users\XXX\id_rsa # 秘密キーのPath
Host huga # エイリアス名
HostName XXX # IP Adress or host name
port 22 # port 番号
User XXX # user 名
Protocol 2
IdentityFile C:\Users\XXX\id_rsa # 秘密キーのPath
※C:\Users\XXXXX(自分のユーザー)\ 階層でないと ** bad permissions** になります。
接続テスト
ssh hoge
ssh huga
接続できればOK
Discussion