背景 :
有时需要用终端 ssh 管理很多服务器的时候,那 ip 地址又不能全部记住。
这时就用 ssh + 别名 比较方法方便了
使用方法:
- 编辑 ~/.ssh/config 这个文件
# 服务器1
Host 别名
HostName IP地址
Port 22
User 用户名
# 服务器2
Host 别名
HostName IP地址
Port 22
User 用户名
添加完以上内容后,就可以使用命令 ssh + 服务器别名 来连接服务器
One thought on “Mac 终端 ssh 别名代替 ip 的方法”