华为telnet的两种连接方式
要求R2能远程登陆上R1(使用password)方式
第一种方式:
int e0/0/0
ip address 12.1.1.1 24
user-interface vty 0 4
authentication-mode password
set authentication password cipher 123456
int e0/0/0
ip address 12.1.1.2 24
q
q
<R2>telnet 12.1.1.1
第二种方式:使用aaa认证
interface e0/0/0
ip address 12.1.1.1 24
q
user-interface vty 0 4
authentication-mode aaa
q
aaa
local-user huawei password cipher 123456
local-user huawei privilege level 3
local-user huawei service-typetelnet
int e0/0/0
ip address 12.1.1.2 24
q
q
<R2>telnet 12.1.1.1
页:
[1]