SSH Key生成

1
$ ssh-keygen -t rsa -C katherineleeyq@163.com

使用不同的Key

1
2
$ cd ~/.ssh
$ vim config

然后输入如下内容:

1
2
3
4
5
6
7
8
9
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa

Host icode.baidu.com
HostName icode.baidu.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa_baidu

这样就可以在不同的需要使用SSH Key的地方免认证确认了。