{
  "track": "mtcre",
  "title": "MTCRE: Recursive Routing Failover (Virtual SLA)",
  "description": "Dual-WAN recursive route failover with check-gateway=ping and explicit FIB registration.",
  "script": "# MTCRE: Recursive Route Failover\n/routing table add name=to_ISP1 fib\n/routing table add name=to_ISP2 fib\n\n# Target Route via ISP1 (scope=10)\n/ip route add dst-address=1.1.1.1/32 gateway=198.51.100.1 scope=10 comment=\"Target 1.1.1.1 via ISP1\"\n\n# Target Route via ISP2 (scope=10)\n/ip route add dst-address=9.9.9.9/32 gateway=203.0.113.1 scope=10 comment=\"Target 9.9.9.9 via ISP2\"\n\n# Primary Recursive Default Route (target-scope=11)\n/ip route add dst-address=0.0.0.0/0 gateway=1.1.1.1 check-gateway=ping distance=1 target-scope=11 comment=\"Primary Default Route\"\n\n# Secondary Recursive Default Route (target-scope=11)\n/ip route add dst-address=0.0.0.0/0 gateway=9.9.9.9 check-gateway=ping distance=2 target-scope=11 comment=\"Secondary Default Route\""
}