1、为什么要升级ssh的版本
优化ansible的速度的时候,有一条是开启SSH的Multiplexing,这个时候,需要SSH -V的版本升级到5.6后才能启用。
2、升级过程:
a、查看ssh的版本信息 [[email protected] ansible]# ssh -V OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013 b、设置对应的yum源 [[email protected] ansible]# cd /etc/yum.repos.d/ [[email protected] yum.repos.d]# vim openssh.repo [CentALT] name=openssh-upgrade - $basearch baseurl=http://mirrors.neu.edu.cn/CentALT/6/$basearch enabled=1 gpgcheck=0 c、清除缓存并升级ssh的版本 [[email protected] yum.repos.d]# yum clean all 已加载插件:aliases, changelog, fastestmirror, kabi, presto, refresh-packagekit, security, tmprepo, verify, versionlock Loading support for CentOS kernel ABI Cleaning repos: CentALT base epel extras updates 清理一切 Cleaning up list of fastest mirrors 0 delta-package files removed, by presto [[email protected] yum.repos.d]# yum update openssh d、升级后,版本已经变为6.6了 [[email protected] yum.repos.d]# ssh -V OpenSSH_6.6p1, OpenSSL 1.0.1e-fips 11 Feb 2013
3、然后我们就可以调整下我们的ssh长连接参数了
时间: 2024-12-17 11:01:39