ubuntu安装openssh-server
新装的ubuntu系统默认只安装了openssh-client,如果想通过远程连接工具连接,则必须安装openssh-server
1,配置可用的apt源,可通过scp拷贝至本地进行替换
cd /etc/apt/ scp root@1.1.1.1:/etc/apt/sources.list .
2,先安装aptitude,该命令可自动解决依赖
apt-get install aptitude
3,然后使用aptitude命令进行安装
aptitude install openssh-server
注意:安装时第一个选择 n,后面的全部选择 y
4,安装完openssh-server后需要修改 /etc/ssh/sshd_config配置
# 主要关注以下几个参数,注意,使用的参数一定要去掉#号注释 root@test:/etc/apt# vim /etc/ssh/sshd_config PermitRootLogin yes PasswordAuthentication yes GSSAPIAuthentication no UsePAM yes UseDNS no #其他参数默认不更改即可
5,修改完参数后,重启sshd服务
systemctl restart sshd
6,查看22端口是否有sshd服务
ss -antp | grep 22
7,关闭防火墙
sudo ufw disable
8,通过远程工具连接即可