09-18-2003 08:02 PM - edited 03-02-2019 10:27 AM
Hi, is it possible to setup a NAT static Ip address failover. At the moment I have an External ip address of 203.145.145.145 which is NAT to the internal network address 192.168.100.20 computer. If I shutdown the computer so that 192.168.100.20 no longer available, is possible to setup a failover for the router to redirect to another internal ip address 192.168.100.30. If yes, how, what's the command???? Thanks....
09-19-2003 05:14 AM
Hi!
You can use NAT so the box load shares between som internal adresses with round-robin.
Something like this:
!
ip nat pool shared-hosts
!
ip nat inside destination list 1 pool shared-hosts
!
interface x
ip nat inside
!
interface y
ip nat outside
!
access-list 1 permit
! Hope this helps you, if not then you could read about SLB feature in IOS at:
09-21-2003 10:01 PM
Thanks, I tried this and it doesn't seem to work.
ip nat pool notes
ip nat pool notes 203.145.145.145 203.145.145.145 netmask 255.255.255.242
ip nat inside source list 20 pool notes
access-list 20 permit 192.168.100.8 0.0.0.1
access-list 20 permit 192.168.100.13 0.0.0.1
Why doesn't this work? How can it be fixed??
09-28-2003 01:36 AM
Swap the addresses from nat pool and the access-list.
ip nat pool notes 192.168.100.8 192.168.100.13 netmask 255.255.255.xxx
ip nat inside source list 20 pool notes
access-list 20 permit 203.145.145.145
Hopefullt this will work. I have not set this up, so its a theory things for the moment.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide