EIGRP 增強型內(nèi)部網(wǎng)關(guān)路由選擇協(xié)議

AR1:?e 0/0 ????12.1.1.1 24 ??????lo 0 ??????1.1.1.1 24
AR2:??e 0/1 ?????23.1.1.1.24 ?????lo 0 ??????2.2.2.2 24 ????e 0/0 ???12.1.1.2 24
AR3: ?e 0/0 ?????23.1.1.2 24 ?????lo 0 ??????3.3.3.3 24
本次實驗使用環(huán)回口模擬PC。
每臺路由器配置對應(yīng)的地址。命令如下圖自己配置一下。

R1啟用EIGRP
R1(config)#router eigrp 90開啟eigrp 進程號90
R1(config-router)#eigrp router-id 1.1.1.1給router設(shè)置ID ??有沒有RID,無所謂(同一進程內(nèi)不要有相同的RID)會造成同一RID的設(shè)備,彼此之間獲悉不到路由。
R1(config-router)#no auto-summary關(guān)閉自動匯總
R1(config-router)#network 12.1.1.1 0.0.0.0宣告接口加反碼
R1(config-router)#network 1.1.1.1 0.0.0.0

R2起為64位EIGRP(僅為大家演示)
注意:64位EIGRP和32位一樣可以建立鄰居。但是32位的進程號要和64位的AS號一致
R2(config)#router eigrp ccie創(chuàng)建進程名為?ccie
R2(config-router)#address-family ipv4 unicast autonomous-system 90設(shè)置進程AS 90
R2(config-router-af)#eigrp router-id 2.2.2.2 ??
R2(config-router-af)#topology base進入base
R2(config-router-af-topology)#no auto-summary關(guān)閉自動匯總?
R2(config-router-af-topology)#exit
R2(config-router-af)#no shutdown
R2(config-router-af)#network 2.2.2.2 ?0.0.0.0
R2(config-router-af)#network 12.1.1.2 0.0.0.0
R2(config-router-af)#network 23.1.1.1 0.0.0.0
這個時候在R2提示出了一條日志。有一個鄰居連接的e0/0口?地址??12.1.1.1 是ipv4 EIGRP進程號90
R2(config-router-af)#
*Dec 18 03:22:57.342: %DUAL-5-NBRCHANGE: EIGRP-IPv4 90: Neighbor 12.1.1.1 (Ethernet0/0) is up: new adjacency
R3啟用EIGRP

R3#show run | section eigrp查看EIGRP的配置。

R2#show ip eigrp neighbors ????????????????????????????查看EIGRP的鄰居

R2#show eigrp address-family ipv4 neighbors查看EIGRP IPv4鄰居詳細信息

上圖信息:
當(dāng)前關(guān)于AS 90我們建立了2個鄰居,?H 為鄰居的序列號從0開始越來越大
Address: ?為直連的鄰居的接口地址??
Interface: ?指本地連接鄰居的接口是那個接口
Hold: 3倍的hello時間???????????
Uptime: 指鄰居建立多長時間,
SRTT: 平滑的往返時間,測試router之間鏈路的質(zhì)量,從發(fā)送數(shù)據(jù)到返還ACK所需要的時間
RTO:? 重傳超時計時器,多久沒有回復(fù)ACK 我就要重傳。??
Q: 隊列的計數(shù)器???0代表OK,不是0就是鏈路有報文在擁塞排隊
Seq: 序列號的值,給鄰居發(fā)送最后一個報文序列號是多少???防止攻擊
Show命令補充:
R2#show ip eigrp neighbors查看鄰居表
R2#show ip eigrp topology查看topo表,標(biāo)記為P的路由代表可用
R2#show ip eigrp topology all-links查看topo內(nèi)所有路由。包含(最優(yōu)、次有、備份路由)
R2#show ip rou查看路由表,標(biāo)記為D的是Eigrp路由
測試:R1 Ping R3環(huán)回口,OK完成實驗。
