全网可达,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 文章来源:https://www.toymoban.com/news/detail-796867.html
display ospf peer brief 查看邻居表
display ip routing-table 查看路由表
[r1-GigabitEthernet0/0/0]display ip interface brief 查看接口IP表文章来源地址https://www.toymoban.com/news/detail-796867.html
到了这里,关于ospf-gre隧道小练习的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!