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
}
}
/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