. . .
cisco网络实验题
实验一:
1. 口令和设备名设置
添加任意的交换机或路由器,先对交换机进行操作,双击SwitchA switch>en
password: ;第一次密码为空,直接回车 switch#conf t ;进入全局配置模式 switch(config)#hostname swa ;设置交换机名
swa(config)#enable secret aaa ;设置特权加密口令为 aaa swa(config)#enable password aax ;设置特权非密口令为 aax swa(config)#line console 0 ;进入控制台口(Rs232)状态 swa(config-line)#login ;允许登录 swa(config-line)#password aa ;设置登录口令aa
swa(config-line)#line vty 0 4 ;进入虚拟终端virtual tty swa(config-line)#login ;允许登录 swa(config-line)#password a ;设置登录口令a swa(config-line)#exit ;返回上一层 swa(config)#exit ;返回上一层 swa#sh run ;看配置信息 swa#exit ;返回命令 swa>en
password: ;试验 哪一个口令可以通过 双击ROA对路由器进行与交换机类似的设置。 2. 清除口令
清除交换机口令,实际中是在开机时按住交换机上的mode钮,本模拟机按Ctrl+Break 清除路由器口令,参考如下:双击ROA 先配置路由的特权口令: router>en
password: ;第一次密码为空,直接回车 router#conf t ;进入全局配置模式 router(config)#enable secret aaa ;设置特权加密口令为 aaa router(config)#exit ;返回 router#exit router>en password:aaa
. . . .
. . .
router#
清除口令是打开寄存器配置开关:
router#reload ;重新启动,按Ctrl+Break rommon>
rommon>confreg 0x2142 ;跳过配置,26xx 36xx 45xx rommon>reset ;重新引导,等效于重开机 router>en password: router#conf t
router(config)#enable secret bbb ;设置特权加密口令为 aaa router(config)#config-register 0x2102 ;正常使用配置文件 router(config)#exit router#exit router>en password:bbb router#
================================================================================================
实验二:计算机与交换机IP地址设置 图文件:switch1 规划ip地址: PCA: 10.65.1.1 PCB: 10.65.1.2 SWA: 10.65.1.3 1.双击PCA 输入用户名:root 输入口令:linux
设置 IP :[root#PCA root]# ifconfig eth0 10.65.1.1 netmask 255.255.0.0 查看 IP :[root#PCA root]# ifconfig
删除 IP : [root#PCA root]# ifconfig eth0 10.65.1.1 netamsk 255.255.0.0 down 设置网关:[root#PCA root]# route add default gw 10.65.1.9 查看网关:[root#PCA root]# route
删除网关:[root#PCA root]# route del default gw 10.65.1.9
. . . .
. . .
2.双击PCB 输入用户名:root 输入口令:linux
设置 IP :[root#PCB root]# ifconfig eth0 10.65.1.2 netmask 255.255.0.0 设置网关:[root#PCB root]# route add default gw 10.65.1.9 3.双击SWA
进入特权模式 : switch>en 进入全局配置模式: switch#conf t
进入默认VLAN状态: switch(config)#int vlan 1
设置ip地址和掩码: switch(config-if)#ip address 10.65.1.3 255.255.0.0 设置switch的网关: switch(config)#ip defaule-gateway 10.65.1.9 查看设置 : #sh run 4.回PCA
[rootPCA root]# ping 10.65.1.1 [rootPCA root]# ping 10.65.1.2 [rootPCA root]# ping 10.65.1.3 5.修改PCB的ip地址
修改为不同网段的一个ip地址,再从PCA Ping PCB。 修改为相同网段的一个ip地址,再从PCA Ping PCB。 断开交换机与PCB计算机连线, 再从PCA Ping PCB。 [rootPCA root]# ping 10.65.1.2
================================================================================================ 实验三 交换机VLAN实验 图文件:switch2 规划ip地址
PCA的ip 地址: 10.65.1.1 PCB的ip 地址: 10.66.1.1 PCC的ip 地址: 10.65.1.3 PCD的ip 地址: 10.66.1.3 SWA的ip 地址: 10.65.1.7 SWB的ip 地址: 10.65.1.8
SWA的f0/1~f0/3 vlan 2 ,f0/8为trunk SWB的f0/2~f0/4 valn 2 ,f0/1为trunk 2.设置VLAN
双击SWA: 改名Switch为SWA,建立2个vlan: 2 3
. . . .
. . .
SWA#vlan database SWA(vlan)#vlan 2 SWA(vlan)#vlan 3 SWA(vlan)#exit SWA#conf t SWA#sh vlan
将f0/1,f0/2,f0/3 加入到vlan 2 SWA(config)#int f0/1
SWA(config-if)#switchport access vlan 2 SWA(config-if)#int f0/2
SWA(config-if)#switchport access vlan 2 SWA(config-if)#int f0/3
SWA(config-if)#switchport access vlan 2 SWA(config-if)# Ctrl+z SWA#sh vlan
与SWA类似设置SWB 的VLAN。 3.测试可通性
从PCA到PCC测试:(通)
[rootPCA root]# ping 10.65.1.3
从PCA到PCB测试:(不通:不是一个网段,且不在一个VLAN) [rootPCA root]# ping 10.66.1.1 从PCB到PCD测试:(不通:要求trunk) [rootPCB root]# ping 10.66.1.3 从PCA到SWA测试:(通) [rootPCA root]# ping 10.65.1.7 从PCA到SWB测试:(通) [rootPCA root]# ping 10.65.1.8 从SWA到PCA测试:(通) SWA#ping 10.65.1.1 从SWA到SWB测试:(通) SWB#ping 10.65.1.8
再将连接两个交换机的接口设置成trunk。 SWA(config)#int f0/8
SWA(config-if)#switchport mode trunk SWB(config)#int f0/1
SWB(config-if)#switchport mode trunk
. . . .
. . .
测试从PCA和PCB到PCC、PCD、SWA、SWB的可通性。 5.装入Switch3图文件
(1)都不设vlan情况下,测试连通性。 (2)设置有vlan情况下,测试连通性。 (3)使用trunk情况下,测试连通性。
================================================================================================ 实验四:路由器的升级
1. 在ROM监控模式下,使用console通过计算机的超级终端设置。 装入图文件:router1a
要求路由器的console与计算机的rs232相连。
router>Ctrl+Break ;进入ROM监控状态 rommon>copy xmodem:c2621.bin flash:c2621.bin ;从console升级IOS ############################################################### ############################################################### ####################################### ok!
rommon>dir flash: c2621.bin
这种方式传送的速度比较慢,使用的是RS232串行接口的速率,波特率一般为9600, 但不需要IOS的支持,在IOS损坏的情况下往往使用这种方式。 2. 在特权模式下的升级 装入图文件:router1b
要求TFTP Server (PCA) 接入路由器的以太口,且PCA的ip 地址与路由接口的ip地址 在一个网络段。设置TFTP的ip地址为:10.65.1.1 双击HostA: login: root password: linux
[root#linux root]# ifconfig eth0 10.65.1.1 netmask 255.255.0.0 [root#linux root]# ifconfig ;查看IP地址 双击要升级的路由器:
设置与之tftp server相联接口f0/0的ip地址 router(cnfig-if)#ip address 10.65.1.2 255.255.0.0 router#copy tftp flash:
tftp server ip address:10.65.1.1 flash file name:C2621.bin
###############################################################
. . . .