On Sat, Mar 05, 2016 at 10:10:37PM -0500, Matt Schwartz wrote:
> Hello @misc,
> 
> I am running OpenBSD 5.8 release and I am finding that BGPD is not adding
> routes. When I type bgpctl show rib, I don't see any routes added. Did I
> goof up this configuration? Below are my bgpd.conf files. I do not even see
> any routes added when I run route -T1 show. I have no problems with my OSPF
> and LDPD setup.
> 
> /etc/bgpd.conf
> router-id 10.254.254.1
> AS 65001
> rdomain 1 {
>      descr CUSTOMER1
>      rd 65001:1
>      import-target rt 65001:1
>      export-target rt 65001:1
>      network inet connected
>      network 0.0.0.0/0
> }
> group ibgp {
>      announce IPv4 unicast
>      announce IPv4 vpn
>      remote-as 65001
>      depend on mpe0
>      local-address 10.254.254.1
>      neighbor 10.254.254.2 {
>           descr PE2
>      }
> }

You should move the "depend on mpe0" into the rdomain specification.
Make sure with bgpctl show nei that the session is up and running.
Also check with bgpctl show fib and bgpctl show fib table 1 if routes are
picked up.

> 
> /etc/bgpd.conf
> router-id 10.254.254.2
> AS 65001
> rdomain 1 {
>      descr CUSTOMER1
>      rd 65001:1
>      import-target rt 65001:1
>      export-target rt 65001:1
>      network inet connected
> }
> group ibgp {
>      announce IPv4 unicast
>      announce IPv4 vpn
>      remote-as 65001
>      depend on mpe0
>      local-address 10.254.254.2
>      neighbor 10.254.254.1 {
>           descr PE1
>      }
> }
> 
> Thanks much,
> Matt
> 

-- 
:wq Claudio

Reply via email to