Wray Lee
Articles35
Tags0
Categories0

Archive

ssh多私钥管理

ssh多私钥管理

#Windows 上是 ~/.ssh/config
#Linux 上是 /etc/ssh/ssh_config
#
#
# 别名(Host):Host 和 HostName 的值可以相同
# 如 ssh aliyun,在这里等于 ssh -i C:\Users\Think\.ssh\id_rsa_aliyun [email protected]
# 用别名登录会使用别名下的配置,不用别名登录(如IP)不会使用别名下的配置
Host aliyun
    User root
    HostName 144.90.100.144
    # 私钥文件位置
    IdentityFile "~/.ssh/id_rsa_aliyun"

Host tencent
    User root
    HostName 100.28.144.47
    IdentityFile "~/.ssh/id_rsa_tencent"
Author:Wray Lee
Link:http://blog.wray7.top/2023/09/04/Network/Server/ssh/ssh%E5%A4%9A%E7%A7%81%E9%92%A5%E7%AE%A1%E7%90%86/
版权声明:本文采用 CC BY-NC-SA 3.0 CN 协议进行许可