验目的:熟练路由器的常用接口配置命令,会用路由器的状态命令查看路由器的状态。
实验内容和步骤:
1
、利用控制台登陆到路由器上,用
password
设置密码为
cisco
,用
service password-encryption
给密码加密。
Router(config)#enable password cisco
Router(config)#service password-encryption
实验用
REV.35 CABLE
连接路由器的串口,标有
Serial V.35 DTE
的
一端为
DTE
接口,标有
Serial V.35 DCE
的一端为
DCE
接口,
DCE
的接口为串行链路提供时钟速率。串行接口之间必须有
DCE
设备提供时钟速率才能进行数据传输所以连接路由器时要注意哪个接口连接的是
DCE
接头,在这个接口设置好适当的时钟速率。
2
、用
interface Ethernet 0
,进入以太网
0
接口配置模式,用
ip address
命令设置接口
ip
地址为
192.168.1.5/24
。设置
serial 0
接口的
IP
为:
192.168.2.5/24
,设置
DCE
接口时钟速率为
56000 bps
以太网口的一般配置方法为:
Router(config)#interface Ethernet 0 or Fastethernet 0
Router(config-if)#media-type media_type //
这里是指定介质的类型,它的值可以是
aui,10baset,100baset,mii,
根据具体的传输介质而定。这条命令在实验室的
1721
路由器上无效,
1721
不支持这个设置。
Router(config-if)#speed 10 |100 |auto //
设置传输速度
10M
,
100M
或自动
Router(config-if)#[no] half-duplex //
设置传输方式,用
no half-duplex
命令设置端口为全双工
Router(config-if)#ip address ip_address subnet_mask
Serial
口的一般配置方法:
Router(config)#interface serial 0
Router(config-if)#clock rate rate_in_bits_per_second
3
、利用
description
命令设置接口描述为
office room
。
Router(config-if)#description description
5
、用
”NO SHUTDOWN”
打开端口。
Router(config-if)#no shutdown
6
、用
“end”
命令退到特权模式,
用
”show interfaces”
命令查看接口配置
.
用
show ip interface
命令查看接口
IP
配置。
命令格式为:
router#show interfaces
router#show ip interface type port_# //
例如:
show ip interface Ethernet 0
router#show ip interface brief //
每个接口输出一行显示
IP
概要信息。
7
、查看路由器其他状态信息。用状态命令
show processes
、
show protocols
、
show memory
、
show stacks
、
show buffers
、
show flash
查看路由器状态。
Router(config-if)#end
Rouer#show processes cpu
Router#show protocols
Router#show memory
Router#show stacks
Router#show buffers
Rouer#show flash
7
、用
CDP
来访问其他路由器,首先配置
CDP
,在每个接口上用
“
cdp enable
”命令启动
CDP
,练习用
show cdp neighbors
查看相邻设备的信息,用
show cdp interface
查看用于传播和发现桢传输的信息,用
show cdp entry
命令查看某个设备的
CDP
信息。用
CDP neighbors detail
查看本地路由器收到的
CDP
更新信息。停止
cdp
。
Router(config)#interface Ethernet 0
Router(config-if)#cdp enable
Router(config-if)#interface serial 0
Router(config-if)#cdp enable
Rouer(config-if)#end
Router#show cdp neighbors
Router#show cdp neighbors detail
Router#show cdp entry hostname //
例如:
show cdp entry routerA
Router#config terminal
Router(config)#no cdp run
8
、用
copy running-config startup-config
命令保存配置。
Rouer#copy running-config startup-config
9
、确定
TFTP
服务器的位置,备份配置文件和
IOS
到
TFTP
服务器。
Router#copy startup-config tftp
Address or name of remote host []? //
在这里输入
TFTP
服务器的
IP
地址或名字
Destination filename [router-config]? //
在这里指定目标文件名。
Router#copy flash tftp