下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、实验报告实验名称路由器的配置成绩实验目的:理解路由器的工作原理及其作用,认识路由器的各种接口理解静态路由的工作原理和应用环境,掌握配置静态路由的基本命令理解动态路由协议 RIP的原理和应用环境,掌握配置RIP协议的基本命令理解动态路由协议 OSPF 的基本特点和分组类型, 掌握在路由器 (三层交换机)上配置 OSPF 协议的基本命令; 5学会在路由器(三层交换机)上查看、分析路由表的方法,并学会通过分析路实验条件:Packet tracer 5.0实验内容:一、静态路由器的配置画出结构图并配置两个 PC 的 IP 及掩码、网关为路由器的两个接口分配 IPDCE64000Routerenable
2、 Router#configureterminalEnter configuration commands, one per line.EndwithCNTL/Z.Router(config)#interface FastEthernet0/0Router(config-if)#no shutdown%LINK-5-CHANGED:InterfaceFastEthernet0/0,changedstatetoupip address 192.168.1.1 255.255.255.0Router(config-if)#exit Router(config)#interfaceSerial2/0
3、Router(config-if)#no shutdown Router(config-if)#clockrate64000Router(config-if)#ip address 10.0.0.1 255.0.0.0在两台路由器上配置静态路由,命令如下: Router(config)#iproute192.168.1.0255.255.255.010.0.0.2查看三台网络设备上的路由表并测试两台PCping 192.168.2.2Pinging 192.168.2.2 with 32 bytes of data:Replyfrom192.168.2.2:bytes=32time=15msT
4、TL=128Reply from 192.168.2.2: bytes=32 time=8ms TTL=128 Reply from 192.168.2.2: bytes=32 time=8ms TTL=128 Reply from 192.168.2.2: bytes=32 time=8ms TTL=128 Ping statistics for 192.168.2.2:Packets:Sent=4,Received=4,Lost=0(0%loss),Approximate round trip times in milli-seconds:Minimum = 8ms, Maximum =
5、15ms, Average = 9ms二、RIP配置两 PC 的 IP 地址及掩码和网关配置三层交换机的接口IP如果在三层交换机的物理端口上配置,则需用命令noswitchport 将其变为三层端口,才可以配置 IP如果在三层交换机的虚拟端口上配置,则可以直接配置IP,但要先划分 vlan,并将物理端口分配至相应的vlan中配置两路由器的接口IP,注意:位于 DCE 端的路由器串口要配置时钟频率64000,并路由器端口要手动开启。为三层交换机及两台路由器配置rip协议,命令如下Routerenable Router#configureterminalEnter configuration co
6、mmands, one per line.EndwithCNTL/Z.Router(config)#router ripRouter(config)#network 192.168.1.0 255.255.0查看三台网络设备上的路由表并测试两台PCping 192.168.4.2Pinging 192.168.4.2 with 32 bytes of data:Reply from 192.168.4.2: bytes=32 time=23ms TTL=125Reply from 192.168.4.2: bytes=32 time=20ms TTL=125Reply from 192.168
7、.4.2: bytes=32 time=23ms TTL=125Reply from 192.168.4.2: bytes=32 time=21ms TTL=125Ping statistics for 192.168.4.2:Packets:Sent=4,Received=4,Lost=0(0%loss),Approximate round trip times in milli-seconds:Minimum = 20ms, Maximum = 23ms, Average = 21ms三、OSPF配置两 PC 的 IP 地址及掩码和网关配置三层交换机的接口 IPSwitchenSwitch
8、#conf tEnter configuration commands, one per line.EndwithCNTL/Z.Switch(config)#int f1/0%Invalid interface type and numberSwitch(config)#int f0/1 Switch(config-if)#no switchport%LINEPROTO-5-UPDOWN:changed state to downLineprotocolonInterfaceFastEthernet0/1,%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceF
9、astEthernet0/1,changed state to upSwitch(config-if)#ipaddress192.168.1.1255.255.255.0Switch(config-if)#exitSwitch(config)#int f0/2 Switch(config-if)#noswitchportSwitch(config-if)#ipaddress192.168.2.1255.255.255.0Switch(config-if)#exit配置两路由器的接口IP,注意:位于 DCE 端的路由器串口要配置时钟频率64000,并路由器端口要手动开启。Routerenable
10、 Router#configureterminalEnter configuration commands, one per line.EndwithCNTL/Z.Router(config)#interface FastEthernet0/0Router(config-if)#no shutdown%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up%LINEPROTO-5-UPDOWN:Lineprotocolon Interfacechanged state to upRouter(config-if)#ipadd
11、ress192.168.2.2255.255.255.0Router(config-if)#Router(config-if)#exitRouter(config)#interfaceSerial2/0Router(config-if)#no shutdown Router(config-if)#clockrate64000Router(config-if)#ip address 192.168.3.1 255.255.255.0为三层交换机及两台路由器配置如下SwitchenSwitch#config tEnter configuration commands, one per line.E
12、ndwithCNTL/Z.Switch(config)#router ospf 100:00:45:%OSPF-5-ADJCHG:Process1,Nbr192.168.3.1onFastEthernet0/1from LOADING to FULL, Loading DoneSwitch(config-router)#network 192.168.1.0 255.255.255.0 area 2Switch(config-router)#network192.168.2.0255.255.255.0area2RouterenRouter#config tEnter configuratio
13、n commands, one per line.EndwithCNTL/Z.Router(config)#router ospf 100:00:45:%OSPF-5-ADJCHG:Process1,Nbr192.168.2.1onFastEthernet1/0from LOADING to FULL, Loading DoneRouter(config-router)#network 192.1168.2.0 255.255.255.0 area 2Router(config-router)#network 192.1168.3.0 255.255.255.0 area 2查看三台网络设备上
14、的路由表并测试两台PCping 192.168.4.2Pinging 192.168.4.2 with 32 bytes of data:Replyfrom192.168.4.2:bytes=32time=110msTTL=125Replyfrom192.168.4.2:bytes=32time=110msTTL=125Replyfrom192.168.4.2:bytes=32time=125msTTL=125Replyfrom192.168.4.2:bytes=32time=125msTTL=125Ping statistics for 192.168.4.2:Packets:Sent=4,
15、Received=4,Lost=0(0%loss),Approximate round trip times in milli-seconds:Minimum = 110ms, Maximum = 125ms, Average = 117ms查看路由表Switch#showiprouteCodes:C-connected,S-static,I-IGRP,R-RIP,M-mobile,B-BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSP
16、F NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGPi -IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia- IS-ISinter area* -candidate default, U - per-user static route, o -ODRP -periodic downloaded static routeGateway oflast resort is not setC192.168.1.0/24 isdirectly connected,FastEth
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 足底发麻病因介绍
- 2024秋新沪科版物理8年级上册教学课件 第6章 熟悉而陌生的力 第4节 探究:滑动摩擦力大小与哪里因素有关
- 2023年智能电能表及配件项目融资计划书
- 2023年原料药机械及设备项目融资计划书
- 养老院老人生活照料管理制度
- 养老院老人健康饮食营养师考核奖惩制度
- 物流整改方案
- 政府还款协议书(2篇)
- 抵押房子合同书(2篇)
- 《豆类坚果类与健康》课件
- 西方文明史导论智慧树知到期末考试答案2024年
- 2023年大学生《思想道德与法治》考试题库附答案(712题)
- 轿车胎分类知识
- doyouwanttobuildasnowman中英文歌词对照
- 化学元素周期表(空白)
- 9第九章细胞质遗传
- 物品出入库明细表格
- (完整word版)施工单位对分包单位的管理制度
- 谈微元法在高中物理解题中的应用
- 化工原理课程设计分离乙醇—水二元物系浮阀式精馏塔的设计
- 2021年眩晕急诊诊断与治疗指南(全文)
评论
0/150
提交评论