Hello,
I am currently working with two Mikrotik CCR1036 routers
to announce a /24 subnet.
The goal is to make the network as redundant as possible, we have
the following setup:
R1:
/interface bridge
add name=loopback
/ip address
add address=1.1.1.2/30 interface=BGP1 network=1.1.1.0
add address=1.1.2.2/30 interface=BGP2 network=1.1.2.0
add address=1.1.6.1 interface=loopback network=1.1.6.1
add address=1.1.5.1/30 interface=Routers network=1.1.5.0
/routing bgp instance
set default as=123456 redistribute-connected=yes redistribute-ospf=yes redistribute-static=yes router-id=1.1.6.1
/routing bgp network
add network=3.3.3.3/24
/routing bgp peer
add in-filter=IPV4In name=BGP1 out-filter=IPV4Out remote-address=1.1.1.1 remote-as=1234567
add in-filter=IPV4In name=BGP2 out-filter=IPV4Out remote-address=1.1.2.1 remote-as=1234567
add name=R2 remote-address=1.1.5.2 remote-as=123456
/routing ospf instance
set [ find default=yes ] name=OSPF redistribute-connected=as-type-2 redistribute-static=as-type-2 router-id=1.1.6.1
/routing ospf interface
add interface=loopback network-type=point-to-point passive=yes
/routing ospf network
add area=backbone network=3.3.3.3/24
R2:
/interface bridge
add name=loopback
/ip address
add address=1.1.3.2/30 interface=BGP3 network=1.1.3.0
add address=1.1.4.2/30 interface=BGP4 network=1.1.4.0
add address=1.1.6.2 interface=loopback network=1.1.6.2
add address=1.1.5.2/30 interface=Routers network=1.1.5.0
/routing bgp instance
set default as=123456 redistribute-connected=yes redistribute-ospf=yes redistribute-static=yes router-id=1.1.6.2
/routing bgp network
add network=3.3.3.3/24
/routing bgp peer
add in-filter=IPV4In name=BGP3 out-filter=IPV4Out remote-address=1.1.3.1 remote-as=1234567
add in-filter=IPV4In name=BGP4 out-filter=IPV4Out remote-address=1.1.4.1 remote-as=1234567
add name=R1 remote-address=1.1.5.1 remote-as=123456
/routing ospf instance
set [ find default=yes ] name=OSPF redistribute-connected=as-type-2 redistribute-static=as-type-2 router-id=1.1.6.2
/routing ospf interface
add interface=loopback network-type=point-to-point passive=yes
/routing ospf network
add area=backbone network=3.3.3.3/24
The problem is that on both routers one CPU always has a 100% load, is this normal?
Does the setup look correct? Anybody has any improvement maybe?
Thanks