zoukankan      html  css  js  c++  java
  • H3C开启Ssh

    [H3C]ssh server enable                       //开启SSH服务

    [H3C]user-interface vty 0 4

    [H3C-ui-vty0-4]authentication-mode password //认证模式选择为password,ssh不支持

    [H3C-ui-vty0-4]protocol inbound ssh        //配置进站协议,最后想想介绍此命令

    % Set user interface protocol failed, please modify the authentication mode

    [H3C-ui-vty0-4]authentication-mode scheme  //SSH只支持scheme认证模式

    [H3C-ui-vty0-4]protocol inbound ssh

    [H3C-ui-vty0-4]quit

    [H3C]local-user wnt                    //创建本地用户

    [H3C-luser-wnt]password cipher 123

    [H3C-luser-wnt]service-type ssh       //服务类型为ssh

    [H3C-luser-wnt]level 1

    [H3C]super password level 3 cipher 321 //切换命令,并设置密码

    [H3C]public-key local create rsa       //生成RSA密钥

    The range of public key size is (512 ~ 2048).     

    NOTES: If the key modulus is greater than 512,     

    It will take a few minutes.    

    Press CTRL+C to abort.

    Input the bits of the modulus[default = 1024]:

    Generating Keys...

    ..++++++++.+++++++++.+

    ..++..++..++...++..++...++...++....++..++...++......++.....++...+++++.+++++++++.++++

    详细说明protocol inbound 命令

    protocol inbound 命令用来指定所在的用户界面所支持的协议。

    缺省情况下,系统支持所有的协议,即all--支持 Telnet 和SSH。

    有时候创建一次SSH后,是很难彻底删除SSH配置的,原因就在于协议的进站模式

    [H3C-ui-vty0-4]protocol inbound ?

      all     All protocols            //支持所有的协议,包括Telnet 和SSH。

      pad     PAD protocol            

      ssh     SSH protocol             //支持SSH 协议。

      telnet  Telnet protocol          //支持Telnet 协议。

                                                要彻底删除ssh进站协议要是all

  • 相关阅读:
    iOS7中都Bar的透明问题
    iOS 如何使用自定义字体
    iOS xib中TableView创建的2种模式
    iOS 保存CGRect,CGPoint到NSArray'的方法
    iOS 中通过使用Google API获得Google服务
    转载一篇ios7的新API文章
    移动开发常用的第三方控件下载网页
    iOS 查看系统字体效果的网页
    iOS 基于UIWebView的应用特点
    Cocos2d 中的Sprite大小调整问题
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11151954.html
Copyright © 2011-2022 走看看