自制割接(平滑过滤)实验大全

简介: 该实验比较耗费精力,请做该实验前,准备好瓜子饮料!一、实验拓扑二、实验要求1.全网EIGRP as =1 auto-summary开启2.ospf 0,1,12 建立3.

该实验比较耗费精力,请做该实验前,准备好瓜子饮料!

一、实验拓扑

二、实验要求

1.全网EIGRP as =1 auto-summary开启

2.ospf 0,1,12 建立

3.R5,R6 eigrp 1 no auto-summary

4.所有网络PING通

 

三、实验步骤

 

步骤一:

基本配置(全网eigrp已配置)

R1:

R1#conf t

R1(config)#int e0/0

R1(config-if)#ip add 12.12.12.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#int e0/1

R1(config-if)#ip add 20.2.2.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#int lo0

R1(config-if)#ip add 1.1.1.1 255.255.255.0

R1(config-if)#end

 

R1(config)#router eigrp 1

R1(config-router)#eigrp router-id 1.1.1.1

R1(config-router)#net 1.1.1.1 0.0.0.0

R1(config-router)#net 20.2.2.1 0.0.0.0

R1(config-router)#net 12.12.12.1 0.0.0.0

 

R2:

R2#CONF T

R2(config)#int e0/0

R2(config-if)#ip add 12.12.12.2 255.255.255.0

R2(config-if)#no shut

R2(config-if)#int lo0

R2(config-if)#ip add 2.2.2.2 255.255.255.0

R2(config-if)#end

 

R2#conf t

R2(config)#router eigrp 1

R2(config-router)#eigrp rou

R2(config-router)#eigrp router-id 2.2.2.2

R2(config-router)#net 2.2.2.2 0.0.0.0

R2(config-router)#net 12.12.12.2 0.0.0.0

R2(config-router)#end

R3:

R3#CONF T

R3(config)#INT E0/0

R3(config-if)#IP ADD 10.1.1.3 255.255.255.0

R3(config-if)#no shut

R3(config-if)#int e0/1

R3(config-if)#ip add 20.2.2.3 255.255.255.0

R3(config-if)#no shut

R3(config-if)#int lo0

R3(config-if)#ip add 3.3.3.3 255.255.255.0

R3(config-if)#no shut

 

R3(config)#router eigrp 1

R3(config-router)network 3.3.3.3 0.0.0.0

R3(config-router)network 10.1.1.3 0.0.0.0

R3(config-router)network 20.2.2.3 0.0.0.0

R3(config-router)eigrp router-id 3.3.3.3

 

R4:

R4#CONF T

R4(config)#int e0/0

R4(config-if)#ip add 10.1.1.4 255.255.255.0

R4(config-if)#no shut

R4(config-if)#int e0/1

R4(config-if)#ip add 20.2.2.4 255.255.255.0

R4(config-if)#no shut

R4(config-if)#int lo0

R4(config-if)#ip add 4.4.4.4 255.255.255.0

R4(config-if)#end

 

R4#conf t

R4(config)#router eigrp 1

R4(config-router)#eigrp router-id 4.4.4.4

R4(config-router)#net 4.4.4.4 0.0.0.0

R4(config-router)#net 10.1.1.4 0.0.0.0

R4(config-router)#net 20.2.2.4 0.0.0.0

 

R5:

R5#conf t

R5(config)#int e0/0

R5(config-if)#ip add 10.1.1.5 255.255.255.0

R5(config-if)#no shut

R5(config-if)#int e0/1

R5(config-if)#ip add 56.56.56.5 255.255.255.0

R5(config-if)#no shut

R5(config-if)#int lo0

R5(config-if)#ip add 5.5.5.5 255.255.255.0

R5(config-if)#end

 

R5#conf t

R5(config)#router eigrp 1

R5(config-router)#eigrp router-id 5.5.5.5

R5(config-router)#net 10.1.1.5 0.0.0.0

R5(config-router)#net 56.56.56.5 0.0.0.0

