Ubuntu下通过ssh别名快速连接远程服务器以及传输文件 March 1, 2018 [TOC] ### 本机公钥写入服务器 生成密钥对之后把公钥写入服务器`cat id_dsa.pub >> ~/.ssh/authorized_keys ` ### 修改本机ssh配置 `/etc/ssh/ssh_config` 添加 ``` Host qcloud HostName 123.x.x.x Port 22 User ubuntu # IdentityFile ~/.ssh/id_rsa.pub IdentitiesOnly yes ``` ### 连接ssh `ssh qcloud` ### 使用scp `scp /path/file qcloud:path/file`
我用WinSCP刷程序。