h3c交换机配置telnet配置教程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了h3c交换机配置telnet配置教程相关的知识,希望对你有一定的参考价值。

参考技术A

  配置实例一:

  通过Console口连接

  配置交换机Vlan1的IP地址

  system-view

  [h3c]interface vlan-interface 1

  [h3c-vlan-interface1]ip address 192.168.2.1 255.255.255.0

  创建本地用户Admin,并且进入本地视图

  [h3c]local-user admin

  配置用户的认证口令,明文|密文显示方式,口令为12345678

  [h3c-luser-admin]password simple | cipher 12345678

  配置用户的服务类型为Telnet且命令级别为2

  [h3c-luser-admin]service-type telnet level 2

  [h3c-luser-admin]quit

  进入VTY0用户界面视图

  [h3c]user-interface vty 0

  配置通过VTY0用户界面登录交换机的Telnet用户进行Scheme认证

  [h3c-ui-vty0]authentication-mode scheme

  配置VTY0用户界面支持Telnet协议

  [h3c-ui-vty0]protocol inbound telnet

  配置VTY0用户界面终端显示屏的\'一屏显示30行命令

  h3c交换机配置telnet实例教程H3C认证

  [h3c-ui-vty0]screen-length 30

  配置VTY0用户界面的历史命令缓冲区可存放20条命令

  [h3c-ui-vty0]history-command max-size 20

  配置VTY0用户界面的超过时间为6分钟

  WiseMedia

  [h3c-ui-vty0]idle-timeout 6

  保存修改

  [h3c]save

  保存后就可以通过Telnet 192.168.2.1连接了。

  配置实例二:

  进入console0口:

  [H3C]user-interface aux 0(S)

  修改验证模式:

  [H3C-ui-aux0]authentication-mode password

  设置aux0 口密码:

  [H3C-ui-console0]set authentication password cipher | simple wisdom

  进入VLAN1接口视图:

  [H3C]interface Vlan-interface 1

  为该接口设置IP:

  [H3C-Vlan-interface1]ip address 172.16.99.100 255.255.255.0

  [H3C-Vlan-interface1]ip address 172.16.99.100 24

  进入vty 0 4接口:

  [H3C]user-interface vty 0 4

  设置密码模式:

  h3c交换机配置telnet实例教程h3c交换机配置telnet实例教程

  [H3C-ui-vty0-4]authentication-mode password

  设置密码:

  [H3C-ui-vty0-4]set authentication password cipher|simple wisdom

  设置登录级别:

  [H3C-ui-vty0-4]user privilege level 3

华为交换机三种Telnet配置模式

实验拓扑图:

实验配置思路:

  1. 给VLAN配置IP地址
  2. 配置互联接口为trunk链路,允许所有VLAN通过
  3. 配置Telent远程登录AAA认证
  4. 配置Telent远程登录none认证
  5. 配置Telent远程登录password认证

实验基本配置:

SW1——配置VLAN和接口模式

[SW1]vlan 10     //创建VLAN 10
[SW1-vlan10]quit     //退出
[SW1]int vlan10     //进入VLAN 10
[SW1-Vlanif10]ip address 192.168.10.1 24     //配置IP地址
[SW1-Vlanif10]quit     //退出
[SW1]int g0/0/1     //进入接口
[SW1-GigabitEthernet0/0/1]port link-type trunk     //配置接口为trunk链路  
[SW1-GigabitEthernet0/0/1]port trunk allow-pass vlan all     //允许所有VLAN通过 
[SW1-GigabitEthernet0/0/1]quit     //退出
[SW1]

SW2——配置VLAN和接口模式

[SW2]vlan 10     //创建VLAN 10
[SW2-vlan10]quit     //退出
[SW2]int vlan10     //进入VLAN 10
[SW2-Vlanif10]ip address 192.168.10.2 24     //配置IP地址
[SW2-Vlanif10]quit     //退出
[SW2]int g0/0/1     //进入接口
[SW2-GigabitEthernet0/0/1]port link-type trunk     //配置接口为trunk链路   
[SW2-GigabitEthernet0/0/1]port trunk allow-pass vlan all     //允许所有VLAN通过  
[SW2-GigabitEthernet0/0/1]quit     //退出
[SW2]

配置AAA认证

SW2——配置认证模式为AAA认证

[SW2]user-interface vty 0 4     //用户指定虚拟用户终端接口
[SW2-ui-vty0-4]authentication-mode aaa     //配置认证模式AAA
[SW2-ui-vty0-4]quit     //退出
[SW2]aaa     //配置AAA
[SW2-aaa]local-user admin password cipher admin     //配置用户名和密码	
[SW2-aaa]local-user admin privilege level 3     //配置用户等级
[SW2-aaa]local-user admin service-type telnet     //配置用户服务类型 
[SW2-aaa]quit     //退出
[SW2]

SW1——Telnet登录192.168.10.2设备

<SW1>telnet 192.168.10.2     //Telent192.168.10.2设备
Trying 192.168.10.2 ...
Press CTRL+K to abort
Connected to 192.168.10.2 ...


Login authentication


Username:admin     //输入用户名
Password:     //输入密码
Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2021-05-24 19:44:54.
<SW2>     //登录成功

配置none认证

SW2——配置认证模式为none认证

[SW2]user-interface vty 0 4     //用户指定虚拟用户终端接口	
[SW2-ui-vty0-4]authentication-mode none     //配置认证模式为none 
[SW2-ui-vty0-4]user privilege level 3     //配置用户等级
[SW2-ui-vty0-4]quit     //退出
[SW2]

SW1——Telnet登录192.168.10.2设备

<SW1>telnet 192.168.10.2     //Telent192.168.10.2设备
Trying 192.168.10.2 ...
Press CTRL+K to abort
Connected to 192.168.10.2 ...

Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2021-05-24 20:53:28.
<SW2>     //登录成功

配置passwrd认证

SW2——配置认识模式为password认证

[SW2]user-interface vty 0 4     //用户指定虚拟用户终端接口
[SW2-ui-vty0-4]authentication-mode password     //配置用户认证模式为password 	
[SW2-ui-vty0-4]set authentication password ?
  cipher  Set the password with cipher text     //使用密文设置密码
  simple  Set the password in plain text    //以明文方式设置密码
[SW2-ui-vty0-4]set authentication password cipher admin     //配置密码
[SW2-ui-vty0-4]user privilege level 3     //配置用户等级
[SW2-ui-vty0-4]quit     //退出
[SW2]

SW1——Telnet登录192.168.10.2设备

<SW1>telnet 192.168.10.2     //Telent192.168.10.2设备
Trying 192.168.10.2 ...
Press CTRL+K to abort
Connected to 192.168.10.2 ...


Login authentication


Password:     输入密码
Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2021-05-24 21:16:12.
<SW2>     //登录成功

以上是关于h3c交换机配置telnet配置教程的主要内容,如果未能解决你的问题,请参考以下文章

h3c交换机配置telnet实例教程

h3c交换机telnet配置命令

H3C交换机配置问题

H3C交换机telnet 和密码怎么配置?

H3C交换机基本配置vlan,dhcp,telnet

如何给h3c设置telnet账号密码