安装依赖
sh
apt update
apt install build-essential zlib1g-dev libssl-dev -y
apt install libpam0g-dev libselinux1-dev libkrb5-dev -y
apt install autoconf -y
mkdir /var/lib/sshd
chmod -R 700 /var/lib/sshd/
chown -R root:sys /var/lib/sshd/
下载最新ssh
sh
cd /var/lib/sshd/
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz
编辑安装
sh
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-openssl-includes=/usr/local/include/openssl --with-ssl-dir=/usr/local/lib --with-zlib --with-md5-passwords --with-pam --with-privsep-path=/var/lib/sshd
sh
make && make install
修改配置
如果这里没有允许密码登录,又没有配置免密,那就gg了
根据自己需要调整sshd配置文件,参考如下
sh
vim /etc/ssh/sshd_config
sh
PermitRootLogin yes #允许root登录,root用户必须添加
AuthorizedKeysFile .ssh/authorized_keys #指定公钥文件的保存位置以及名称
PasswordAuthentication yes #允许密码验证
UsePAM yes #PAM模块
UseDNS no #关闭dns检测
重启ssh
sh
systemctl restart ssh
检查版本
sh
ssh -V