OSPF 综合案例
在什么情况下进行DR选举? 看网络类型,广播,和非广播情况下才会进行选举。 ospf路由的cost是如何计算出来的? 流量经过每个路由器入接口的cost值相加 ospf网络类型有哪些? 广播,非广播,p2p点到点,p2mp点到多点 ospf报文发送方式是什么类型? 组播类型 224.0.0.5 ospf报文的协议号是多少? 89
案例5:OSPF 综合案例 5.1 问题 如图配置IP地址,规划OSPF区域 配置每个OSPF路由器的 RID 为 10.10.X.X (X为路由器号码) 确保区域20中,只有1个DR,R3为DR 确保区域0中,没有 DR 确保区域0中使用不同网络类型 确保 R6上,192.168.12.0/24的 cost为10 确保 R2上,192.168.67.0/24的 cost 为 23 配置 ACL,确保 R6-R7 无法建立 OSPF 邻居 (特别注意ospf是组播报文目标地址不是接口ip是固定的224.0.0.5)
配置思路: 配置接口ip地址 ospf 1 router-id 10.10.x.x area 20 0 6 network 192.168.12.0 0.0.0.255 区域20 只有1个DR,R3为DR R1,R2修改网络类型 p2p R2,R3之间将R20/0/0接口 ospf优先级设置为0 路由器就变成other不参与dr选举 R1 [R1-GigabitEthernet0/0/0]ospf network-type p2p R2 [R2-GigabitEthernet0/0/1]ospf network-type p2p [R2-GigabitEthernet0/0/0]ospf dr-priority 0 区域0 没有 DR 并且使用不同网络类型 没有DR的网络类型是p2p和p2mp R3 [R3-GigabitEthernet0/0/0]ospf network-type p2p R4 [R4-GigabitEthernet0/0/1]ospf network-type p2p [R4-GigabitEthernet0/0/0]ospf network-type p2mp R5 [R5-GigabitEthernet0/0/1]ospf network-type p2mp 区域6 R6上,192.168.12.0/24的 cost为10 R2上,192.168.67.0/24的 cost 为 23 ACL,确保 R6-R7 无法建立 OSPF 邻居 R5 R6 [R6-GigabitEthernet0/0/1]ospf cost 6 R2 [R2-GigabitEthernet0/0/0]ospf cost 19 [R2]dis ip routing-table protocol ospf 查看 路由表 协议 ospf 可以查看到cost 不同路由条目到这个路由的cost值 R7 [R7]acl 3000 [R7-acl-adv-3000]rule 10 deny 89 source 192.168.67.6 0.0.0.0 destination 224.0.0.5 0.0.0.0 [R7-GigabitEthernet0/0/1]traffic-filter inbound acl 3000 [R7]dis ospf brief /查看ospf邻接关系 [R7]dis acl 3000 /查看acl 3000 拦截情况 hello是10秒 dead是40秒 所以是拦截三次后第四次断开后没有邻接关系
5 案例5:OSPF 综合案例 5.1 问题 如图配置IP地址,规划OSPF区域 配置每个OSPF路由器的 RID 为 10.10.X.X (X为路由器号码) 确保区域20中,只有1个DR,R3为DR 确保区域0中,没有 DR 确保区域0中使用不同网络类型 确保 R6上,192.168.12.0/24的 cost为10 确保 R2上,192.168.67.0/24的 cost 为 23 配置 ACL,确保 R6-R7 无法建立 OSPF 邻居 5.2 方案 搭建实验环境,如图-7所示。
图-7
5.3 步骤 实现此案例需要按照如下步骤进行。
1)配置IP地址,设置OSPF区域
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R1
[R1]interface GigabitEthernet 0/0/0
[R1-GigabitEthernet0/0/0]ip add 192.168.12.1 24
[R1-GigabitEthernet0/0/0]quit
[R1]ospf 1 router-id 1.1.1.1
[R1-ospf-1]area 20
[R1-ospf-1-area-0.0.0.20]network 192.168.12.0 0.0.0.255
[R1-ospf-1-area-0.0.0.20]quit
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R2
[R2]interface GigabitEthernet 0/0/1
[R2-GigabitEthernet0/0/1]ip add 192.168.12.2 24
[R2-GigabitEthernet0/0/1]quit
[R2]interface GigabitEthernet 0/0/0
[R2-GigabitEthernet0/0/0]ip add 192.168.23.2 24
[R2-GigabitEthernet0/0/0]quit
[R2]ospf 1 router-id 2.2.2.2
[R2-ospf-1]area 20
[R2-ospf-1-area-0.0.0.20]network 192.168.12.0 0.0.0.255
[R2-ospf-1-area-0.0.0.20]network 192.168.23.0 0.0.0.255
[R2-ospf-1-area-0.0.0.20]quit
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R3
[R3]interface GigabitEthernet 0/0/1
[R3-GigabitEthernet0/0/1]ip add 192.168.23.3 24
[R3-GigabitEthernet0/0/1]quit
[R3]interface GigabitEthernet 0/0/0
[R3-GigabitEthernet0/0/0]ip add 192.168.34.3 24
[R3-GigabitEthernet0/0/0]quit
[R3]ospf 1 router-id 3.3.3.3
[R3-ospf-1]area 0
[R3-ospf-1-area-0.0.0.0]network 192.168.34.0 0.0.0.255
[R3-ospf-1-area-0.0.0.0]quit
[R3-ospf-1]area 20
[R3-ospf-1-area-0.0.0.20]network 192.168.23.0 0.0.0.255
[R3-ospf-1-area-0.0.0.0]quit
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R4
[R4]interface GigabitEthernet 0/0/1
[R4-GigabitEthernet0/0/1]ip add 192.168.34.4 24
[R4-GigabitEthernet0/0/1]quit
[R4]interface GigabitEthernet 0/0/0
[R4-GigabitEthernet0/0/0]ip add 192.168.45.4 24
[R4-GigabitEthernet0/0/0]quit
[R4]ospf 1 router-id 4.4.4.4.
[R4-ospf-1]area 0
[R4-ospf-1-area-0.0.0.0]network 192.168.45.0 0.0.0.255
[R4-ospf-1-area-0.0.0.0]network 192.168.34.0 0.0.0.255
[R4-ospf-1-area-0.0.0.0]quit
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R5
[R5]interface GigabitEthernet 0/0/1
[R5-GigabitEthernet0/0/1]ip add 192.168.45.5 24
[R5-GigabitEthernet0/0/1]quit
[R5]interface GigabitEthernet 0/0/0
[R5-GigabitEthernet0/0/0]ip add 192.168.56.5 24
[R5-GigabitEthernet0/0/0]quit
[R5]ospf 1 router-id 5.5.5.5
[R5-ospf-1]area 6
[R5-ospf-1-area-0.0.0.6]network 192.168.56.0 0.0.0.255
[R5-ospf-1-area-0.0.0.6]quit
[R5-ospf-1]area 0
[R5-ospf-1-area-0.0.0.0]network 192.168.45.0 0.0.0.255
[R5-ospf-1-area-0.0.0.0]quit
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R6
[R6]interface GigabitEthernet 0/0/1
[R6-GigabitEthernet0/0/1]ip add 192.168.56.6 24
[R6-GigabitEthernet0/0/1]quit
[R6]interface GigabitEthernet 0/0/0
[R6-GigabitEthernet0/0/0]ip add 192.168.67.6 24
[R6-GigabitEthernet0/0/0]quit
[R6]ospf 1 router-id 6.6.6.6
[R6-ospf-1]area 6
[R6-ospf-1-area-0.0.0.6]network 192.168.56.0 0.0.0.255
[R6-ospf-1-area-0.0.0.6]network 192.168.67.0 0.0.0.255
[R6-ospf-1-area-0.0.0.6]quit
<Huawei>undo terminal monitor
<Huawei>system-view
[Huawei]sysname R7
[R7]interface GigabitEthernet 0/0/1
[R7-GigabitEthernet0/0/1]ip add 192.168.67.7 24
[R7-GigabitEthernet0/0/1]quit
[R7]ospf 1 router-id 7.7.7.7
[R7-ospf-1]area 6
[R7-ospf-1-area-0.0.0.6]network 192.168.67.0 0.0.0.255
[R7-ospf-1-area-0.0.0.6]quit
2)配置区域20中的DR
[R1]interface GigabitEthernet 0/0/0
[R1-GigabitEthernet0/0/0]ospf network-type p2p
[R1-GigabitEthernet0/0/0]quit
[R2]interface GigabitEthernet 0/0/1
[R2-GigabitEthernet0/0/1]ospf network-type p2p
[R2-GigabitEthernet0/0/1]quit
[R2]interface GigabitEthernet 0/0/0
[R2-GigabitEthernet0/0/0]ospf dr-priority 0
[R2-GigabitEthernet0/0/0]quit
3)确保区域0中没有DR
[R3]interface GigabitEthernet 0/0/0
[R3-GigabitEthernet0/0/0]ospf network-type p2p
[R3-GigabitEthernet0/0/0]quit
[R4]interface GigabitEthernet 0/0/1
[R4-GigabitEthernet0/0/1]ospf network-type p2p
[R4-GigabitEthernet0/0/1]quit
[R4]interface GigabitEthernet 0/0/0
[R4-GigabitEthernet0/0/0]ospf network-type p2mp
[R4-GigabitEthernet0/0/0]quit
[R5]interface GigabitEthernet 0/0/1
[R5-GigabitEthernet0/0/1]ospf network-type p2mp
[R5-GigabitEthernet0/0/1]quit
4)确保R6的路由表中 192.168.12.0/24 的 cost 为10
[R6]interface GigabitEthernet 0/0/1
[R6-GigabitEthernet0/0/1]ospf cost 6
[R6-GigabitEthernet0/0/1]quit
5)确保R2的路由表中 192.168.67.0/24 的 cost 为23
[R2]interface GigabitEthernet 0/0/1
[R2-GigabitEthernet0/0/1]ospf cost 19
[R2-GigabitEthernet0/0/1]quit
6)配置ACL,确保R6和R7之间无法建立OSPF邻居
[R7]acl 3000 [R7-acl-adv-3000]rule 10 deny ospf source 192.168.67.6 0.0.0.0 destination 224.0.0.5 0 [R7]interface GigabitEthernet 0/0/1 [R7-GigabitEthernet0/0/1]traffic-filter inbound acl 3000