~/.ssh/config
1 2 3 4 5 6 7 |
ServerAlive Internal 60 # 再接続間隔 60秒 ServerAliveCountMax 120 # 再接続回数 120回 (例, 60秒×120回=2時間) Host myConnectionAlias # ssh接続 別名 HostName 192.168.0.123 # ホスト名(IPアドレス) User myAccountName # アカウント名 IdentityFile ~/.ssh/my_private_rsa |
接続方法例
1 |
$ ssh myAccountName@192.168.0.123 -i ~/.ssh/my_private_rsa |
⇓
1 |
$ ssh myConnectionAlias |