Hi
Sorry for my english..
I have two offices. In each of them Mikrotik routers.
VPN server side 192.168.1.0/24
VPN client side 192.168.2.0/24
They are connected with fiber optic and VPN is tuned
One day we have add radio link to both offices to make backup channel.
But this link need to work not only when main link is down.
Links are not equal speed.
I have read about PCC. Is it right direction to use it?
On client side I will do this:
/ip firewall mangle add src-address=192.168.2.0/24 action=mark-routing chain=prerouting new-routing-mark=to_optic per-connection-classifier=src-address-and-port:2/0
/ip firewall mangle add src-address=192.168.2.0/24 action=mark-routing chain=prerouting new-routing-mark=to_radio per-connection-classifier=src-address-and-port:2/1
and two routes with this routing marks
But what I need to do on server side?
/ip firewall mangle add dst-address=192.168.2.0/24 action=mark-routing chain=prerouting new-routing-mark=to_optic per-connection-classifier=src-address-and-port:2/0
/ip firewall mangle add dst-address=192.168.2.0/24 action=mark-routing chain=prerouting new-routing-mark=to_radio per-connection-classifier=src-address-and-port:2/1
?
Will it work?
Or there is another way to do what I want?