08-30-2007 02:33 AM - edited 03-03-2019 06:32 PM
Hi all
Need a solution where my client is doing loadbalancing between client and 2 ISP, no BGP between ISP and Client, just default routes
Any ideas how i can do this
thanks
Timo
08-30-2007 03:02 AM
Hi Timo,
You can go for NATing:
!
interface FastEthernet0/0
ip address
ip nat inside
!
interface Serial0/0
description ***ISP1***
ip address
ip nat outside
!
interface Serial0/1
description ***ISP2**
ip address
ip nat outside
!
!
ip nat inside source route-map ISP1_NAT ...
ip nat inside source route-map ISP2_NAT ...
!
access-list 1 permit
!
route-map ISP1_NAT permit 10
match ip address 1
match interface Serial0/0
!
route-map ISP2_NAT permit 10
match ip address 1
match interface Serial0/1
!
ip route 0.0.0.0 0.0.0.0 serial0/0
ip route 0.0.0.0 0.0.0.0 serial0/1
HTH,
Mohammed Mahmoud.
08-30-2007 03:36 AM
Great idea from Mohammed.
Also, if there are more than one link to the same destination from one router, it will automatically load-balance based on switching method used. For example CEF load balances per flow by default.
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