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

简介: 该实验比较耗费精力,请做该实验前,准备好瓜子饮料!一、实验拓扑二、实验要求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

 

 

 

目录
相关文章
|
12天前
|
人工智能 开发者
【阅读十分钟,百分百成功】——通过大模型实现对客服回答的质量评估
本文章基于业务实践,总结有关客服质检场景的解决方案和处理经验,为相似场景提供可行的借鉴方法。
|
1月前
|
数据采集 机器人 计算机视觉
一手训练,多手应用:国防科大提出灵巧手抓取策略迁移新方案
【10月更文挑战第24天】国防科技大学研究人员提出了一种新颖的机器人抓取方法,通过学习统一的策略模型,实现不同灵巧夹具之间的策略迁移。该方法分为两个阶段:与夹具无关的策略模型预测关键点位移,与夹具相关的适配模型将位移转换为关节调整。实验结果显示,该方法在抓取成功率、稳定性和速度方面显著优于基线方法。论文地址:https://arxiv.org/abs/2404.09150
35 1
|
3月前
|
机器学习/深度学习 存储 算法
Optuna发布 4.0 重大更新:多目标TPESampler自动化超参数优化速度提升显著
Optuna,广受欢迎的超参数优化框架,近日发布了其第四个主要版本。自2018年问世以来,Optuna迅速成为机器学习领域的关键工具,目前拥有10,000+ GitHub星标、每月300万+下载量、16,000+代码库使用、5,000+论文引用及18,000+ Kaggle使用。Optuna 4.0引入了OptunaHub平台,支持功能共享;正式推出Artifact Store管理生成文件;稳定支持NFS的JournalStorage实现分布式优化;显著加速多目标TPESampler,并引入新Terminator算法。
165 9
Optuna发布 4.0 重大更新:多目标TPESampler自动化超参数优化速度提升显著
|
7月前
|
API Android开发 开发者
mPaaS问题之网络分析没有数据如何解决
mPaaS配置是指在mPaaS平台上对移动应用进行的各项设置,以支持应用的定制化和优化运行;本合集将提供mPaaS配置的操作指南和最佳实践,助力开发者高效管理和调整移动应用的设置。
|
7月前
|
数据挖掘 定位技术
基于Amos路径分析的模型修正与调整
基于Amos路径分析的模型修正与调整
293 2
|
监控 算法
转:如何使用模糊算法提高监控软件的性能
如何才能提高监控软件的性能呢?其实,咱们可以通过模糊算法从各个角度着手,让监控系统变得更聪明更高效。模糊逻辑就是那种对付那些有点儿模糊不太确定信息的法宝,它在解决一些莫名其妙的情况时可是大显身手。在监控软件的世界里,模糊逻辑也是个大明星,可以帮助我们做出更明智的决策和更敏捷的响应,然后整个系统就会变得特别厉害!
78 0
|
机器人 API 区块链
Pionex派网量化网格交易机器人开发策略部署[源码执行规则示例]
Pionex派网量化网格交易机器人开发策略部署[源码执行规则示例]
|
人工智能 数据可视化 人机交互
基于跨模态元迁移,美图&大连理工的参考视频目标分割方法只需单阶段
基于跨模态元迁移,美图&大连理工的参考视频目标分割方法只需单阶段
101 0
|
机器学习/深度学习 算法 机器人
盘点 | 从单目标优化到多目标优化,3D 打印材料开发进入 100X 倍速阶段
盘点 | 从单目标优化到多目标优化,3D 打印材料开发进入 100X 倍速阶段
142 0
|
机器学习/深度学习 存储 监控
如何在 20 天内损坏一个模型? 一个生产环境模型分析教程(Evidently)(上)
假设您训练了一个预测模型,并将其发布到生产环境。 现在,您依靠它来做出业务决策。您必须维护、重新训练并密切关注您的模型。 它会出现什么问题,以及如何跟踪? 让我们来看一个例子。这是一个关于我们如何训练模型、模拟生产环境使用并分析其逐渐退化的故事。