随手记-openssh升级

Posted on 23 days ago  65 Views


看版本

ssh -V

如果是8.5到9.7区间的需要升级SSH版本

所有发行版均可用此方法编译更新OpenSSH

apt update -y
apt install build-essential zlib1g-dev libssl-dev -y
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz
tar -xzf openssh-9.8p1.tar.gz
cd openssh-9.8p1
./configure
make
make install


重启ssh

systemctl restart sshd
service sshd restart

再看版本

ssh -V

如果版本号未改变直接重启

reboot