cisco路由器EIGRP自動匯總和手工匯總詳解
cisco路由器EIGRP自動匯總和手工匯總詳解
電腦使用很普遍,不少用戶對于路由器不少很了解,小編為大家介紹路由器相關(guān)文章,歡迎大家閱讀。
使用人工匯總的特點如下:
1.可以基于接口的配置匯總
2.當在接口做了人工匯總以后,路由器將創(chuàng)建一條指向null0口的路由,這樣做是為了防止路由循環(huán)
3.當匯總之前的路由down掉以后,匯總路由將自動從路由表里被刪除
4.匯總路由的度取決于特定路由中度最小的來做為自己的度
自動匯總能不能匯總學(xué)來的路由?
在三臺路由器上用EIGRP全部宣告出去后,在R3上查看路由表出現(xiàn)的明細的路由條目,有R1的4個loopback口的子網(wǎng)地址。
D: 1.1.0.0/22路由
手工匯總能不能匯總學(xué)來的路由?
R1:
R1(config)#router eigrp 90:
R1(config-router)#network 1.1.1.0
R1(config-router)#network 1.2.1.0
R1(config-router)#network 1.3.1.0
R1(config-router)#network 1.4.1.0
R1(config-router)#network 12.0.0.0
R1(config-router)#no auto-summary
//在EIGRP進程下關(guān)閉自動匯總
R2:
R2(config)#router eigrp 90
R2(config-router)#network 12.0.0.0
R2(config-router)#network 23.0.0.0
R2(config-router)#no auto-summary //關(guān)閉自動匯總
再進入R2的s2/3街接口下,做手工匯總,將R1的4個loopback口地址匯總成1.1.0.0/22的網(wǎng)絡(luò).(在出接口做比較明顯)
R2(config)#int s2/3:
R2(config-if)#ip summary-address eigrp 90 1.1.0.0 255.255.252.0
R3:
R3(config)#router eigrp 90
R3(config-router)#network 3.3.3.0
R3(config-router)#network 23.0.0.0
設(shè)置好后,再R3上查看路由表會出現(xiàn)一條:
D:1.1.0.0/22路由
自動匯總能不能學(xué)習(xí)匯總路由?
還是在R3上查看路由表會出現(xiàn)R1的:D: 1.0.0.0/8 一條路由。
手工匯總能不能學(xué)習(xí)匯總路由?
R1:
R1(config)#router eigrp 90
R1(config-router)#network 1.1.1.0
R1(config-router)#network 1.2.1.0
R1(config-router)#network 1.3.1.0
R1(config-router)#network 1.4.1.0
R1(config-router)#network 12.0.0.0
R1(config-router)#no auto-summary
//在EIGRP進程下關(guān)閉自動匯總
再進入R1的s1/2街接口下,做手工匯總,將R1的4個loopback口地址匯總成1.1.0.0/22的網(wǎng)絡(luò).(在出接口做比較明顯)
R1(config)#int s1/2:
R1(config-if)#ip summary-address eigrp 90 1.1.0.0 255.255.252.0
R2:
R2(config)#router eigrp 90
R2(config-router)#network 12.0.0.0
R2(config-router)#network 23.0.0.0
R2(config-router)#no auto-summary //關(guān)閉自動匯總
再進入R2的s2/3街接口下,做手工匯總,將R1的4個loopback口地址匯總成1.1.0.0/22的網(wǎng)絡(luò).(在出接口做比較明顯)
R2(config)#int s2/3:
R2(config-if)#ip summary-address eigrp 90 1.1.0.0 255.255.252.0
R3:
R2(config)#router eigrp 90
R2(config-router)#network 12.0.0.0
R2(config-router)#network 23.0.0.0
R2(config-router)#no auto-summary //關(guān)閉自動匯總
再進入R2的s2/3街接口下,做手工匯總,將R1的4個loopback口地址匯總成1.1.0.0/22的網(wǎng)絡(luò).(在出接口做比較明顯)
R2(config)#int s2/3:
R2(config-if)#ip summary-address eigrp 90 1.1.0.0 255.255.252.0
設(shè)置好后,再R3上查看路由表會出現(xiàn)一條:
D: 1.1.0.0/22路由
.