Ubuntu20安装ssh服务

Ubuntu20上执行如下命令查看是否存在ssh服务

复制代码
#ps -e | grep ssh

只有ssh-agent ,没有sshd; 因此要安装openssh-server.

搜索openssh-server,得到下载链接:

openssh-server

复制这个Binary Package链接即可下载,然后使用如下命令安装

复制代码
sudo dpkg -i  binary_file 

这个时候会提示版本不对,依赖也有缺陷

那么就去选择正确的版本,依然在刚才那个页面,两个文件都下载好后,继续安装,就成功了

sftp

这个时候再去查看服务,发现:

打开ssh终端来连接这个服务器

这个时候,你可能会遇到Key exchange failed的问题;原因是服务器端sshd支持的密钥交换策略与你使用的终端,比如secureCRT支持的终端不一致,尤其是老版本的secureCRT,比如6.5,就不支持新的策略:

复制代码
Key exchange failed. No compatible key exchange method. 
The server supports these methods: 
curve25519-sha256,
curve25519-sha256@libssh.org,
ecdh-sha2-nistp256,ecdh-sha2-nistp384,
ecdh-sha2-nistp521,
diffie-hellman-group-exchange-sha256,
diffie-hellman-group16-sha512,
diffie-hellman-group18-sha512,
diffie-hellman-group14-sha256 

这个时候,要么更换更高版本的securecrt,要么新增支持的策略。

可以修改/etc/ssh/sshd_config, 记住是 sshd_config 不是 ssh_config。

SecureCRT SSH连接报错Key exchange failed 问题处理记录_feverlook-腾讯云开发者社区

复制代码
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1

添加如上这行,就可以了;

此外,putty会支持各种策略,即使secureCRT连不上,putty可以连上

相关推荐
YC运维7 分钟前
OSPF实验以及核心原理全解
运维·网络·网络协议·智能路由器
许白掰2 小时前
Linux入门篇学习——Linux 工具之 make 工具和 makefile 文件
linux·运维·服务器·前端·学习·编辑器
AmosTian9 小时前
【系统与工具】Linux——Linux简介、安装、简单使用
linux·运维·服务器
YC运维10 小时前
RIP实验以及核心原理
运维·网络·智能路由器
leo__52011 小时前
自动化运维:使用Ansible简化日常任务
运维·自动化·ansible
霖0011 小时前
C++学习笔记三
运维·开发语言·c++·笔记·学习·fpga开发
CodeWithMe11 小时前
【Note】《Kafka: The Definitive Guide》 第九章:Kafka 管理与运维实战
运维·分布式·kafka
bug攻城狮12 小时前
Alloy VS Promtail:基于 Loki 的日志采集架构对比与选型指南
运维·架构·grafana·数据可视化
CodeWithMe13 小时前
【Note】《深入理解Linux内核》 第十九章:深入理解 Linux 进程通信机制
linux·运维·php