首页 > 系统服务 > 详细

ubuntu ssh配置

时间:2019-04-17 22:54:25      阅读:181      评论:0      收藏:0      [点我收藏+]

Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network.[1] Typical applications include remote command-line login and remote command execution, but any network service can be secured with SSH.

为了搭建一个交叉编译的环境,windows环境下远程连接登录Ubuntu server,需要SSH访问。

首先,选一个合适的SSH工具。

推荐:MobaXterm,颜值,功能全面,开源免费;

技术分享图片

然后,配置ubuntu server端:

安装ssh服务,sudo apt-get install ssh

/etc/ssh/sshd_config文件,

Port 22   #ssh服务的端口号

ListenAddress  192.168.1.1 #ssh服务的地址

PasswordAuthentication yes #打开密码认证

配置完毕后,重启启动ssh服务:

sudo /etc/init.d/ssh restart

启动后,可以用ps -ef | grep ssh检验是否存在ssh server相关的服务。

最后,配置windows client端:

创建ssh会话,填写端口,server地址,登录信息即可。

ubuntu ssh配置

原文:https://www.cnblogs.com/doctors/p/10726716.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!