Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > bgp source routing

Reply
Thread Tools

bgp source routing

 
 
Nicolas
Guest
Posts: n/a
 
      02-22-2006
Hi All,

I am searching for a way to make source routing of Ips of my network to
my bgp neighbors.
Currently, i force the traffic to a specific neighbor.

Configuration :

access-list 150 permit ip host 11.12.13.15 any

route-map test permit 10
match ip address 150
set ip next-hop 1.2.3.4 #( Transit 1 )

interface Vlan55
ip policy route-map test


I want to have a more flexible solution for that.


Example :

11.12.13.14 | |
-------------> | | ---------> Transit 1 ( local-pref 90)
| BGP |
| Router | ---------> Transit 2 ( local-pref 100)
11.12.13.15 | |
-------------> | | ---------> Peer with A ( local-pref 105 )
| | ---------> Peer with B ( local-pref 110 )

I want the outbound traffic which ip source address is 11.12.13.14 to be
able to reach all networks depending on the neighbor local-pref
parameters. ( This solution currently work )

I want the outbound traffic which ip source address is 11.12.13.15 to
not be able to go through "Transit 2" and "Peer with A".


Any help or pointers towards a solution will also be greatly appreciated.

Thanks.

Regards,

Nicolas.
 
Reply With Quote
 
 
 
 
Charlie Root
Guest
Posts: n/a
 
      02-22-2006
"Nicolas" <> wrote in message
news:43fc633b$0$12129$...
> I want the outbound traffic which ip source address is 11.12.13.14 to be
> able to reach all networks depending on the neighbor local-pref
> parameters. ( This solution currently work )
>

don't need a policy map for this, just let it fall through to the
routing-based forwarding (= don't do anything specific about this address).

> I want the outbound traffic which ip source address is 11.12.13.15 to not
> be able to go through "Transit 2" and "Peer with A".
>

you can use 'verify-availability' as described in "Policy Based Routing with
the Multiple Tracking Options Feature Configuration Example"
(http://www.cisco.com/en/US/customer/...0211f5c.shtml),
however this will not take into consideration individual networks reachable
via particular peer (that is you can't switch traffic based also on
destinations unless it's small set of arbitrary destinations).

Kind regards,
iLya


 
Reply With Quote
 
 
 
 
Nicolas
Guest
Posts: n/a
 
      02-22-2006
Hi ILya,

Thanks for your reponse.

Charlie Root wrote:
>>I want the outbound traffic which ip source address is 11.12.13.14 to be
>>able to reach all networks depending on the neighbor local-pref
>>parameters. ( This solution currently work )
>>

>
> don't need a policy map for this, just let it fall through to the
> routing-based forwarding (= don't do anything specific about this address).
>
>
>>I want the outbound traffic which ip source address is 11.12.13.15 to not
>>be able to go through "Transit 2" and "Peer with A".
>>

>
> you can use 'verify-availability' as described in "Policy Based Routing with
> the Multiple Tracking Options Feature Configuration Example"


I dont want to verify the availability of a particular link.
I just want to create some specific routing policy for some address of
my network through my ebgp routes.

Best Regards,

Nicolas
 
Reply With Quote
 
Charlie Root
Guest
Posts: n/a
 
      02-22-2006
"Nicolas" <> wrote in message
news:43fc7a2a$0$17070$...
> Hi ILya,
>
> Thanks for your reponse.
>
> Charlie Root wrote:
>>>I want the outbound traffic which ip source address is 11.12.13.14 to be
>>>able to reach all networks depending on the neighbor local-pref
>>>parameters. ( This solution currently work )
>>>

>>
>> don't need a policy map for this, just let it fall through to the
>> routing-based forwarding (= don't do anything specific about this
>> address).
>>
>>
>>>I want the outbound traffic which ip source address is 11.12.13.15 to not
>>>be able to go through "Transit 2" and "Peer with A".
>>>

>>
>> you can use 'verify-availability' as described in "Policy Based Routing
>> with the Multiple Tracking Options Feature Configuration Example"

>
> I dont want to verify the availability of a particular link.
> I just want to create some specific routing policy for some address of my
> network through my ebgp routes.
>

the problem with this is that only route with best metric (local-pref) will
make it into the routing table (bgp table itself is not used for forwarding
decisions, it only installs best path into the routing table).

the only solution comes to my mind is to use VRF for each of this addresses
and for each of your peer links, then define policy which routes are
exchanged between VRFs. But I wouldn't do it - you surely will end up with
at least double increase in memory requirements (to keep at least two copies
of the routing table). I haven't tried this yet (but actually curious to try
it in the lab when I have time), so can't be sure what other caveats are
there and if it going to work at all.

Kind regards,
iLya


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
To BGP or not to BGP (multihoming with ISPs over uneven links speed)?!? papi Cisco 4 09-08-2009 02:45 AM
Announce: BGP and Advanced Routing Resources jacco@bgp4.as Cisco 2 09-08-2009 02:22 AM
BGP Routing/Weighting based on Source/Location Scott Cisco 3 05-10-2007 08:39 PM
Difference between "bgp dampening" and "bgp bestpath dampening" harald rüger Cisco 0 10-25-2004 04:07 PM
bgp policy routing - local preference Bill F Cisco 7 12-14-2003 06:50 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57