RATE THIS ANSWER
0
Click to Vote:
0
0
Hi Okrus,
Did u find a way to resolve this problem? I'm also interested on this and was trying to find a working config.
I just managed to split the traffic on two ISP links without complexing the LAN, simply with a single LAN segment with a default gateway. (Without splitting the LAN into two VRFs)
Problem is there is no ready availabel redundancy eventhough I have two links. Its a manual work.
Below given my config template.
InternetGW#sh run
Building configuration...
Current configuration : 1543 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname InternetGW
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
ip cef
!
!
!
!
ip vrf ISP-A
rd 100:1
!
ip vrf ISP-B
rd 100:2
!
!
!
!
!
interface FastEthernet0/0
description *** LAN ***
ip address 192.168.1.1 255.255.255.0
ip nat inside
duplex auto
speed auto
!
interface FastEthernet0/1
description ### Connected to ISP-A ###
ip vrf forwarding ISP-A
ip address 202.124.160.2 255.255.255.252
ip nat outside
duplex auto
speed auto
!
interface FastEthernet1/0
description ### COnnected to ISP-B ###
ip vrf forwarding ISP-B
ip address 205.25.25.34 255.255.255.252
ip nat outside
duplex auto
speed auto
!
ip forward-protocol nd
ip route vrf ISP-A 0.0.0.0 0.0.0.0 202.124.160.9
ip route vrf ISP-B 0.0.0.0 0.0.0.0 205.25.24.33
!
!
ip http server
no ip http secure-server
ip nat inside source list ISP-A-HOSTS interface FastEthernet0/1 vrf ISP-A overload
ip nat inside source list ISP-B-HOSTS interface FastEthernet1/0 vrf ISP-B overload
!
ip access-list extended ISP-A-HOSTS
permit ip 0.0.0.0 255.255.255.128 any
ip access-list extended ISP-B-HOSTS
permit ip 0.0.0.0 255.255.255.128 any
!
route-map ISP-B-ROUTE-MAP permit 10
match ip address ISP-B-HOSTS
set vrf ISP-B
!
route-map ISP-A-ROUTE-MAP permit 10
match ip address ISP-A-HOSTS
set vrf ISP-A
!
!
!
control-plane
!
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
!
end
InternetGW#
If anyone has a working configuration pl update.
Thanks,
Chamindaw363
Last Answered:
Aug 17 2009 11:49 AM GMT by Chamindaw363 
15 pts.