1、华为设备配置主机名
<Huawei>system    
<Huawei>system-view
Enter system view, return user view with Ctrl+Z.
[Huawei]sys    
[Huawei]sysname
[Huawei]sysname route111
[route111]sys    
[route111]sysname r2
[r2]

2、华为设备管理方式有两种
本地管理和远程管理
本地管理使用console线路
远程管理使用vty线路
那么如何配置console线路密码?
password认证

  1. <Huawei>sys
  2. <Huawei>system-view
  3. Enter system view, return user view with Ctrl+Z.
  4. [Huawei]sysn
  5. [Huawei]sysname R2
  6. [R2]us
  7. [R2]user-bind
  8. [R2]user-group
  9. [R2]user-interface co
  10. [R2]user-interface console
  11. [R2]user-interface console ?
  12. INTEGER<-> The first user terminal interface to be configured
  13. [R2]user-interface console
  14. [R2-ui-console0]auth
  15. [R2-ui-console0]authentication-mode ?
  16. aaa AAA authentication
  17. password Authentication through the password of a user terminal interface
  18. [R2-ui-console0]authentication-mode aaa
  19. [R2-ui-console0]authentication-mode aaa ?
  20. <cr> Please press ENTER to execute command
  21. [R2-ui-console0]authentication-mode aaa
  22. [R2-ui-console0]authentication-mode pa
  23. [R2-ui-console0]authentication-mode password ?
  24. <cr> Please press ENTER to execute command
  25. [R2-ui-console0]authentication-mode password
  26. Please configure the login password (maximum length ):july0229
  27. [R2-ui-console0]quit
  28. [R2-ui-console0]quit
  29. [R2]quit
  30. [R2]quit
  31. <R2>quit
  32. <R2>quit
  33.  
  34. Configuration console exit, please press any key to log on
  35.  
  36. Login authentication
  37.  
  38. Password:
  39. <R2>

HCNA配置console线路密码password认证的更多相关文章

  1. HCNA配置console线路密码aaa认证

    Please check whether system data has been changed, and save data in time Configuration console time ...

  2. H3C配置console口密码

    方法一: [H3C]user-interface console 0 [H3C-ui-console0]authentication-mode password [H3C-ui-console0]se ...

  3. HUAWEI网络设备恢复Console口密码

    密码遗忘 本章介绍了Console口丢失的处理方法,建议用户妥善保管密码,并定期修改. 恢复Console口密码 设备提供如下方法恢复Console口密码.•方法一:通过STelnet/Telnet登 ...

  4. CloudEngine 6800基础配置-01_常见密码操作

    由于工作原因,现在从事公有云. 这简直就是个笑话,12年后又回来学网络知识. # 设置系统的日期.时间和时区   <HUAWEI> clock timezone BJ add 08:00: ...

  5. 使用Spring Security Oauth2完成RESTful服务password认证的过程

            摘要:Spring Security与Oauth2整合步骤中详细描述了使用过程,但它对于入门者有些重量级,比如将用户信息.ClientDetails.token存入数据库而非内存.配置 ...

  6. H3C S5120清除console口密码

    1.开机启动交换机显示Press Ctrl-B to enter Extended Boot menu...0  字样迅速按Ctrl-B进入如下字符介面提示: Press Ctrl-B to ente ...

  7. Xshell配置SSH免密码登录

    思路: 私钥存放于客户端,id_rsa 将客户端公钥存放于要远程控制服务器上:将客户在公钥id_rsa.pub内容追加到 /root/.ssh/authorized_keys 使用密钥认证分3步: 1 ...

  8. Nginx 核心配置-location的登录账户认证实战篇

    Nginx 核心配置-location的登录账户认证实战篇 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.使用ab命令模拟网站攻击 1>.安装httpd-tools工具 ...

  9. CDH构建大数据平台-配置集群的Kerberos认证安全

     CDH构建大数据平台-配置集群的Kerberos认证安全 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 当平台用户使用量少的时候我们可能不会在一集群安全功能的缺失,因为用户少,团 ...

随机推荐

  1. Charles使用方法简介

    Charles是一个web代理器,用来记录和展示你所发出和接收到的所有数据. 主要特性: SSL Proxying——易清晰地文本展示SSL请求和响应Bandwidth Throttling是用来模拟 ...

  2. Spring Cloud 监控相关

    因为最近客户提出想监控Spring Cloud运行状况的需求,所以稍稍做了调研.目前了解的方法如下: Eureka Server启动后可以在根目录路径看到所有注册的Eureka Client状况 各个 ...

  3. mongo察看replica set副本集primary主节点

    printjson(db.adminCommand( { isMaster: 1 } ));

  4. my08_mysqldump+binlog server备份

    备份策略描述 ******************************************* mysqldump备份适用于小数据量的备份,比如100G以下的数据量,就可以使用逻辑备份 举例两个 ...

  5. Vue.js-----轻量高效的MVVM框架(十二、组件动态切换)

    在写html的过程中,我们经常会遇到要写tabs的切换,类似于这样: 在vue中,我们也有自己的组件和属性来实现这样的效果,这个东西我们叫做动态组件. html: <h3>动态组件< ...

  6. VUE验证器哪家强? VeeValidate absolutely!

    VUE验证器哪家强? VeeValidate absolutely! vee-validate表单验证用法 github地址:https://github.com/baianat/vee-valida ...

  7. 不要在Application中缓存数据

    在你的App中的很多地方都需要使用到数据信息,它可能是一个session token,一次费时计算的结果等等,通常为了避免Activity之间传递数据的开销,会将这些数据通过持久化来存储.   有人建 ...

  8. 用LaTeX画树形结构

    用LaTeX画树形结构,比如:文件目录树形图,程序中函数调用关系图等. 找到的一个不错的资源: http://www.texample.net/tikz/examples/feature/trees/ ...

  9. Redis Intro - Dict

    https://segmentfault.com/a/1190000004850844

  10. [转]Tetris(俄罗斯方块) in jQuery/JavaScript!

    本文转自:http://pwwang.com/2009/10/25/tetris-in-jquery-javascript/ All in jQuery/JavaScript + HTML! Demo ...