配置路由器的Telnet登录:

第一步:配置路由器的名称、接口 IP 地址和时钟

R3740#configure terminal

Enter configuration commands, one per line.

End with CNTL/Z.

R3740(config)#hostname RouterA

!配置路由器的名称

RouterA(config)#interface serial 4/0

!进入串口的接口配置模式

RouterA(config-if)#clock rate 512000

!设置 DCE 端的时钟频率

RouterA(config-if)#ip address 192.168.1.1 255.255.255.0

!配置接口 IP 地址

RouterA(config-if)#no shutdown

!启用端口

RouterA(config-if)#exit

R3740#configure terminal

Enter configuration commands, one per line.

End with CNTL/Z.

R3740(config)#hostname RouterB

RouterB(config)#interface serial 4/0

RouterB(config-if)#ip address 192.168.1.2 255.255.255.0

RouterB(config-if)#no shutdown

RouterB(config-if)#exit

第二步:配置 Telnet

RouterA(config)#enable password ruijie

!配置路由器的特权模式密码

RouterA(config)#line vty 0 4

!进入线程配置模式

RouterA(config-line)#password star

!配置 Telnet 密码

RouterA(config-line)#login

!设置 Telnet 登录时进行身份验证

RouterA(config-line)#end

RouterB(config)#enable password ruijie

RouterB(config)#line vty 0 4

RouterB(config-line)#password star

RouterB(config-line)#login

RouterB(config-line)#end

第三步:测试网络连通性,以 Telnet 方式登录路由器

RouterB#ping 192.168.1.1

Sending 5, 100-byte ICMP Echoes to 192.168.1.1, timeout is 2 seconds:

< press Ctrl+C to break >

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/10 ms

RouterB#telnet 192.168.1.1

Trying 192.168.1.1, 23...

User Access Verification

Password:

!提示输入 Telnet 密码,此处输入 ruijie

RouterA>en

Password:

!提示输入特权模式密码,此处输入 star

RouterA#en

!远程登录路由器 A,可进行配置

RouterA#

RouterA#conf t

Enter configuration commands, one per line.

End with CNTL/Z.

RouterA(config)#exit

RouterA#

RouterA#

RouterA#exit

!使用 exit 命令退出 Telnet 登录

RouterB#

RouterA#ping 192.168.1.2

Sending 5, 100-byte ICMP Echoes to 192.168.1.2, timeout is 2 seconds:

< press Ctrl+C to break >

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 1/4/10 ms

RouterA#telnet 192.168.1.2

Trying 192.168.1.2, 23...

User Access Verification

Password:

RouterB>en

Password:

RouterB#

RouterB#conf t

Enter configuration commands, one per line.

End with CNTL/Z.

RouterB(config)#exit

RouterB#

RouterB#exit

RouterA#

【注意事项】

1、如果两台路由器通过串口直接互连,则必须在其中一端设置时钟频率(DCE)

2、如果没有配置 Telnet 密码,则登录时会提示“Password required, but none set”

3、 如果没有配置 enable 密码,则远程登录到路由器上后不能进入特权模式,提示

“Password required, but none set”。

交换机的Telnet登录

【实验步骤】

第一步:在两台交换机上配置主机名、管理 IP 地址

S3760(config)#hostname L3-SW

!配置 3 层交换机的主机名

L3-SW(config)#interface vlan 1

!配置 3 层交换机的管理 IP 地址

L3-SW(config-if)#ip address 192.168.1.1 255.255.255.0

L3-SW(config-if)#no shutdown

L3-SW(config-if)#end

S2126G (config)#hostname L2-SW

!配置 2 层交换机的主机名

L2-SW(config)#interface vlan 1

!配置 2 层交换机的管理 IP 地址

L2-SW(config-if)#ip address 192.168.1.2 255.255.255.0

L2-SW(config-if)#no shutdown

L2-SW(config-if)#end