R5(config-router)#net 5.5.5.5 0.0.0.0

R5(config-router)#end

 

R6:

R6#conf t

R6(config)#int e0/1

R6(config-if)#ip add 56.56.56.6 255.255.255.0

R6(config-if)#no shut

R6(config-if)#int lo0

R6(config-if)#ip add 6.6.6.6 255.255.255.0

R6(config-if)#end

 

R6#conf t

R6(config)#router eigrp 1

R6(config-router)#eigrp router-id 6.6.6.6

R6(config-router)#net 6.6.6.6 0.0.0.0

R6(config-router)#net 56.56.56.6 0.0.0.0

R6(config-router)#end

 

检验:

R6#show ip route eigrp

D 1.0.0.0/8 [90/460800] via 56.56.56.5, 00:40:23, Ethernet0/1

D 2.0.0.0/8 [90/486400] via 56.56.56.5, 00:40:23, Ethernet0/1

D 3.0.0.0/8 [90/435200] via 56.56.56.5, 00:40:23, Ethernet0/1

D 4.0.0.0/8 [90/435200] via 56.56.56.5, 00:40:23, Ethernet0/1

D 20.0.0.0/8 [90/332800] via 56.56.56.5, 00:40:23, Ethernet0/1

D 5.0.0.0/8 [90/409600] via 56.56.56.5, 00:40:23, Ethernet0/1

6.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D 6.0.0.0/8 is a summary, 00:40:26, Null0

D 10.0.0.0/8 [90/307200] via 56.56.56.5, 00:40:23, Ethernet0/1

56.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D 56.0.0.0/8 is a summary, 00:40:25, Null0

D 12.0.0.0/8 [90/358400] via 56.56.56.5, 00:40:23, Ethernet0/1

 

Ping 2.2.2.2 so 6.6.6.6 通!

 

步骤二:

建立OSPF

R2:

R2#conf t

R2(config)#router ospf 1

R2(config-router)#router-id 2.2.2.2

R2(config-router)#net 2.2.2.2 0.0.0.0 area 12

R2(config-router)#net 12.12.12.0 0.0.0.255 area 12

R2(config-router)#int lo0

R2(config-if)#ip ospf network point-to-point

 

R1:

R1#conf t

R1(config)#router ospf 1

R1(config-router)#router-id 1.1.1.1

R1(config-router)#net 1.1.1.1 0.0.0.0 a 1

R1(config-router)#net 20.2.2.0 0.0.0.255 a 1

R1(config-router)#net 12.12.12.0 0.0.0.255 a 12

R1(config-router)#int lo0

R1(config-if)#ip ospf net point-to-point

 

R3:

R3#conf t

R3(config)#router ospf 1

R3(config-router)#router-id 3.3.3.3

R3(config-router)#net 3.3.3.3 0.0.0.0 a 0

R3(config-router)#net 10.1.1.0 0.0.0.255 a 0

R3(config-router)#net 20.2.2.0 0.0.0.255 a 1

R3(config)#int lo0

R3(config-if)#ip ospf net point-to-point

 

R4:

R4#conf t

R4(config)#router ospf 1

R4(config-router)#router-id 4.4.4.4

R4(config-router)#net 4.4.4.4 0.0.0.0 a 0

R4(config-router)#net 10.1.1.0 0.0.0.255 a 0

R4(config-router)#net 20.2.2.0 0.0.0.255 a 1

R4(config-router)#int lo0

R4(config-if)#ip ospf net point-to-point

 

 

R5:

R5#CONF T

R5(config)#router ospf 1

R5(config-router)#router-id 5.5.5.5

R5(config-router)#net 10.1.1.0 0.0.0.255 a 0

R5(config-router)#net 5.5.5.5 0.0.0.0 a 0

R5(config-router)#exit

R5(config)#int lo0

R5(config-if)#ip ospf net point

R5(config-if)#ip ospf net point-to-point

 

步骤三:

建立虚电路

R1

R1(config)#router ospf 1

R1(config-router)#area 1 virtual-link 3.3.3.3

