I am trying to run OSPF between two CSRs in GCP Compute Engine. The CSRs are deployed in the same project and are only for testing purposes right now. I am not able to get OSPF to form between the routers and also not able to get a tunnel to form between the routers.
The tunnel interfaces are up/up, but I am not able to ping between the tunnel interfaces. Currently, I have all firewall rules set to allow any any between the routers. I can ping, ssh, etc. between the hosts, but cannot form dynamic routing or GRE tunnels.
Is this something that is being blocked by Google?
Router1
interface GigabitEthernet1
ip address 192.168.0.32 255.255.255.0
negotiation auto
no mop enabled
no mop sysid
interface Tunnel1
ip address 172.31.254.1 255.255.255.252
ip mtu 1400
tunnel source GigabitEthernet1
tunnel destination 192.168.0.20
Router2
interface GigabitEthernet1
ip address 192.168.0.20 255.255.255.0
negotiation auto
no mop enabled
no mop sysid
interface Tunnel1
ip address 172.31.254.2 255.255.255.252
ip mtu 1400
tunnel source GigabitEthernet1
tunnel destination 192.168.0.32
Any ideas?
Thanks!