我有两个路由器(总部中的Cisco ISR4331和分支机构之一中的Netgear(带有pfSense)。这些路由器之间有GRE隧道,我使用静态路由。但是我们决定在分支中添加一些网络冗余办公室,所以现在有两个ISP(当主ISP掉线时,备用ISP掉线),但是我需要路由器相应地更改到邻居网络的路由。到目前为止,我所见的所有OSPF手册中都有两个路由器之间只有一个链接...这个想法是当第一个路由器掉线时通过其他GRE更改路由,反之亦然。
There is "configurations" of routers (not real just for illustrative purposes):
Router1
interface Tunnel1
description *Tunnel to branch office*
ip address 10.1.10.2 255.255.255.252
tunnel source 1.1.1.1
tunnel destination 2.2.2.2
interface Tunnel2
description *BACKUP Tunnel to branch office*
ip address 10.1.15.2 255.255.255.252
tunnel source 1.1.1.1
tunnel destination 3.3.3.3
ip route 10.100.200.0 255.255.255.0 Tunnel1
Router2
interface Tunnel1
description *Tunnel to HQ*
ip address 10.1.10.3 255.255.255.252
tunnel source 2.2.2.2
tunnel destination 1.1.1.1
interface Tunnel2
description *BACKUP Tunnel to HQ*
ip address 10.1.15.3 255.255.255.252
tunnel source 3.3.3.3
tunnel destination 1.1.1.1
ip route 10.100.100.0 255.255.255.0 Tunnel1
目前,我无法手动更改路由,但我需要路由器来确定在链路损坏等情况下要使用哪个隧道。