1.router eigrp 程序編號id
id:1~65535,在同乙個eigrp域內,所有的路由器都必須使用相同的id編號.
2.network 網路位址
3.show ip eigrp neighbors
4.show ip protocols
5.show ip route
6.show inte***ce
7.bandwidth頻寬值
eigrp除錯命令
show run | begin router eigrp //檢視配置檔案中eigrp的配置命令
show ip protocols //檢視當前路由器執行的eigrp協議狀態
show ip route summary //檢視eigrp路由彙總狀態
show ip eigrp neighbors //檢視eigrp鄰居狀態
show ip eigrp inte***ce //檢視各個執行eigrp的介面狀態
show ip eigrp inte***ce detail //檢視各個執行eigrp的介面詳細狀態
show ip route eigrp //檢視eigrp協議許欸小到的路由表
show ip eigrptopology //檢視eigrp的拓撲表
show ip eigrptopology all - links //檢視eigrp完整的拓撲表
show ip eigrptopglogy 10.1.1.0 255.255.255.0 //檢視指定的某個網路引數資訊
debug eigrp packets //除錯eigrp的查詢包
debug eigrp fsm //除錯eigrp的dual資訊
router1
router eigrp 100
no auto-summary
network 10.0.0.0
network 20.0.0.0
end100是自治系統號
router2
router eigrp 100
no auto-summary
network 10.0.0.0
network 172.0.0.0
endrouter3
router eigrp 100
no auto-summary
network 20.0.0.0
network 172.0.0.0
endshow ip route
show ip route eigrp
show ip protocols
show ip eigrp topology
show ip eigrp neighbors
ipv6的eigrp
eigrp使用新的型別卡度值(type-length-value,tlv)來攜帶ipv6路由資訊
(1)eigrp ipv6程序直接執行在介面上,並沒有類似ipv4下的network命令.
只要介面下啟用了eigrp,不需要在路由器模式下配置任何命令,就可以執行
(2)eigrp需要路由器id號,這個id號就是ipv4位址
(3)介面在被動(passive)模式下不需要配置ipv6程序
(4)eigrpv6程序可以關閉
配置eigrpv6命令
ipv6 unicast-routing
ipv6 router eigrp 自治區編號 //在指定編號的整個自治區內啟用eigrpv6程序
router - id id號 //配置路由器id號
ipv6 eigrp 自治區編號 //在介面上啟用eigrpv6程序
ipv6 enable //在介面上啟用ipv6
測試eigrpv6命令
show ipv6 protocols //檢視當前執行的路由協議
show ipv6 route //檢視完整的路由表
show ipv6 route eigrp //僅檢視路由表中的eigrp路由
show ipv6 eigrp neighbors //檢視eigrp協議的鄰居表
show ipv6 eigrp topology //檢視eigrp協議的拓撲表
show ipv6 eigrp traffic //檢視eigrp收發資料報的次數
show ip eigrptopology //檢視eigrp的拓撲表
ping ipv6位址 //測試網路的連通性
router1
ipv6 unicast-routing
ipv6 router eigrp 100
router-id 1.1.1.1
no shutdown
exit
inte***ce f0/0
ipv6 address 1000::1/64
ipv6 enable
ipv6 eigrp 100
exit
inte***ce f0/1
ipv6 address 2000::1/64
ipv6 enable
ipv6 eigrp 100
endrouter2
ipv6 unicast-routing
ipv6 router eigrp 100
router-id 2.2.2.2
no shutdown
exit
inte***ce f0/0
ipv6 address 1000::2/64
ipv6 enable
ipv6 eigrp 100
exit
inte***ce f0/1
ipv6 address f800::1/64
ipv6 enable
ipv6 eigrp 100
endrouter3
ipv6 unicast-routing
ipv6 router eigrp 100
no shutdown
exit
inte***ce f0/0
ipv6 address 2000::2/64
ipv6 enable
ipv6 eigrp 100
exit
inte***ce f0/1
ipv6 address f800::2/64
ipv6 enable
ipv6 eigrp 100
end驗證
show ipv6 protocols
檢視鄰居表
show ipv6 eigrp neighbors
檢視拓撲表
show ipv6 eigrp topology
檢視路由表
show ipv6 route
測試ipv6網路的連通性
ping 1000::2
ping 2000::2
ping f800::2
EIGRP 單播配置
r1與r2配置單播後,它們與r3之間就不能更新路由了,因此也學不到r3中的路由。實驗圖 按照上圖網路網路介面及eigrp,然後配置r1與r2之間實現單播更新。r1 router eigrp 1 network 0.0.0.0 auto summary neighbor 10.0.0.2 fastet...
實驗六 EIGRP協議配置
eigrp協議屬於路由協議的一種,cisco私有,前身是igrp,增加的 e 意為 增強型 增強型內部閘道器路由協議。拓撲圖 如圖,相關ip已經配置好。下面進行eigrp的相關設定,在全域性模式下 router eigrp 100 net 直連網路的網路號 auto summary或者no auto...
實驗十 配置EIGRP協議
實驗十配置eigrp協議 實驗目的 1 了解混合路由選擇協議的工作原理,使用的度量值,2 了解eigrp協議的優點,掌握eigrp路由協議的配置方法。實驗裝置 三颱cisco路由器,三颱pc,三根雙絞線,兩根serial連線。實驗內容與步驟 1 首先熟悉書上關於eigrp路由協議的知識,掌握eigr...