zoukankan      html  css  js  c++  java
  • Huawei华为交换机 consolep密码和vty密码配置telnet,ssh

    以登录用户界面的认证方式为密码认证,密码为Huawei@123为例,配置如下。
    <HUAWEI> system-view
    [HUAWEI] user-interface console 0
    [HUAWEI-ui-console0] authentication-mode password
    [HUAWEI-ui-console0] set authentication password cipher Huawei@123
    [HUAWEI-ui-console0] return<HUAWEI> save
    
    # 以登录用户界面的认证方式为AAA认证,用户名为admin123,密码为Huawei@123为例,配置如下。
    <HUAWEI> system-view
    [HUAWEI] user-interface console 0
    [HUAWEI-ui-console0] authentication-mode aaa
    [HUAWEI-ui-console0] quit
    [HUAWEI] aaa
    [HUAWEI-aaa] local-user admin123 password irreversible-cipher Huawei@123
    [HUAWEI-aaa] local-user admin123 service-type terminal
    [HUAWEI-aaa] return
    <HUAWEI> save
    
    
    配置vty
    [HUAWEI]user-interface vty 0 4  (进入vty用户界面)
    [HUAWEI-ui-vty0-4]authentication-mode ?
            none:不验证
            password:密码验证
            aaa:AAA验证
    (设置密码验证的密码)
    [HUAWEI-ui-vty0-4]set authentication passowrd{ciphersimple}
    cipher:加密的
    simple:简单的
    
    (设置AAA验证)
    [HUAWEI-ui-vty0-4]authentication-mode aaa
    进入系统试图
    [HUAWEI-ui-vty0-4]aaa      //进入AAA视图
    [HUAWEI-aaa]local-user 
    [HUAWEI-aaa]local-user  service-type ssh  配置接入类型为SSH
    [HUAWEI]rsa local-key-pair create 产生本地rsa秘钥,进行SSH时配置
      
      
      
  • 相关阅读:
    System.Diagnostics.Process.Start()
    Asp.Net 构架(HttpModule 介绍) Part.3
    Asp.Net 构架(Http Handler 介绍) Part.2
    Asp.Net构架(Http请求处理流程)
    Ruby 2.0 发布首个预览版
    Java基本数据类型及类型转换
    J2EE 1.4 APIs and Technologies
    java final 关键字
    Android获取通讯录
    Activity的四种加载模式(转载)
  • 原文地址:https://www.cnblogs.com/qzqdy/p/8962609.html
Copyright © 2011-2022 走看看