ospf-gre隧道小练习

发布时间:2024年01月14日

全网可达,R5路由表没有其他路由器的路由条目

注:每个路由器都添加了自己的环回,如R1就是1.1.1.1

R1可以分别ping通与R2,R3,R4之间的隧道

R1路由表上有所有路由器环回的路由条目

R5路由表上没有其他路由器的路由条目

实现代码:

首先将各个接口IP配好

边上3个路由器:[R6][R7][R8]

例:[r7]
ospf 1 router-id 7.7.7.7? ? ? ? ? ? ? ? ? ? ? ??
area 3
network 0.0.0.0 255.255.255.255? ? ? ? 实际上是宣告了26.1.1.2和7.7.7.7两个属于area 3

DR:[R1]

例:[r1]
interface Tunnel0/0/0? ? ? ? ? ? ? ? ? ? ? ??
?ip address 10.1.1.1 24
?tunnel-protocol gre p2mp????????????????
?source 15.1.1.1????????????????????????
?ospf network-type broadcast????????
?nhrp entry multicast dynamic????????
?nhrp network-id 100????????????????

ospf 1 router-id 1.1.1.1
area 0
network 1.1.1.1 0.0.0.0
network 10.1.1.1 0.0.0.0

二选一,尽量选择一个一个配而不做缺省:
ip route-static 25.1.1.0 24 15.1.1.2
ip route-static 26.1.1.0 24 15.1.1.2
ip route-static 35.1.1.0 24 15.1.1.2
ip route-static 38.1.1.0 24 15.1.1.2
ip route-static 45.1.1.0 24 15.1.1.2
ip route-static 47.1.1.0 24 15.1.1.2
or?
ip route-static 0.0.0.0 0 15.1.1.2

其他3个用隧道的路由器:[R2][R3][R4]

例:[r2]
interface Tunnel0/0/0
?ip address 10.1.1.2 24
?tunnel-protocol gre p2mp
?source 25.1.1.2
?ospf network-type broadcast
?ospf dr-priority 0? ? ? ?#该拓扑结构导致要考虑DR选举问题,让R2,R3,R4放弃选举,

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? #如果互为中心站点就不用考虑
?nhrp entry multicast dynamic
?nhrp network-id 100
?nhrp entry 10.1.1.1 15.1.1.1 register

ospf 1 router-id 2.2.2.2
?area 0.0.0.0?
? network 2.2.2.2 0.0.0.0?
? network 10.1.1.2 0.0.0.0?
?area 0.0.0.1?
? network 26.1.1.1 0.0.0.0?

display ospf peer brief? ? ? ? ?查看邻居表
display ip routing-table? ? ? ? ?查看路由表
[r1-GigabitEthernet0/0/0]display ip interface brief? 查看接口IP表

文章来源:https://blog.csdn.net/wzzzzz06/article/details/135589727
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。