zoukankan      html  css  js  c++  java
  • Ubuntu 16.04下安装ssh及远程无法连接的解决方法

    #安装ssh:

    apt-get install openssh-server

    /etc/init.d/ssh start

    #ssh客户端不能连接

    因为新版的ssh抛弃了以前的加密算法,所以ssh客户端不能连接,请求会被拒绝,我们可以指定原来的加密算法即可。

    打开配置文件,在最后添加如下内容:

    sudo vi /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,umac-64@openssh.com,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,curve25519-sha256@libssh.org

    # root用户远程登录:

    修改配置文件:PermitRootLogin without-password--------->PermitRootLogin yes   

    #重启服务

    sudo /etc/init.d/ssh restart

    done

  • 相关阅读:
    Windows异常处理机制介绍
    OD 与 Win7
    对VC6编译优化的简单测试
    QQ版本号(2012/07/22 更新)
    OD与调试符号
    Balsamiq Mockups
    hotpatch热修补
    QQ
    VC的编译开关参数大全
    隐藏秘技:vc输出类的layout信息
  • 原文地址:https://www.cnblogs.com/chenpengzi/p/9366020.html
Copyright © 2011-2022 走看看