Hi
I have 2 ISP connected to Router A and Router B
Both the routers are connected to the core 3750 switch.. I want to send the traffic from the switch that goes to router A to router B...
I have done the following but its not working...
vlan 120 = 10.120.0.0/24
vlan 140 = 10.140.0.0/24
access-list 120 permit ip 10.120.0.0 0.0.0.255 any
access-list 140 permit ip 10.140.0.0 0.0.0.255 any
Create a policy that matches on these acls:
route-map NewISP permit 10
match ip address 120
set ip next-hop <new asa ip>
route-map NewISP permit 20
match ip address 140
set ip next-hop <new asa ip>
Then apply to your vlan interfaces:
int vlan 120
ip policy route-map NewISP
int vlan 140
ip policy route-map NewISP