Mac 终端 ssh 别名代替 ip 的方法

termina

背景 :

有时需要用终端 ssh 管理很多服务器的时候,那 ip 地址又不能全部记住。
这时就用 ssh + 别名 比较方法方便了

使用方法:

  • 编辑 ~/.ssh/config 这个文件

# 服务器1
Host 别名
    HostName IP地址
    Port 22
    User 用户名
    
# 服务器2
Host 别名
    HostName IP地址
    Port 22
    User 用户名

添加完以上内容后,就可以使用命令 ssh + 服务器别名 来连接服务器

发布者

rockts

喜欢技术,乐于开源! 乐可开源,想改变的也只有世界!

One thought on “Mac 终端 ssh 别名代替 ip 的方法”

发表评论

电子邮件地址不会被公开。

This site uses Akismet to reduce spam. Learn how your comment data is processed.