需求一:如图。全网运行EIGRP,关闭自动汇总,除了R2环回接口2.2.2.2/24在EIGRP10中运行,其他路由器的直连接口和loopback接口均network到EIGRP100中;

需求二:完成以上配置后,在R1/2/4上观察是否有关于172.16.0.0 的5条详细路由,如果有,请把他们汇总成为一条172.16.0.0/21的汇总路由条目;

需求三:在R1上观察到34网段是否有2个下一跳,手工在R1的S0/0上,将延迟配置为150,

再次观察是否还有两个下一跳,配置variance,使R1实现非等价负载均衡,再次观察R1是否又变成两个下一跳;

需求四:在R3上观察,是否能够收到2.2.2.2的路由为什么,怎样配置才能收到该路由;

 

R1:
en
conf t
host R1
no ip domain-lo
line con 0
exec-t 0 0
exit
int lo0
ip add 1.1.1.1 255.255.255.0
int s0/0
ip add 13.13.13.1 255.255.255.0
delay 150                             \\设置延时为1500.需求三
no sh
int s0/1
ip add 14.14.14.1 255.255.255.0
no sh
exit
router eigrp 100
no au
net 1.1.1.0 0.0.0.255
net 14.14.14.0 0.0.0.255
net 13.13.13.0 0.0.0.255
variance 2                              \\设置variance值,需求三
end
wr

R2:
en
conf t
host R2
no ip domain-lo
line con 0
exec-t 0 0
exit
int lo0
ip add 2.2.2.2 255.255.255.0
int s0/0
ip add 24.24.24.1 255.255.255.0
no sh
int s0/1
ip add 23.23.23.1 255.255.255.0
no sh
exit
router eigrp 100
no au
net 24.24.24.0 0.0.0.255
net 23.23.23.0 0.0.0.255
redis eigrp 10 metric 1000 100 255 1 1500       \\路由重分发.需求四
exit
router eigrp 10
no au
net 2.2.2.0 0.0.0.255
end
wr

R3:
en
conf t
host R3
no ip domain-lo
line con 0
exec-t 0 0
exit
int lo0
ip add 3.3.3.3 255.255.255.0
int lo1
ip add 172.16.1.1 255.255.255.0
int lo2
ip add 172.16.2.1 255.255.255.0
int lo3
ip add 172.16.3.1 255.255.255.0
int lo4
ip add 172.16.4.1 255.255.255.0
int lo5
ip add 172.16.5.1 255.255.255.0
int s0/0
ip add 13.13.13.2 255.255.255.0
clock rate 128000
ip sum eigrp 100 172.16.0.0 255.255.248.0          \\在接口下手动汇总
no sh
int s0/1
ip add 23.23.23.2 255.255.255.0
clock rate 128000
ip sum eigrp 100 172.16.0.0 255.255.248.0
no sh
int s0/2
ip add 34.34.34.1 255.255.255.0
clock rate 128000
ip sum eigrp 100 172.16.0.0 255.255.248.0
no sh
exit
router eigrp 100
no au
net 3.3.3.0 0.0.0.255
net 34.34.34.0 0.0.0.255
net 13.13.13.0 0.0.0.255
net 23.23.23.0 0.0.0.255
net 172.16.0.0 0.0.7.255
end
wr

R4:
en
conf t
host R4
no ip domain-lo
line con 0
exec-t 0 0
exit
int lo0
ip add 4.4.4.4 255.255.255.0
int s0/0
ip add 14.14.14.2 255.255.255.0
no sh
int s0/1
ip add 24.24.24.2 255.255.255.0
no sh
int s0/2
ip add 34.34.34.2 255.255.255.0
no sh
exit
router eigrp 100
no au
net 4.4.4.0 0.0.0.255
net 14.14.14.0 0.0.0.255
net 34.34.34.0 0.0.0.255
net 24.24.24.0 0.0.0.255
end
wr