对于一些经常登录的服务器, 用ssh连接的时候需要反复输入密码, 非常麻烦并且浪费时间; 可以配置ssh使得ssh保存登录过的ssh会话, 下次再连接相同的服务器的时候, 直接访问已经存在的会话, 从而避免了重复输入密码的麻烦。
在/etc/ssh_config 文件中加入以下三行内容:
Host *
ControlMaster auto
ControlPath /tmp/%r@%h:%p.sock
ControlPersist 8h
加上ControlPersist 8h, 则第一个会话断开之后, 会话数据就会保持8小时, 8小时内就不需要再输入密码了
网友评论