cisco交换机路由器配置12个经典试验.docx
《cisco交换机路由器配置12个经典试验.docx》由会员分享,可在线阅读,更多相关《cisco交换机路由器配置12个经典试验.docx(21页珍藏版)》请在三一办公上搜索。
1、cisco交换机路由器配置12个经典试验cisco交换机、路由器配置12个经典试验 实验一: 1. 口令和设备名设置 添加任意的交换机或路由器,先对交换机进行操作,双击SwitchA 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. switchen password: ;第一次密码为空,直接回车 switch#conf t ;进入全局配置模式 switch(config)#hostname swa ;设置交换机名 swa(config)#enable secret aaa ;设置特权加密口令为 aaa swa(con
2、fig)#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(
3、config)#exit ;返回上一层 swa#sh run ;看配置信息 swa#exit ;返回命令 swaen password: ;试验 哪一个口令可以通过 复制代码 双击ROA对路由器进行与交换机类似的设置。 2. 清除口令 清除交换机口令,实际中是在开机时按住交换机上的mode钮,本模拟机按Ctrl+Break 清除路由器口令,参考如下:双击ROA 先配置路由的特权口令: 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. routeren password: ;第一次密码为空,直接回车 router#conf t ;进入全局配置模式 router(config)#ena
4、ble secret aaa ;设置特权加密口令为 aaa router(config)#exit ;返回 router#exit routeren password:aaa router# 清除口令是打开寄存器配置开关: 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. router#reload ;重新启动,按Ctrl+Break rommon rommonconfreg 0x2142 ;跳过配置,26xx 36xx 45xx rommonreset ;重新引导,等效于重开机 routeren password: router#
5、conf t router(config)#enable secret bbb ;设置特权加密口令为 aaa router(config)#config-register 0x2102 ;正常使用配置文件 router(config)#exit router#exit routeren 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 r
6、oot# 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 输
7、入口令: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 进入特权模式 : switchen 进入全局配置模式: 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(con
8、fig)#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实验 图文件:swi
9、tch2 规划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/1f0/3 vlan 2 ,f0/8为trunk SWB的f0/2f0/4 valn 2 ,f0/1为trunk 2.设置VLAN 双击SWA: 改名Switch为SWA,建立2个vlan: 2 3 1. 2. 3. 4. 5. 6. SWA#vlan database SWA(vlan)#vlan 2 SW
10、A(vlan)#vlan 3 SWA(vlan)#exit SWA#conf t SWA#sh vlan 复制代码 将f0/1,f0/2,f0/3 加入到vlan 2 1. 2. 3. 4. 5. 6. 7. 8. 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
11、(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
12、 10.65.1.8 从SWA到PCA测试:(通) SWA#ping 10.65.1.1 从SWA到SWB测试:(通) SWB#ping 10.65.1.8 再将连接两个交换机的接口设置成trunk。 1. 2. 3. 4. 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情况下,测试连通性
13、。 (2)设置有vlan情况下,测试连通性。 (3)使用trunk情况下,测试连通性。 实验四:路由器的升级 1. 在ROM监控模式下,使用console通过计算机的超级终端设置。 装入图文件:router1a 要求路由器的console与计算机的rs232相连。 routerCtrl+Break ;进入ROM监控状态 rommoncopy xmodem:c2621.bin flash:c2621.bin ;从console升级IOS # # # ok! rommondir flash: c2621.bin 这种方式传送的速度比较慢,使用的是RS232串行接口的速率,波特率一般为9600, 但
14、不需要IOS的支持,在IOS损坏的情况下往往使用这种方式。 2. 在特权模式下的升级 装入图文件:router1b 要求TFTP Server (PCA) 接入路由器的以太口,且PCA的ip 地址与路由接口的ip地址 在一个网络段。设置TFTP的ip地址为:10.65.1.1 双击HostA: 1. 2. 3. 4. login: root password: linux root#linux root# ifconfig eth0 10.65.1.1 netmask 255.255.0.0 root#linux root# ifconfig ;查看IP地址 复制代码 双击要升级的路由器: 设
15、置与之tftp server相联接口f0/0的ip地址 1. router(cnfig-if)#ip address 10.65.1.2 255.255.0.0 2. router#copy tftp flash: 3. tftp server ip address:10.65.1.1 4. flash file name:C2621.bin 5. # 6. # 7. # 8. ok! 9. router#dir flash: 10. c2621.bin 复制代码 这种方式传输的速度较快,使用的是以太网的速率。但要求IOS是好的,所以升级 IOS使用这种方式较好。 3. 在rommon监控状态
16、下,使用TFTP升级 装入图文件:router1c 要求路由器console与计算机rs232相连,路由器f0/0与计算机网卡相连。 1. 2. 3. 4. 5. 6. routerCtrl+Break ;进入ROM监控状态 rommonip_address=10.65.1.10 ;设置路由器IP rommonip_subnet_mask=255.255.0.0 ;设置路由器掩码 rommontftp_server=10.65.1.1 ;指定TFTP服务器IP rommontftp_file=c2600.bin ;所要下载的文件 rommontftpdnld ;ROM监控状态升级IOS 7.
17、# 8. # 9. # 10. ok! 11. rommondir flash: ;查看闪存中的内容 12. c2621.bin 13. rommonboot ;引导IOS 14. router 复制代码 实验五 路由器接口ip设置 装入图文件:router1d 本实验两个计算机, 一个路由器,测试路由器的直路由。 设置PCA的IP地址为:10.65.1.1 255.255.0.0 设置PCB的IP地址为:10.66.1.1 255.255.0.0 设置RO f0/0的IP为:10.65.1.2 255.255.0.0 设置RO f0/1的IP为:10.66.1.2 255.255.0.0 1
18、. 设置计算机ip地址 设置 IP :root#PCA root# ifconfig eth0 10.65.1.1 netmask 255.255.0.0 查看 IP :root#PCA root# ifconfig 设置网关:root#PCA root# route add default gw 10.65.1.2 查看网关:root#PCA root# route 设置 IP :root#PCB root# ifconfig eth0 10.65.1.1 netmask 255.255.0.0 查看 IP :root#PCB root# ifconfig 2. 双击ROA,配置路由器的接口
19、IP地址: 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. routeren router#conf t router(config)#hostname roa roa(config)int f0/0 roa(config-if)#ip address 10.65.1.2 255.255.0.0 roa(config-if)#no shutdown roa(config)int f0/1 roa(config-if)#ip address 10.66.1.2 255.255.0.0 roa(config-if)#no shut roa(config
20、)int s0/0 roa(config-if)#clock rate 64000 roa(config-if)#ip address 10.67.1.2 255.255.0.0 roa(config-if)#no shut roa(config)int s0/1 15. roa(config-if)#clock rate 64000 16. roa(config-if)#ip address 10.68.1.2 255.255.0.0 17. roa(config-if)#no shut 复制代码 3.在计算机PCA分别ping 路由器的四个接口f0/0、f0/1、s0/0、s0/1 1.
21、2. 3. 4. 5. 6. 7. 8. root#PCA root# ping 10.65.1.2 root#PCA root# ping 10.66.1.2 root#PCA root# ping 10.67.1.2 root#PCA root# ping 10.68.1.2 root#PCB root# ping 10.65.1.2 root#PCB root# ping 10.66.1.2 root#PCB root# ping 10.67.1.2 root#PCB root# ping 10.68.1.2 复制代码 上面的ping命令,这PCA都可以通,但PCB只能与直联口通,因为P
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- cisco 交换机 路由器 配置 12 经典 试验
链接地址:https://www.31ppt.com/p-3154722.html