How can I configure multiple default gateways on a CISCO Router?

Does any one knows a way to configure a cisco router with multiple gateways - multiple gateways of last resort?

I've tried adding a gateway of last resort twice (with different metric) but only one is shown:

Router(config)# ip route 0.0.0.0 0.0.0.0 2.2.2.2 10
Router(config)# ip route 0.0.0.0 0.0.0.0 3.3.3.3 100

And the show ip route output was:

Router# show ip route
Gateway of last resort is 2.2.2.2 to network 0.0.0.0

     2.0.0.0/24 is subnetted, 1 subnets
C       2.2.2.0 is directly connected, FastEthernet0/0
     3.0.0.0/24 is subnetted, 1 subnets
C       3.3.3.0 is directly connected, FastEthernet0/1
     32.0.0.0/30 is subnetted, 1 subnets
C       32.2.2.0 is directly connected, Serial0/2/0
S*   0.0.0.0/0 [10/0] via 2.2.2.2

The point is that i cannot see the other route with higher distance metric?

Anyone has a sugestion?

I mean will this config work if the link on 2.2.2.2 fails? Will the router choose the other network 3.3.3.3, if the link 2.2.2.2 fails?


Solution 1:

IIRC, if you put different metrics only the best route will be injected in the main routing table.

So you have three choices:

First choice, as @dkaragasidis said, don't put the metrics (to get per session load-balancig) but then the traffic will flow nearly 50% on both links

Second choice, use some sort of dynamic routing protocol (i suggest BGP) if possbile.

Third choice, use ip sla commands to costantly check for ip availability.

Keep in mind that if one FastEthernet interface (or the remote port with which is connected) fails (i.e. the status of the interface goes to down) then the router automatically injects the other default route, but NOT if the 2.2.2.2 router somehow doesn't work (in that case the ip sla commands will take care of this).

If BGP is not an option and you really don't wanto to balance the gateways, ip sla is your best solution. Take a look at this answer to a similar question for a link to some examples.

Solution 2:

Consider checking out Cisco's Configuring a Gateway of Last Resort Using IP Commands.

If you use multiple ip route 0.0.0.0 0.0.0.0 commands to configure a default route, traffic is load-balanced over the multiple routes.

Solution 3:

With having multiple default routes you can load-balance the traffic ( session lb ).
If you want to keep one of the paths as backup , then you need to play with metric. Give a higher metric to the path you wanna use as backup and smaller metric to the main one. This will solve your issue.
By the way because main default route will be there although the next hop is lost , you need to configure a tracker and ip sla to check the availability. If Ip Sla is down and the route will be deleted and the backup route will be inserted to your routing table.

Another solution is to define the outgoing interface instead of next-hop. Here you dont need ip sla

 ip route 0.0.0.0 0.0.0.0 fa0/0 10  -->  main route
 ip route 0.0.0.0 0.0.0.0 fa0/1 100 -->  backup route