Mikrotik OSPF, and more specific route?

Hi guys,

We have a network with OSPF routing, and we use PPPOE for user authentification. To the one base station, we have two wireless links, with different bandwidth, and performance. Because of that, we use two VLAN, and two Mikrotik PPPOE concentrators - CCR and RB4011. Gateway for both routers is in the core office.

We set up a video server for that base station, and we want users from both PPPOE concentrators, use the stream from that video server, not from the video server in the core office. Gateway for video server is on CCR router

If we just set up a new video server IP address for the stream, then stream from video server and base station comes to core office and then returns to that base station again, with the second link.

I tried, new VLAN between routers with IP addresses, and static route and OSPF filter, but it not works, what is the best solution for that, do you have any experience with that?

Core router is an HP L3 switch, and all other routers are Mikrotik.

Thanks a lot, and best regards.

Hello Guys,

I found a solution in this way,
I added a VLAN between routers with IP addresses 10.3.3.1 and 10.3.3.2

ROUTER 1 
add distance=1 dst-address=10.2.2.2/32 gateway=10.3.3.1
/routing filter
add action=discard chain=ospf-out prefix=10.2.2.2/24 prefix-length=16-32

ROUTER 2 
add distance=1 dst-address=10.4.4.4/32 gateway=10.3.3.2
/routing filter
add action=discard chain=ospf-out prefix=10.4.4.4 prefix-length=16-32

But I don’t like it, because filters are must to be used, and if the filters are turned off, the router to this address goes into the TTL loop. And the IP address of the user in the route must be specified.

Is there a better solution?

Please, can someone help with this issue?