In article <> ,
(Edwin Davidson) wrote:
> The problem is that when these remote WAN locations are shut down, the
> DEFAULT GATEWAY side of these Cisco routers direct all this WAN
> traffic over to internet router three. Internet router three has
> static routes to the WAN locations via the LAN router two.
>
> So we end up with a routing loop. This drains router two and router
> three's resources.
>
> How do I configure the Cisco router two so that if the WAN link isn't
> down it doesn't pass that traffic off to the default gateway? I still
> want unknown traffic to get ICMP redirects. Just now the WAN
> locations.
Set up a floating static route for the WAN subnets that points to the
Null0 interface:
ip route <subnet> <mask> Serial0/1
ip route <subnet> <mask> Null0 250
As long as Serial0/1 is up, the WAN traffic will be sent to it. When
the WAN link is down the interface with shut down, and then the Null0
route will be used.
--
Barry Margolin,
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***