R1(config-router)#area 1 virtual-link 4.4.4.4

 

R4:

R4(config)#router ospf 1

R4(config-router)#area 1 virtual-link 1.1.1.1

 

R3:

R3(config)#router ospf 1

R3(config-router)#area 1 virtual-link 1.1.1.1

 

检验:

R2#show ip route ospf

1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 1.1.1.0/24 [110/11] via 12.12.12.1, 00:05:19, Ethernet0/0

3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 3.3.3.0/24 [110/21] via 12.12.12.1, 00:03:41, Ethernet0/0

4.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 4.4.4.0/24 [110/21] via 12.12.12.1, 00:03:45, Ethernet0/0

20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 20.2.2.0/24 [110/20] via 12.12.12.1, 00:05:19, Ethernet0/0

5.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 5.5.5.0/24 [110/31] via 12.12.12.1, 00:03:45, Ethernet0/0

10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 10.1.1.0/24 [110/30] via 12.12.12.1, 00:03:45, Ethernet0/0

 

R5#show ip route ospf

1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 1.1.1.0/24 [110/21] via 10.1.1.4, 00:05:17, Ethernet0/0

[110/21] via 10.1.1.3, 00:05:17, Ethernet0/0

2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 2.2.2.0/24 [110/31] via 10.1.1.4, 00:05:17, Ethernet0/0

[110/31] via 10.1.1.3, 00:05:17, Ethernet0/0

3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O 3.3.3.0/24 [110/11] via 10.1.1.3, 00:05:17, Ethernet0/0

4.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O 4.4.4.0/24 [110/11] via 10.1.1.4, 00:05:17, Ethernet0/0

20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 20.2.2.0/24 [110/20] via 10.1.1.4, 00:05:17, Ethernet0/0

[110/20] via 10.1.1.3, 00:05:17, Ethernet0/0

12.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 12.12.12.0/24 [110/30] via 10.1.1.4, 00:05:17, Ethernet0/0

[110/30] via 10.1.1.3, 00:05:17, Ethernet0/0

 

步骤四:

改大eigrp的管理距离

R2:

R2(config)#access-list 40 permit any

R2(config)#router eigrp 1

R2(config-router)#distance 111 12.12.12.1 0.0.0.0 40

 

R1:

R1(config)#access-list 40 permit any

R1(config)#router eigrp 1

R1(config-router)#distance 111 12.12.12.2 0.0.0.0 40

R1(config-router)#distance 111 12.12.12.2 0.0.0.0 40

 

R3:

R3(config)#access-list 40 permit any

R3(config)#router eigrp 1

R3(config-router)#distance 111 10.1.1.3 0.0.0.0 40

R3(config-router)#distance 111 10.1.1.5 0.0.0.0 40

R3(config-router)#distance 111 10.1.1.3 0.0.0.0 40

R3(config-router)#distance 111 10.1.1.5 0.0.0.0 40

 

R4:

R4(config)#access-list 40 permit any

R4(config)#router eigrp 1

R4(config-router)#distance 111 20.2.2.1 0.0.0.0 40

R4(config-router)#distance 111 20.2.2.3 0.0.0.0 40

R4(config-router)#distance 111 10.1.1.3 0.0.0.0 40

R4(config-router)#distance 111 10.1.1.5 0.0.0.0 40

 

R5:

R5(config)#access-list 40 permit any

R5(config)#router eigrp 1

R5(config-router)#distance 111 10.1.1.3 0.0.0.0 40

R5(config-router)#distance 111 10.1.1.4 0.0.0.0 40

 

步骤五:

重分发

 

R5(config)#router ospf 1

R5(config-router)#redistribute eigrp 1 subnets metric 30

R5(config)#router eigrp 1

R5(config-router)#redistribute ospf 1 metric 10000 100 255 1 1500

 

检验:

Ping 6.6.6.6 so 2.2.2.2

Ping 2.2.2.2 so 6.6.6.6

 

R6#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

 

