华为5720交换机设置远程

2025-01-01 05:21:10
推荐回答(1个)
回答1:

交换机远程登录方式有两种:

我们用上面的图进场实验,先配置基本的IP地址

修改两个设备命名,配置R1 R2接口IP地址

 

R1:int g0/0/0

            ip address  192.168.1.1 24

R2:   int g0/0/0

             ip address  192.168.1.2 24

验证:

1、Telnet远程登录

方法一:只用密码方式登录

R1:   

user-interface vty 0 4

     authentication-mode password

     回车键

Please configure the login password (maximum length 16):16

     set authentication password cipher huawei

     user privilege level 3

验证:

方法二:设置用户名和密码登录

R1:user-interface vty 0 4

            autioncation-mode aaa   

       aaa     

           local-user admin password cipher huawei             

          local-user admin privlege level 3

          local-user admin service-type telnet

验证:

2、配置SSH远程登录

R1:

rsa locallocal-key-pair create (生成本地密钥)

user-interface vty 0 4   进入VTY用户界面

   autioncation-mode aaa 配置认证为AAA

   protocol inbond ssh指定VTY类型用户只支持SSH协议

aaa

   local-user guest password cipher huawei privlege level 3

   local-user guest service-type ssh用户名和密码用于SSH

ssh user guest authention-type password指定SSH用户的认证方式为密码认证

stelnet server enable开启STELNET服务

验证: