美文网首页
ssh 会话保存,避免重复输入密码

ssh 会话保存,避免重复输入密码

作者: mingzhi618 | 来源:发表于2017-10-26 14:45 被阅读0次

对于一些经常登录的服务器, 用ssh连接的时候需要反复输入密码, 非常麻烦并且浪费时间; 可以配置ssh使得ssh保存登录过的ssh会话, 下次再连接相同的服务器的时候, 直接访问已经存在的会话, 从而避免了重复输入密码的麻烦。

在/etc/ssh_config 文件中加入以下三行内容:


Host *

ControlMaster auto

ControlPath /tmp/%r@%h:%p.sock

ControlPersist 8h


加上ControlPersist 8h, 则第一个会话断开之后, 会话数据就会保持8小时, 8小时内就不需要再输入密码了

相关文章

网友评论

      本文标题:ssh 会话保存,避免重复输入密码

      本文链接:https://www.haomeiwen.com/subject/nukkpxtx.html