摘要: #ssh配置跳板机堡垒机带密钥 `~/.ssh/config` 添加以下配置: ``` # 跳板机地址 Host jumper HostName jumper.com User jumper port 23333 ForwardAgent yes IdentityFile ~/.ssh/jumper_id_rsa ``` # 不行的再看 从网上其他文章来看, 这么配置了就应该生效的... 阅读全文
posted @ 2019-11-12 19:31 孙行者、 阅读(1780) 评论(0) 推荐(0) 编辑
摘要: # 原理 密码的方式的即时认证的方式 。而公私钥 是在服务器保存一份已经通过认证的加密串,登录时通过这个加密串去认证。 公钥是可以传播的,私钥只能在自己的本地 公私钥的工作原理, 可以参考这篇文章: [SSH公钥登录(私钥认证)原理](https://blog.csdn.net/csm201314/article/details/78453579) # 生成 公私钥 有机器A,B。现想A... 阅读全文
posted @ 2019-11-12 19:29 孙行者、 阅读(5469) 评论(0) 推荐(0) 编辑