欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mac 使用终端登录linux服务器

程序员文章站 2022-03-08 21:27:28
...

配置支持本地key转发

 

1、vi .bash_profile

## add bellow line at the end, replace string "full_path_to_your_home" with your real path.

ssh-add /Users/yzl/.ssh/id_rsa

 

2、vi .ssh/config

Host *

    ForwardAgent yes

 

3、source bash_profile