sounds like you configured  a secondary address on ethernet 0

it's pretty simple - you'd create two access lists, one to permit all IP
traffic from e0 primary, one from e0 secondary

You'd create a 2 stage route-map with two entries - a match to the first
access list and it's next-hop address (probably serial 0), and second stage
with a match to the second access list and it's next hop address (probably
serial 1)

Then, (the clincher), you'd apply that to the entire router with an ip local
policy statement.

Not trivial, but not rocket science, either...

something like this

int e0
ip addr 10.1.1.1 255.255.255.0
ip addr 10.2.1.1 255.255.255.0 secondary
int s0
ip addr 171.68.1.1 255.255.255.252
int s1
ip addr 171.69.1.1 255.255.255.252
access-list 101 permit ip any 10.1.1.0 0.0.0.255
access-list 102 permit ip any 10.2.1.0 0.0.0.255
route-map split-traffic permit 10
match ip address 101
set ip next-hop 171.68.1.2
route-map split-traffic permit 20
match ip address 102
set ip next hop 171.69.1.2
ip local policy route-map split-traffic

You can look up the commands on CCO if you wish, to get the full
understanding of what they do.


-e-

----- Original Message -----
From: Jacek Malinowski 
To: 
Sent: Wednesday, July 11, 2001 2:17 AM
Subject: Re: Routing polices [7:11896]


> I can't use BGP  !!!
> On Linux routers there is no problem, but I see that the Cisco has a big
> problem.
> I receive only advice use BGP. I don't need any BGP. I want only that LAN
0
> go through serial0 and LAN 1 do through serial1, on my Linux routers I do
> this on 3 second.
> Who really understand route-map command and routing policy on cisco
routers
> ?
>
> ""MacDonald""  wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > is your Router has AS number
> > Use BGP multi homing config
> >
> >
> > ""Jacek Malinowski""  wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > I have 2 ISP and 2 serial and 2 ethernet in my 2509 Cisco router.
> > > I want half my LAN goes through ISP1 and serial 0 and ethernet 0.
> > > And the other through ISP2 and serial1 and ethernet1.
> > > How should I do this ?
> > > What combination with route map should I use ?




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7&i=11907&t=11896
--------------------------------------------------
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

Reply via email to