快捷登录阿里云效果
1. 机器
本地机器:macOS
远程机器:120.25.83.123
2. 配置
- 本地配置
1
2
3
4
5
# 创建密匙
ssh-keygen -t rsa
# 拷贝密匙到远程机器
scp ~/.ssh/id_rsa.pub root@120.25.83.123:~/.ssh/id_rsa.pub.mac
- 远程配置
1
2
cd ~/.ssh
cat id_rsa.pub.mac >> authorized_keys
- 本地快捷登录设置
我本地使用的默认 shell 是 zsh
1
2
3
4
# 添加 alias 别名快捷命令
echo "alias sgx='ssh root@120.25.83.123'" >> ~/.zshrc
# 配置生效
source ~/.zshrc