Effective with Cisco IOS Release 12.4(20)T, 12.2(33)SXI1, 12.2(33)SRE and Cisco IOS XE Release 2.4, the track rtr command is replaced by the track ip sla command. See the track ip sla command for more information.
powmia wrote: » iamme4eva, read the last paragraph of my post. If you want to track the connectivity of your ISP, configure a tracking object that tracks the reachability of a remote site, and is sourced from your physical interfaces... tie those to a static route. The following tracks the reachability through (NOT TO) your providers... to google DNS and OpenDNS... common practice ip sla 3 icmp-echo 8.8.8.8 source-int g0/0 ip sla 4 icmp-echo 208.67.222.222 source-int g0/0 ip sla 5 icmp-echo 8.8.8.8 source-int g0/1 ip sla 6 icmp-echo 208.67.222.222 source-int g0/1 ! track 3 ip sla 3 reachability track 4 ip sla 4 reachability track 5 ip sla 5 reachability track 6 ip sla 6 reachability ! track 1 list boolean and object 3 object 4 track 2 list boolean and object 5 object 6 ! ip route 0.0.0.0 0.0.0.0 g0/0 track 1 ip route 0.0.0.0 0.0.0.0 "IP address of ISP interface on g0/0 subnet" track 1 ip route 0.0.0.0 0.0.0.0 g0/1 track 2 ! !!Then activate your SLAs. ! ip sla schedule 3 start-time now life forever ip sla schedule 4 start-time now life forever ip sla schedule 5 start-time now life forever ip sla schedule 6 start-time now life forever deth1k, lol... they don't want to put a redundant router there, but they're going to buy provider independent space and an AS?
powmia wrote: » iamme4eva, no problem. One last thing, if your router has trouble with it's adjacency lookups (ie, you're not on a ptp link... which I assume you aren't)... it's safer to use something like the following instead of my above config: ip route 0.0.0.0 0.0.0.0 g0/0 10.0.0.1 track 1 ip route 0.0.0.0 0.0.0.0 10.0.0.1 track 1 ip route 0.0.0.0 0.0.0.0 11.0.0.1 track 2 Keep that in mind. deth1k, You told him to get his own PI and AS... You're going to get your own AS without a /18 - /20 block of public addresses? And seriously, your provider isn't going to charge you for that many IPv4 addresses? Who's your provider? I'd like to get an AS for my house. I told him he had the option of using an "and" or an "or". The reason I used "and" in my config, is because while some people determine that their circumstances merit the behavior that a boolean "or" would provide that config.... 99% of the time... an "or" is a terrible choice. You really want to statically send traffic to a provider that could potentially only have access to half of the internet? If you're concerned about falsely killing a route because your sla target itself went down (which is why I chose two targets, google and openDNS that are clusters of servers, spread throughout the world)... Yes, that would kill both sets of static routes. In that case of paranoia, probably be best to also configure an identical set of everything I showed... but using "floating" static routes and "or" statements.