Ubuntu SSH Server 安装与设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu SSH Server 安装与设置相关的知识,希望对你有一定的参考价值。

一、Ubuntu中SSH Server的安装与开机启动

ssh程序分有:
    1. 客户端程序openssh-client
    2. 服务端程序openssh-server
    如果需要ssh登陆到别的电脑,需要安装openssh-client,该程序ubuntu是默认安装的。而如果需要从远程连接到本机,则需要安装openssh-server,该程序需要自己安装。在Ubuntu下安装openssh-server非常简单。

安装openssh-server

  1. $ sudo apt-get install openssh-server

查看openssh-server是否启动

  1. $ ps -e | grep ssh
进程ssh-agent是客户端,sshd为服务器端,如果结果中有sshd的进程说明openssh-server已经启动,如果没有则需运行命令启动。

 启动、停止和重启openssh-server

  1. /etc/init.d/ssh start
  2. /etc/init.d/ssh stop
  3. /etc/init.d/ssh restart

配置openssh-server

openssh-server配置文件位于/etc/ssh/sshd_config,在这里可以配置SSH的服务端口等,例如:默认端口是22,可以自定义为其他端口号,如222,然后需要重启SSH服务。
 

Ubuntu中配置openssh-server开机自动启动

打开/etc/rc.local文件,在exit 0语句前加入:
  1. /etc/init.d/ssh start
关于客户端连接
客户端可以用putty、SecureCRT、SSH Secure Shell Client等SSH 客户端软件,输入您服务器的IP地址,并且输入登录的用户和密码就可以登录了。

二、ssh client 报 algorithm negotiation failed的解决方法之一

修改sshd的配置文件 /etc/ssh/sshd_config
 
在配置文件中添加:
 
Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc
 
MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96
 
KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]
 
重启sshd服务后,即可正常连接。
 
导致此问题的原因是ssh升级后,为了安全,默认不再采用原来一些加密算法,我们手工添加进去即可




以上是关于Ubuntu SSH Server 安装与设置的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 配置 ssh 登陆

ubuntu无法ssh远程连接

Ubuntu 开启ssh 连接,设置静态 ip 地址。

ubuntu下安装启动和卸载SSH

VBox 安装 Ubuntu Server 的那些坑,键盘乱码网卡SSH等

如何设置 Ubuntu 14.04 的 SSH 无密码登录