<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
<R2>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