【備忘録】macのターミナルからssh接続する設定
再インストールする時、意外と忘れていた。
1, .sshフォルダ作成&秘密鍵を格納
1 2 3 4 |
$ mkdir ~/.ssh $ chmod 700 ~/.ssh $ cp /コピー元/hogehoge.key ~/.ssh/hogehoge.key $ chmod 400 ~/.ssh/hogehoge.key |
2, configファイルに接続情報を記述(複数の接続先を書いてもOK)
1 2 3 4 5 6 7 8 9 10 |
$ vi ~/.ssh/config Host 接続名(任意) HostName ホスト名 User ユーザー名 IdentityFile ~/.ssh/hogehoge.key Port 22 TCPKeepAlive yes IdentitiesOnly yes $ chmod 600 ~/.ssh/config |
3, ターミナルから接続
1 |
$ ssh 接続名(任意) |
4, sshだけで接続できるようにする
1 2 3 4 5 |
$ vi ~/.bash_profile alias ssh='ssh xsrv' #設定ファイルを読み込む $source ~/.bash_profile |