Displaying 1 result from an estimated 1 matches for "outside_gateway2".
Did you mean:
  outside_gateway
  
2004 May 13
0
Multiipath routing - can''t ping links from LAN after default routes
...VICE2} src
${OUTSIDE_IP2}
   #
   ip rule add from ${OUTSIDE_IP}   table first
   ip rule add from ${OUTSIDE_IP2} table second
  #
  # weighted multipath routing
  #
  ip route add default scope global nexthop via \${OUTSIDE_GATEWAY} \
 ${OUTSIDE_DEVICE}  weight ${OUTSIDE_DEV_WEIGHT} \    nexthop
${OUTSIDE_GATEWAY2} dev ${OUTSIDE_DEVICE2} \
 weight ${OUTSIDE_DEV2_WEIGHT}
Everything is working if I just do as above, I can ping OUTSIDE_GATEWAY
and OUTSIDE_GATEWAY2 AND OUTSIDE_IP and OUTSIDE_IP2. But
If I added the two lines below :-
   ip route add default via ${OUTSIDE_GATEWAY}  table first
   ip route add d...