2015년 10월 29일 목요일

~/.ssh/config

# Command line
$ ssh <유저명>@HostName -p <포트 번호> -i <비밀키의 풀패스>
 
== 
 
# ~/.ssh/config
Host <별명>  
HostName <IP Address or Host name>
Port <포트 번호>
User <유저명>
IdentityFile <비밀키의 풀패스>


참고
https://dobest.io/ssh-without-password/