R1上Lo1 : 172.16.0.1/24 R1、R2、R3之间网段为192.168.xy.0/24
Lo2 : 172.16.1.1/24
Lo3 : 172.16.2.1/24
Lo4 : 172.16.3.1/24
需求:
1、 R1的RID为1.1.1.1,R2的RID为2.2.2.2,将OSPF重分布进EIGRP 100内;
2、 重分布时拒绝1.1.1.1/32、2.2.2.2/32、192.168.12.0/24条目进入EIGRP;
(使用access-list、prefix-list、route-map多种方法实现)
3、 R1上使用summary-address命令将172.16.0.1/24-->172.16.3.1/24聚合为172.16.0.0/22
=====================================================
解决方案:
需求1 :
R1(config)#router ospf 1
R1(config-router)#router-id 1.1.1.1
R1(config-router)#network 1.1.1.1 0.0.0.0 area 0
R1(config-router)#network 192.168.12.0 0.0.0.255 area 0
R1(config-router)#network 172.16.0.0 0.0.3.255 area 0

R2(config)#router ospf 1
R2(config)#router-id 2.2.2.2
R2(config-router)#network 2.2.2.2 0.0.0.0 area 0
R2(config-router)#network 192.168.12.0 0.0.0.255 area 0
R2(config)#ro