I get the general flow of what's happening, however I hope someone can fill two blanks for me:
- First thing - about the recursive routes themselves, are defined as following in the official tutorial:
Code: Select all
# Now configure routes that will be resolved recursively, so they will only be active when they are reachable with ping:
/ip/route/
add distance=1 gateway=8.8.8.8 routing-table=to_ISP1 target-scope=11 check-gateway=ping
add distance=2 gateway=8.8.4.4 routing-table=to_ISP1 target-scope=11 check-gateway=ping
# Configure similar recursive routes for the second gateway:
/ip/route/
add distance=1 gateway=8.8.4.4 routing-table=to_ISP2 target-scope=11 check-gateway=ping
add distance=2 gateway=8.8.8.8 routing-table=to_ISP2 target-scope=11 check-gateway=ping
- Second thing - why do we need mangling and routing tables? Everything seems to work without them. The Network Berg's tutorial didn't include them as well.