SSHでログインする際にssh xxx@xxx.xxx.xxx.xxx と入力するのは面倒なので、ssh example.com に変更する。
.ssh/config 作成
Host example.com
HostName xxx.xxx.xxx.xxx ex) 192.168.56.100
User xxx ex) n2xnot
Port 2222
IdentityFile ~/.ssh/id_rsa
ServerAliveInterval 30 接続切れを防ぐため30秒に1回サーバーに通信する