zoukankan      html  css  js  c++  java
  • 搭建SSH服务

    1、安装 ssh-server

      通过命令进行安装:sudo apt-get install openssh-server

      在安装时遇到问题,根据提示,执行命令:sudo apt-get update, 后,在安装ssh-server,成功;

    2、通过 secureCRT 的SSH2方式登录

      在使用 secureCRT的SSH2方式登录时,老是弹出输入密码的对话框,如图所示:

      

      解决方法:更改 /etc/ssh/sshd_config 中的配置,将PubkeyAuthentication 的值设置为 yes 。然后  service sshd restart 重启ssh,就ok啦

      

    3、SSH Secure Shell Client 登录

       一直出现不能登录的问题:如下图所示:

      

      解决方法:在  /etc/ssh/sshd/sshd_config  中手动添加配置,即可解决问题。

      Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour1 28,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-e xchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecd h-sha2-nistp521,diffie-hellman-group1-sha1,curve25519-sha256@libssh.org

      

  • 相关阅读:
    构建SpringBoot第一个Demo
    SpringBoot简介
    JSJ——主数据类型和引用
    CSS3--动态实现ToolTip效果(实例)
    JavaScript--DOM事件(笔记)
    CSS3--幽灵按钮特效(实例)
    CSS3--实现特殊阴影 (实例)
    深入浅出ExtJS 第七章 弹出窗口
    深入浅出ExtJS 第六章 布局
    深入浅出ExtJS 第五章 树形结构
  • 原文地址:https://www.cnblogs.com/icefree/p/8467368.html
Copyright © 2011-2022 走看看