Hi,
I have two ISP link
|--------------------------ISP 1
LAN--- Router
|--------------------------ISP 2
I have configured IP SLA and both links are active active right now.
If i have a server 10.1.1.100 which is natted to ISP 1 IP pool and if the ISP 1 link goes down it should get NATTed to ISP 2 IP Pool and work. But its not working I have tried all the methods. Can some1 please help me to troubleshoot or configure this..
Please find the configuration of NAT
ip sla monitor 1
type echo protocol ipIcmpEcho XX.XX.XX.XX
threshold 3
frequency 5
ip sla monitor schedule 1 life forever start-time now
ip sla monitor 2
type echo protocol ipIcmpEcho YY.YY.YY.YY
threshold 3
frequency 5
ip sla monitor schedule 2 life forever start-time now
track 101 rtr 1 reachability
!
track 102 rtr 2 reachability
interface FastEthernet0/0.800
encapsulation dot1Q 800
ip address XX.XX.XX.XX 255.255.255.248
no ip redirects
no ip unreachables
ip accounting output-packets
ip nat outside
ip virtual-reassembly
no ip route-cache same-interface
no ip route-cache
ip tcp adjust-mss 1420
no cdp enable
interface FastEthernet0/1
ip address YY.YY.YY.YY 255.255.255.248
ip nat outside
ip virtual-reassembly
no ip route-cache cef
no ip route-cache
interface FastEthernet1/0
ip address zz.zz.zz.zz 255.255.255.240
ip nat inside
ip virtual-reassembly
ip policy route-map ISP
duplex auto
speed auto
ip route 0.0.0.0 0.0.0.0 xx.xx.xx.xx(NH) track 101
ip route 0.0.0.0 0.0.0.0 yy.yy.yy.yy(NH) track 102
ip access-list standard ISP1
permit 10.1.1.100
!
route-map ISP permit 10
match ip address ISP1
set ip next-hop verify-availability xx.xx.xx.xx(NH) 10 track 101
set ip next-hop verify-availability yy.yy.yy.yy(NH) 20 track 101
ip nat inside source static 10.1.1.100 xx.xx.xx.x1 route-map ISP1 extendable
ip nat inside source static 10.1.1.100 yy.yy.yy.y1 route-map ISP2 extendable
route-map ISP2 permit 10
match ip address ISP1
set ip next-hop verify-availability yy.yy.yy.yy(NH) 10 track 102
!
route-map ISP1 permit 10
match ip address ISP1
set ip next-hop verify-availability xx.xx.xx.xx(NH) 10 track 101
Please help...
Nitesh