Linux上安装使用SSH

Posted 个子

tags:

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

參考博客:http://blog.csdn.net/xqhrs232/article/details/50960520

Ubuntu安装使用SSH

ubuntu默认并没有安装ssh服务,如果通过ssh链接ubuntu,需要自己手动安装ssh-server。判断是否安装ssh服务,可以通过如下命令进行:

    [email protected]:~$ ssh localhost   
    ssh: connect to host localhost port 22: Connection refused  

  如上所示,表示没有还没有安装,可以通过apt安装,命令如下:

  [email protected]:~$ sudo apt-get install openssh-server

  系统将自动进行安装,安装完成以后,先启动服务:
  [email protected]:~$ sudo /etc/init.d/ssh start
  
  启动后,可以通过如下命令查看服务是否正确启动
  [email protected] 621200:00 sshd 
  621200:00 sshd
  
  如上表示启动ok。注意,ssh默认的端口是22,可以更改端口,更改后先stop,
  然后start就可以了。改配置在/etc/ssh/sshd_config下,如下所示。
    1. -desktop:~$ vi /etc/ssh/sshd_config   
    2. # Package generated configuration file   
    3. # See the sshd(8for details   
    4. # What ports, IPs and protocols we listen for 22

   最后,应该是连接的时候了。请看如下命令:

[email protected]

客戶端 安裝ssh 啓動連接後,錯誤

Server responded"Algorithm negotiation failed

修改ssh的配置文件 /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服务后,即可正常连接。

sudo service ssh restart

另外重启方式还有  sudo /etc/init.d/ssh restart

參考博客:http://www.linuxdiyf.com/linux/24314.html

 



















以上是关于Linux上安装使用SSH的主要内容,如果未能解决你的问题,请参考以下文章

Kali Linux上安装SSH服务

在LINUX系统下,如何使用SHell脚本,SSH登陆上路由器

如何在Linux上用一次性密码确保SSH登录安全

如何安装SSH服务linux系统中?

阿里云服务器使用教程:Linux上预防SSH暴力破解及恶意登录软件DenyHost的安装教程

arch Linux 安装完,无法通过 SSH 远程连接问题