1. 程式人生 > >華為telnet的兩種連接方式

華為telnet的兩種連接方式

telnet

技術分享

要求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]ip address 12.1.1.1 24

[R1-Ethernet0/0/0]q

[R1]user-interface vty 0 4

[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]int e0/0/0

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

[R2-Ethernet0/0/0]q

[R2]

[R2]q

<R2>telnet 12.1.1.1



本文出自 “costin” 博客,請務必保留此出處http://brighttime.blog.51cto.com/12837169/1953877

華為telnet的兩種連接方式