《网络与技术应用》 第(八)章-实验报告 |
|
实 验 任 务 |
浮动路由 |
详 细 实 验 步 骤 |
1.基本配置 r1(config)#no ip domain-lo r1(config)#line con 0 r1(config-line)#no exec-t r1(config-line)#logg s r1(config-line)# r1(config-line)# r1(config-line)#exit r1(config)#int e1/0 r1(config-if)#ip add 12.0.0.1 255.255.255.0 r1(config-if)#no sh r1(config-if)#int e1/2 r1(config-if)#ip add 12.0.1.1 255.255.255.0 r1(config-if)#no sh r1(config)#int e1/1 r1(config-if)#ip add 14.0.0.1 255.255.255.0 r1(config-if)#no sh r1(config-if)#router rip r1(config-router)#version 2 r1(config-router)#net 12.0.0.0 r1(config-router)#net 12.0.1.0 r1(config-router)#net 14.0.0.0 r1(config-router)#exit r1(config-if)#^Z r2(config)#no ip domain-lo r2(config)#line con 0 r2(config-line)#no exec-t r2(config-line)#logg s r2(config-line)# r2(config-line)#exit r2(config)#int e2/0 r2(config-if)#ip add 12.0.0.2 255.255.255.0 r2(config-if)#no sh r2(config-if)#int e2/1 r2(config-if)#ip add 12.0.1.2 255.255.255.0 r2(config-if)#no sh r2(config-if)#int e2/3 r2(config-if)#ip add 23.0.0.2 255.255.255.0 r2(config-if)#no sh r2(config-if)#router rip r2(config-router)#version 2 r2(config-router)#net 12.0.0.0 r2(config-router)#net 12.0.1.0 r2(config-router)#net 23.0.0. r2(config-router)#net 23.0.0.0 r2(config-router)#^Z r2# r3(config)#no ip domain-lo r3(config)#line con 0 r3(config-line)#no exec-t r3(config-line)#logg s r3(config-line)#exit r3(config)#no ip routing ——————关闭路由功能,将其模拟成主机 r3(config)#int e3/2 r3(config-if)#ip add 23.0.0.3 255.255.255.0 r3(config-if)#no sh r4(config)#no ip domain-lo r4(config)#line con 0 r4(config-line)#no exec-t r4(config-line)#logg s r4(config-line)#exit r4(config)#int e0/0 r4(config-if)#ip add 14.0.0.4 255.255.255.0 r4(config-if)#no sh r4(config)#no ip routing r4(config)# 2.查看路由表 r1#show ip rout Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set R 23.0.0.0/8 [120/1] via 12.0.1.2, 00:00:04, Ethernet1/2 [120/1] via 12.0.0.2, 00:00:18, Ethernet1/0 12.0.0.0/24 is subnetted, 2 subnets C 12.0.0.0 is directly connected, Ethernet1/0 C 12.0.1.0 is directly connected, Ethernet1/2 14.0.0.0/24 is subnetted, 1 subnets C 14.0.0.0 is directly connected, Ethernet1/1 r2#show ip rout Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set 23.0.0.0/24 is subnetted, 1 subnets C 23.0.0.0 is directly connected, Ethernet2/3 12.0.0.0/24 is subnetted, 2 subnets C 12.0.0.0 is directly connected, Ethernet2/0 C 12.0.1.0 is directly connected, Ethernet2/1 R 14.0.0.0/8 [120/1] via 12.0.1.1, 00:00:18, Ethernet2/1 [120/1] via 12.0.0.1, 00:00:00, Ethernet2/0 r2#conf t 3.测试连通性 R3#ping 14.0.0.4 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 14.0.0.4, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 52/80/116 ms R4#ping 23.0.0.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 23.0.0.3, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 40/65/84 ms 4.配置浮动路由 r1(config)#ip route 23.0.0.0 255.255.255.0 12.0.0.2 100 r2(config)#ip route 14.0.0.0 255.255.255.0 12.0.0.1 100 注意浮动路由的配置命令,在静态路由后面加一个0~255的管理距离 5.查看路由表 r1#clear ip route *————清除路由表 r1#show ip rout Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set R 23.0.0.0/8 [120/1] via 12.0.1.2, 00:00:02, Ethernet1/2 [120/1] via 12.0.0.2, 00:00:00, Ethernet1/0 12.0.0.0/24 is subnetted, 2 subnets C 12.0.0.0 is directly connected, Ethernet1/0 C 12.0.1.0 is directly connected, Ethernet1/2 14.0.0.0/24 is subnetted, 1 subnets C 14.0.0.0 is directly connected, Ethernet1/1 r2#clear ip route *————清除路由表 r2#show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set 23.0.0.0/24 is subnetted, 1 subnets C 23.0.0.0 is directly connected, Ethernet2/3 12.0.0.0/24 is subnetted, 2 subnets C 12.0.0.0 is directly connected, Ethernet2/0 C 12.0.1.0 is directly connected, Ethernet2/1 R 14.0.0.0/8 [120/1] via 12.0.1.1, 00:00:02, Ethernet2/1 [120/1] via 12.0.0.1, 00:00:02, Ethernet2/0 会发现,r1,r2上都没有刚才写的浮动路由,只有当rip协议down了之后,才能在路由表了看见指一条静态路由 6.关闭rip r1(config)#no router rip r1#show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set 23.0.0.0/24 is subnetted, 1 subnets S 23.0.0.0 [100/0] via 12.0.0.2 [100/0] via 12.0.0.0 12.0.0.0/24 is subnetted, 2 subnets C 12.0.0.0 is directly connected, Ethernet1/0 C 12.0.1.0 is directly connected, Ethernet1/2 14.0.0.0/24 is subnetted, 1 subnets C 14.0.0.0 is directly connected, Ethernet1/1 r1# 1) |
结 果 验 证 |
所有试验结果验证都附有截图。 |
问 题 及 分 析 |
试验过程中操作及验证没发现问题。 |
浮动路由
时间: 2024-10-02 14:40:10
浮动路由的相关文章
华为链路捆绑,Hybrid-VLAN,DHCP,浮动路由,三层交换
综合试验 实验构思图: 实验要求: 一. VLAN10成员可以和vlan20,30,40的成员通讯,其它vlan则不能互相通讯: 二. 让所以PC都能访问外网AR2: 三. 让PC4能够通过DHCP技术获得IP: 四. AR1和LSW3之间做一个备份链路捆绑: 五. 使用Hybrid-VLAN方法划分VLAN; 六. 让所有PC访问外网时通过13.0网段走,而12.0做为备份链路. 实验步骤: 1.俺图上要求给PC1,2,3配置上相应的I
新盟教育内部课程分享-浮动路由实验
制作专门适用于小白学习的内部教程,分享给童鞋们进行学习,有需要的可以联系我,加我的扣扣(二六三八一五七六四八),不图回报,请叫我雷锋. 一.实验目的 通过此实验掌握浮动路由原理,三台路由器上面链路运行 rip 动态路由协 议,rack01 和 rack03 通过以太口跑静态路由协议,观察静态路由和动态路由再 路由表的优先性. 利用管理距离在 1.1.1.1 与 2.2.2.2 通信时实现浮动路由及观 察故障切换. 二.实验步骤 Rack01基本配置: 接口配置: rack01(config)#i
”救命先生“----浮动路由
实验目的 设置浮动路由 实验拓扑 实验环境 两台路由器(型号为2621).两台交换机(型号为2960)和四台PC,还有两个路由器新模块(型号为NM-1FE-TX) 实验步骤 一.连接设备 路由器选择2621X型号,交换机选择2960型号,相同设备用交叉线(交换机除外),不同设备用直连线(计算机和路由器相连除外) 二. 设置PC的IP地址.子网掩码和默认网关 三.设置路由器的IP地址 四.设置外网IP地址 五.设置静态路由 六. Ping PC1到PC3和Ping PC3到PC1 七.在路由器上增
路由技术在企业当中的具体应用之一(静态,默认NAT及静态浮动路由)
今天会给大家带来一个新的技术介绍系列,这个系列的名字叫做"路由技术在企业当中的具体应用"这次就是这个技术文章系列的第一篇,"静态路由,默认路由NAT及静态浮动路由" 我想大家看到这几个名词的时候,一定不会陌生,无论你是学习思科认证体系的(CCNA-CCIE),还是学习华为认证体系的(HCNA-HCIE)的朋友可能在刚开始接触,或者学习网络,或者考取这些认证的朋友都有这样的想法. 上课的时候,老师在上面讲.老师的命令敲的很快,等敲完命令的时候,来一个PING.问同学,
浮动路由的配置
第9天:NSD 计算机网络 实验01:浮动路由的配置 实验目标:配置浮动静态路由,需设置管理距离大于1,从而成为备份路由,实现链 路冗余的作用 实验环境: 实验步骤: 一.配置左半边网段的IP为192.168.1.0,右半边网段的IP为192.168.3.0 二.根据网段分别配置四台主机的IP和网关,如图所示 三.为路由器配置模块 关闭路由器电源---装入模块----打开电源 四.两台路由器各个接口的IP配置如图所示 1.左边路由器接口的IP配置 2.右边路由器接口的IP配置
华为静态,默认,浮动路由
实验环境: 实验1:使用静态路由让AR1到AR4可以通信,指定到达某一个网段和通过的下一跳接口 [AR1]ip route-static 23.0.0.0 255.255.255.0 12.0.0.2 [AR1]ip route-static 34.0.0.0 255.255.255.0 12.0.0.2 [AR1]ip route-static 2.2.2.2 255.255.255.255 12.0.0.2 [AR1]ip route-static 3.3.3.3 255.255.255.2
配置浮动路由
实验目标: 熟练掌握绘制路由器的的拓扑结构并使用命令连通,实现与外部网络的连接和满足internet上网的需求. 实验环境: 在Cisco模拟器上开启四台PC机和两台交换机和两台台路由器,实现之间的连通.并且在路由器上添加浮动路由.路由器地址 R1:192.168.1.254 F0/1:192.168.4.1 F1/0:192.168.2.1 R2:192.168.3.254 F0/1:192.168.4.2 F1/0:192.168.2.2 网络拓扑: 实验步骤: 一: 配置IP地址 Pc0I
浮动路由配置
实验报告 实验名称:浮动路由 实验拓扑: 实验步骤: 1. 设置PCip地址和默认网关 2. 配置路由器接口ip地址 3. 添加静态路由: 4. 添加接口.配置浮动路由 实验结果: 浮动路由配置
路由器的静态路由和浮动路由的综合配置
实验拓扑: 实验步骤: (1) R1到192.168.2.0/24和192.168.23.0/24的路由只经过R2 (2) R2到192.168.1.0/24和192.168.13.0/24的路由只经过R1 (3) R3到192.168.1.0/24的路由只经过R1 (4) R3到192.168.2.0/24的路由只经过R2 (5) R3到192.168.12.0/24的路由经过R1或R2做负载均