原创: 厦门微思网络

拓扑图:

【技术分享】EIGRP stub实验_网络工程师

R1配置:
router eigrp 100
 network 12.0.0.0
network 1.0.0.0
R2配置:
router eigrp 100
 network 12.0.0.0
 network 172.16.0.0
 redistribute rip metric 10000 100 255 1 1500
 redistribute static
router rip
 version 2
 network 192.168.1.0
 no auto-summary
ip route 8.8.8.8 255.255.255.255 Null0
R2(config)#interface e0/0
R2(config-if)#ip summary-address eigrp 100 172.16.0.0 255.255.0.


【技术分享】EIGRP stub实验_网络拓扑_02


R2(config-router)#eigrp stub 如果配置了默认的 只通过直连和汇总的

【技术分享】EIGRP stub实验_网络拓扑_03


R2(config-router)#eigrp stub connected 只通告直连的

【技术分享】EIGRP stub实验_网络拓扑_04


R2(config-router)#eigrp stub static 只通告静态的

【技术分享】EIGRP stub实验_网络拓扑_05


R2(config-router)#eigrp stub summary 只通告汇总路由

【技术分享】EIGRP stub实验_网络拓扑_06


R2(config-router)#eigrp stub redistributed 只通告重分布的路由,包括所有重分布

【技术分享】EIGRP stub实验_网络拓扑_07


R2(config-router)#eigrp stub receive-only (只接收不通告)

【技术分享】EIGRP stub实验_网络工程师_08