华为OSPF中双点双向重发布解决路由引入问题

Feronia ·
更新时间:2024-11-15
· 658 次阅读

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
1.配置地址

2.启动ospf协议

3.启动rip协议

4.将PC1 的路由引入OSPF中

[R1]ospf 1

[R1-ospf-1]import-route direct
在这里插入图片描述

5.将 PC2重发布到RIP中

[R4]rip

[R4-rip-1]import-route direct

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-l7z0pru0-1581815797915)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images81768467443.png)]

6.在R2 和R3上进行双点双向重发布

[R3]rip
[R3-rip-1]import-route ospf 1
[R3]ospf 1
[R3-ospf-1]import-route rip u

[R2]rip
[R2-rip-1]import-route ospf 1
[R2]ospf 1
[R2-ospf-1]import-route rip

R1路由表

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-jh2IpFCn-1581815797915)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images81768529276.png)]

7.在R3的路由表中 存在一个次优路由

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-AxO8SaGv-1581815797916)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images81768589528.png)]

(1)第一种解决办法

[R2]ip ip-prefix pc1 permit 10.1.1.0 24
[R2]route-policy pc1 permit node 10
Info: New Sequence of this List.
[R2-route-policy]if-match ip-prefix pc1
[R2-route-policy]apply preference 90
[R2-route-policy]qu
[R2]route-policy pc1 permit node 20
Info: New Sequence of this List.
[R2]ospf 1
[R2-ospf-1]preference route-policy pc1
[R2-ospf-1]qu

[R3]ip ip-prefix pc1 permit 10.1.1.0 24
[R3]route-policy pc1 permit node 10
Info: New Sequence of this List.
[R3-route-policy]if-match ip-prefix pc1
[R3-route-policy]apply preference 160
[R3-route-policy]qu
[R3]route-policy pc1 permit node 20
Info: New Sequence of this List.
[R3-route-policy]qu

[R3]rip 1
[R3-rip-1]preference route-policy pc1

反应较慢 可以通过shutdown 接口来查看

R2上配置是为了以后R2故障后出现该次优路由

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5MeZoLZm-1581815797917)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images81769340752.png)]

第二种方法:

[R3]ip ip-prefix xwl deny 10.1.1.0 24
[R3]ip ip-prefix xwl permit 0.0.0.0 0 less-equal 32
[R3-rip-1]filter-policy ip-prefix xwl import GigabitEthernet 0/0/1 学习到该次优路由的接口

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-jXPnLWFw-1581815797917)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images81769746331.png)]

第三种方法:
[R1]ospf 1
[R1-ospf-1]
[R1-ospf-1]import-route direct ?

cost Set cost
route-policy Route policy
tag Specify route tag
type Metric type of the imported external routes
Please press ENTER to execute command
[R1-ospf-1]import-route direct tag 111
在这里插入图片描述
在这里插入图片描述

然后在R2 和R3上根据需求采取第一或第二种办法

[R3]route-policy tag permit node 10
Info: New Sequence of this List.
[R3-route-policy]if-match tag 111
[R3-route-policy]apply preference 90
[R3-route-policy]qu
[R3]route-policy pc1 permit node 20
Info: New Sequence of this List.
[R3-route-policy]qu

[R2]ospf 1
[R2-ospf-1]preference route-policy tag
[R2-ospf-1]qu
在这里插入图片描述


作者:时不待我。



ospf 路由

需要 登录 后方可回复, 如果你还没有账号请 注册新账号