天天看点

华为telnet的两种连接方式

<a href="https://s1.51cto.com/wyfs02/M01/9D/C5/wKioL1mFs0WSr2fYAABcAT0w3ms009.png-wh_500x0-wm_3-wmp_4-s_3935441566.png" target="_blank"></a>

要求R2能远程登陆上R1(使用password)方式

第一种方式:

[R1]

[R1]int e0/0/0

[R1-Ethernet0/0/0]ip address 12.1.1.1 24

[R1]user-interface vty 0 4

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

[R1-ui-vty0-4]set authentication password cipher 123456

[R2]int e0/0/0

[R2-Ethernet0/0/0]ip address 12.1.1.2 24

[R2-Ethernet0/0/0]q

[R2]q

&lt;R2&gt;telnet 12.1.1.1

第二种方式:使用aaa认证

[R1]interface e0/0/0

[R1-Ethernet0/0/0]q

[R1-ui-vty0-4]authentication-mode aaa

[R1-ui-vty0-4]q

[R1]aaa

[R1-aaa]local-user huawei password cipher 123456

[R1-aaa]local-user huawei privilege level 3

[R1-aaa]local-user huawei service-type  telnet

[R2]

本文转自 towardly 51CTO博客,原文链接:http://blog.51cto.com/brighttime/1953877