1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D EX 1.1.1.0/24 [170/307200] via 56.56.56.5, 00:01:20, Ethernet0/1

D 1.0.0.0/8 [90/460800] via 56.56.56.5, 00:01:20, Ethernet0/1

2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D EX 2.2.2.0/24 [170/307200] via 56.56.56.5, 00:01:20, Ethernet0/1

D 2.0.0.0/8 [90/486400] via 56.56.56.5, 00:00:00, Ethernet0/1

3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D EX 3.3.3.0/24 [170/307200] via 56.56.56.5, 00:01:20, Ethernet0/1

D 3.0.0.0/8 [90/435200] via 56.56.56.5, 00:01:22, Ethernet0/1

4.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D EX 4.4.4.0/24 [170/307200] via 56.56.56.5, 00:01:22, Ethernet0/1

D 4.0.0.0/8 [90/435200] via 56.56.56.5, 00:01:22, Ethernet0/1

20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D EX 20.2.2.0/24 [170/307200] via 56.56.56.5, 00:01:37, Ethernet0/1

D 20.0.0.0/8 [90/332800] via 56.56.56.5, 00:01:37, Ethernet0/1

D 5.0.0.0/8 [90/409600] via 56.56.56.5, 00:01:37, Ethernet0/1

6.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

C 6.6.6.0/24 is directly connected, Loopback0

D 6.0.0.0/8 is a summary, 00:01:18, Null0

D 10.0.0.0/8 [90/307200] via 56.56.56.5, 00:01:37, Ethernet0/1

56.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

C 56.56.56.0/24 is directly connected, Ethernet0/1

D 56.0.0.0/8 is a summary, 00:01:18, Null0

12.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D EX 12.12.12.0/24 [170/307200] via 56.56.56.5, 00:01:37, Ethernet0/1

D 12.0.0.0/8 [90/358400] via 56.56.56.5, 00:01:37, Ethernet0/1

 

 

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

 

1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 1.1.1.0/24 [110/11] via 12.12.12.1, 01:20:53, Ethernet0/0

O E2 1.0.0.0/8 [110/30] via 12.12.12.1, 00:14:04, Ethernet0/0

2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

C 2.2.2.0/24 is directly connected, Loopback0

D 2.0.0.0/8 is a summary, 04:26:35, Null0

3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 3.3.3.0/24 [110/21] via 12.12.12.1, 01:19:15, Ethernet0/0

O E2 3.0.0.0/8 [110/30] via 12.12.12.1, 00:14:06, Ethernet0/0

4.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 4.4.4.0/24 [110/21] via 12.12.12.1, 01:19:22, Ethernet0/0

O E2 4.0.0.0/8 [110/30] via 12.12.12.1, 00:14:06, Ethernet0/0

20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 20.2.2.0/24 [110/20] via 12.12.12.1, 01:20:57, Ethernet0/0

O E2 20.0.0.0/8 [110/30] via 12.12.12.1, 00:14:08, Ethernet0/0

5.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 5.5.5.0/24 [110/31] via 12.12.12.1, 01:19:24, Ethernet0/0

O E2 5.0.0.0/8 [110/30] via 12.12.12.1, 00:05:24, Ethernet0/0

O E2 6.0.0.0/8 [110/30] via 12.12.12.1, 00:02:29, Ethernet0/0

10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O IA 10.1.1.0/24 [110/30] via 12.12.12.1, 01:19:24, Ethernet0/0

O E2 10.0.0.0/8 [110/30] via 12.12.12.1, 00:14:08, Ethernet0/0

56.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

O E2 56.56.56.0/24 [110/30] via 12.12.12.1, 00:03:52, Ethernet0/0

O E2 56.0.0.0/8 [110/30] via 12.12.12.1, 00:03:51, Ethernet0/0

12.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

C 12.12.12.0/24 is directly connected, Ethernet0/0

D 12.0.0.0/8 is a summary, 04:26:39, Null0

 

步骤六:

取消ospf内的eigrp路由协议

