On Wed, Jun 10, 2015 at 08:18:34PM -0600, dsp wrote:
> Hello list!
>
> please excuse my probably idiotic question, but i'm still a new OpenBGPd user.
> (5.7 release)
>
> what i'm trying to achieve is:
> a) connect to a bunch of peers but announce nothing to them. just collect
> their updates.
> b) send all those updates to another peer ($livebgp)
>
> my config is :
>
> AS 65005
> router-id a.b.c.d
> route-collector yes
> transparent-as yes
>
> neighbor $livebgp {
> remote-as 65001
> descr livebgp
> holdtime 180
> passive
> holdtime min 3
> announce all
> }
>
> group peers {
> announce none
> holdtime 180
> holdtime min 3
> multihop 100
> neighbor $foo {
> remote-as xxxx
> descr foo
> }
> ...
> }
allow from any
allow to $livebgp
solved it for me.
sorry for the noise :)
DsP
>
> on the livebgp side though all i'm seeing are the keepalives.
> livebgp is doing active connection so that's why i have the passive there.
>
> do you guys have any input?
>
> Thank you so much!
>
> DsP