Routing – Destination NAT based IP SLA Trigger

nat;routerrouting

Can the destination address be changed by using outside NAT?

Routing protocols cannot be changed.

Here is my network:

Network Diagram

Best Answer

I'm not sure this will work. I don't have a lab to try it, but it works great on paper ;)

In this example, host will connect to 40.0.0.1, which is a natted address.

access-list 10 permit 10.0.0.1
access-list 20 permit 20.0.0.1

route-map CRI-1 permit 10
match ip address 10

route-map CRI-2 permit 10
match ip address 20

ip nat outside source static 10.0.0.1 40.0.0.1 route-map CRI-1
ip nat outside source static 20.0.0.1 40.0.0.1 route-map CRI-2