Ⅰ 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,不然所有的路由都会被过滤。