On Fri, 12 Sep 2008 19:48:04 +0700, Jens Kassel <[EMAIL PROTECTED]> wrote:

Hello,



I want to create BGP speaker that can give different next-hop address
for same prefix dependent on the BGP peer.

E.g. for the prefix 10.20.30.40/32 a want to tell peer1 to use next-hop
10.0.0.1 and tell peer2 to use next-hop 10.0.0.2.



Would this be possible when using BGPD without code modification?



Regards,



Jens


Most likely using "match and set" :D
e.g
match from any to $bgp_peer1 inet prefix 10.20.30.40/32 set nexthop 10.0.0.1 match from any to $bgp_peer2 inet prefix 10.20.30.40/32 set nexthop 10.0.0.2

Good luck,


--
insandotpraja(at)gmaildotcom

Reply via email to