查看openSSH版本 ssh 和 sshd 都可以查看openSSH的版本
1 | [root@localhost ~] sshd -V |
查看位置
1 | [root@localhost ~] which ssh |
备份原文件
1 | [root@localhost ~] cp /usr/bin/ssh /usr/bin/ssh.bak |
查找版本号文本
1 | [root@localhost ~] strings /usr/bin/ssh | grep OpenSSH_9.6 |
修改版本号
1 | [root@localhost ~] sed -i 's/OpenSSH_9.6/OpenSSH_9.8/g' /usr/sbin/sshd |
重新查看openSSH版本
1 | [root@localhost ~] sshd -V |