Ⅰ OSPF中的hello包裡麵包含十個信息詳解,懂的請進
hello時間:發送hello的時間間隔,也就是周期
dead時間:ospf鄰居失效時間,在dead時間內沒收到hello的話,就會斷開鄰居關系
RID:router id,標識路由器用
DR:指定路由器
BDR:備份指定路由器
優先順序:在MA網段中用來選舉DR/BDR
區域:area,ospf是分區域的,這里用來標識區域,不同區域不能建鄰居
認證:authentication,ospf的認證信息
特色區域:沒什麼印象
查資料就好了唄,網上到處都是資料
Ⅱ ospf 中hello是什麼什麼意思
OSPF是發hello包發現和建立鄰居的。沒什麼特別的用處,在廣播環境中用於選取DR和BDR,鄰居建立以後也用於保活。廣播環境中式10s一發,而在NBMA環境中式30S一發。虛鏈路和按需鏈路不發~謝謝
Ⅲ 如何過濾ospf中的lsa3
過濾進入某AREA的LSA3
Command Purpose
Router(config)# router ospf process-id
Configures the router to run an OSPF process.
Router(config-router)# area area-id filter-list prefixprefix-list-name in
Configures the router to filter interarea routes into the specified area.
Router(config-router)# ip prefix-list list-name [seq seq-value] deny |
permit network/len [ge ge-value] [le le-value]
Creates a prefix list with the name specified for thelist-name argument.
過濾從某AREA出去的LSA3
Router(config)# router ospf process-id
Configures the router to run an OSPF process.
Router(config-router)# area area-id filter-list prefix prefix-list-name out
Configures the router to filter interarea routes out of the specified area.
Router(config-router)# ip prefix-list list-name [seq seq-value] deny |
permit network/len [ge ge-value] [lele-value]
Creates a prefix list with the name specified for the list-name argument.
Ⅳ 如何過濾ospf的hello數據包
你確定要過濾掉hello數據包?過濾hello數據包意味著不能建立鄰接關系,無法同步LSDB!pssive-interface就可以實現
Ⅳ 求助,OSPF如何過濾LSA
不是太懂你的問題。要過濾type5 LSA, 把區域設成stub就行了。 至於「NSSA區域的ABR上,在7轉5的時候,如何過濾其5類LSA」, NSSA中,有5類LSA嗎?
Ⅵ ospf 主幹區域的路由條目如何過濾
你這樣做的目的是什麼啊.
如果你要主幹路由條目少的話最方便的方法就是不回要宣告你想減少答的那些路由條目啊.
ROUTE-MAP 也可以做策略減少你不想要的路由條目
r1(config)#access-list 10 deny 192.168.1.0 0.0.0.255
r1(config)#access-list 10 per any
r1(config)#route-map name deny 10
r1(route-map)match ip add 10
r1(route-config)#distribute-list route-map a in
R1 這時就不會接收192.168.1.0 這個路由條目了,但這方法開銷太大性能不好的設備不建議上OSPF 路由策略
Ⅶ ospf可以過濾某個路由嗎
ospf可以使用route-map來實現對某個路由條目的過濾目的,實現方法首先寫一條acl或prefix-list抓取路由條目,然後在ospf進程下,調用route-map實現路由過濾。
如果是始發的路由條目,也可以使用distribute-list分發列表來實現路由過濾。
注意在寫route-map需要在最後的match語句後面permit any,不然所有的路由都會被過濾。