R1~R4:no router eigrp 1

 

步骤七:

取消自动汇总

R5(config)#router eigrp 1

R5(config-router)#no auto

R5(config-router)#no auto-summary

 

R6(config)#router eigrp 1

R6(config-router)#no auto

R6(config-router)#no auto-summary

 

步骤八:

ospf内流量分行

R5R3→R1 备份:R5→R4R1

R1→R4R5备份: R5R3→R1

 

 

 

目录
相关文章
|
28天前
|
机器学习/深度学习 存储 测试技术
从0到1:如何规划一套流量回放自动化测试方案
本文介绍了流量回放自动化测试的完整方法,从企业战略到交付的四个关键环节:Discovery(深度挖掘)、Define(定义目标)、Design(详细设计)和Delivery(交付与反馈)。通过这些步骤,帮助企业优化系统性能和稳定性,确保产品的高质量。
48 4
|
3月前
跨项目度量问题之了解各项目的存量工作量如何解决
跨项目度量问题之了解各项目的存量工作量如何解决
|
监控 算法
转:如何使用模糊算法提高监控软件的性能
如何才能提高监控软件的性能呢?其实,咱们可以通过模糊算法从各个角度着手,让监控系统变得更聪明更高效。模糊逻辑就是那种对付那些有点儿模糊不太确定信息的法宝,它在解决一些莫名其妙的情况时可是大显身手。在监控软件的世界里,模糊逻辑也是个大明星,可以帮助我们做出更明智的决策和更敏捷的响应,然后整个系统就会变得特别厉害!
73 0
|
JSON 监控 安全
分享一例有意思的灰度设计缺陷,浅谈灰度方案的设计
灰度很重要,灰度的策略也需要结合实际情况进行灵活的调整,本文跟大家分享了一个前些时间发现的灰度设计bug。
|
调度 vr&ar
开源代码分享(4)—考虑自动重合闸与DG的配电网可靠性评估
电力系统的可靠性是现代电力系统规划、设计和运行中的一个关键方面。智能电网概念的崛起为开发一个能够成为自愈电网的智能网络带来了很高的希望,提供了克服效用面临的中断问题的能力,并花费了数千万美元的维修和损失。在这项工作中,我们开发了一个MATLAB代码,通过蒙特卡罗模拟方法来检验智能电网应用在提高配电网可靠性方面的影响。本文采用的系统为IEEE 34试验馈线。目的是测量自动重合闸器在可靠性指标SAIDI、SAIFI、CAIDI和EUE(ARs)、分布式发电机(DGs)上的安装。
|
存储 运维 监控
网络质量分析器-应用发布
网络质量分析器是一款针对真实终端用户网络质量性能进行分析的 SaaS 服务。用户可以将网络质量分析器的 SDK 插件集成到App 中,实时感知所有 App 真实用户在线情况、访问互联网的网络质量情况。网络质量分析器提供从在线终端设备发起到您目标服务器的网络质量探测分析,帮助终端用户进行网络问题排查诊断。
440 0
网络质量分析器-应用发布
|
机器学习/深度学习 算法 机器人
盘点 | 从单目标优化到多目标优化,3D 打印材料开发进入 100X 倍速阶段
盘点 | 从单目标优化到多目标优化,3D 打印材料开发进入 100X 倍速阶段
138 0
|
开发框架 运维 Kubernetes
应用发布新版本如何保障业务流量无损(二)| 学习笔记
快速学习应用发布新版本如何保障业务流量无损
应用发布新版本如何保障业务流量无损(二)| 学习笔记
|
缓存 Kubernetes 容灾
应用发布新版本如何保障业务流量无损(一)| 学习笔记
快速学习应用发布新版本如何保障业务流量无损
应用发布新版本如何保障业务流量无损(一)| 学习笔记
|
缓存 监控 网络协议
MSE 风险分布管理功能发布(二)| 学习笔记
快速学习 MSE 风险分布管理功能发布。
MSE 风险分布管理功能发布(二)| 学习笔记