Hi, i am trying to create GRE tunnel over vrf. after binding the GRE tunnel interface (also the LAN & WAN interfaces) to VRF, the traffic didn't forwarded via the WAN interface, the path is LAN(VRx)----->GRE--x-->WAN(VRx) . only while the WAN interface is binding to the default router, the traffic forwarded correctly via the WAN interface, the path is LAN(VRx)----->GRE----->WAN(VRx).
used configuration: ifconfig lan1 80.80.80.1/24 up ifconfig wan2 50.50.50.1/24 up ip link add VR2 type vrf table 2 ip link set dev VR2 up ip route add table 2 unreachable default metric 4278198272 ip tunnel add greT2 mode gre local 50.50.50.1 remote 50.50.50.2 ip addr add 55.55.55.1/24 dev greT2 ip link set greT2 up ip link set dev greT2 master VR2 ip link set dev lan1 master VR2 ip link set dev wan2 master VR2 ip route add vrf VR2 90.90.90.0/24 via 55.55.55.2 what is the correct way to create GRE tunnel over VRF. Thank for support. BR, Liran