I'm trying to get a BGP-VPLS setup working on some CCR2004 Routers. As of right now, they're running 7.1.3
Unfortunately, they came with ROSv7 from the factory, so as far as I can tell, there's no way to downgrade them to ROSv6.
I've been using this wiki article for reference, and following as best I can while modifying the BGP config for the changes in ROSv7
https://wiki.mikrotik.com/wiki/Manual:BGP_based_VPLS
Here's where I'm at right now:
I've got OSPF and MPLS working, and BGP Sessions established. (I'm only working with 3 routers so far, but there will be a lot more later.)
As far as I can tell, one of the BGP Instances is setup as a Route Reflector, (With the disturbing lack of feedback / status / debugging info from the BGP setup, it's really hard to know for sure.)
I've setup my BGP-VPLS instance, and .... nothing. (As far as I can see, considering I can't see what's going on with BGP at all.)
Here's the sections of my config that appear to be relevant for R1 (172.28.0.1)
Code: Select all
/interface bridge
add comment="VPLS link" name="Multisite Core VPLS"
/routing bgp template
set default address-families=ip cluster-id=172.28.0.1 disabled=no router-id=172.28.0.1 routing-table=main
add address-families=ip,l2vpn as=65100 cluster-id=172.28.0.1 disabled=no name=iBGP-Template router-id=172.28.0.1 routing-table=main
/interface bridge port
add bridge="Multisite Core VPLS" interface=ether11
/interface vpls bgp-vpls
add bridge="Multisite Core VPLS" bridge-horizon=1 comment="Multisite Core VLAN" disabled=no export-route-targets=65100:1 import-route-targets=65100:1 name="Multisite Core" pw-control-word=default pw-l2mtu=1500 pw-type=raw-ethernet rd=65100:1 site-id=1
/routing bgp connection
add address-families=ip,l2vpn as=65100 cluster-id=172.28.0.1 disabled=no listen=no local.address=172.28.0.1 .role=ibgp-rr name=Peer remote.address=172.28.1.1 router-id=172.28.0.1 routing-table=main templates=iBGP-Template
add address-families=ip,l2vpn as=65100 cluster-id=172.28.0.1 disabled=no listen=yes local.address=172.28.0.1 .role=ibgp-rr name=CLIENT-CPE remote.address=172.28.0.0/24 router-id=172.28.0.1 routing-table=main templates=iBGP-Template
Any help and/or ideas you might have on what I can do to get this working would be appreciated.