Separate download and upload traffic in a P2P

Hello!

I’m not an advanced user so I want the help of you to separate the upload in a P2P.
I have two rockets 34 dbi and a 30 dbi, what I want to do in this P2P is to separate the upload from download traffic.
E.g.
Interface
ether1 (dish 34dbi) => download traffic
ether2 (dish 34dbi) => download traffic

ether3 (dish 30dbi) => upload traffic

Is there a way for doing this? or even with one dish for download traffic and the other for upload traffic.

Thank you.

Hello,

you need OSPF.

configure a router in both sides with 2 routes and assign priorities different in both sides, then traffic will go through link1 and return through link2.

http://wiki.mikrotik.com/wiki/Setup_Dual_Wireless_Link_with_OSPF

Thank you for you answer, just more a few things,
Is just this enought to make OSPF to work?


Configuring the Radio A:

/ip address add address=192.168.0.1/24 interface=ether1
/ip address add address=192.168.10.1/24 interface=wlan1
/ip address add address=192.168.20.1/24 interface=wlan2
/routing ospf network add network=192.168.10.0/24 area=backbone1
/routing ospf network add network=192.168.20.0/24 area=backbone1
/routing ospf interface add interface=wlan1 cost=100

Configuring the Radio B:

/ip address add address=192.168.1.1/24 interface=ether1
/ip address add address=192.168.10.2/24 interface=wlan1
/ip address add address=192.168.20.2/24 interface=wlan2
/routing ospf network add network=192.168.10.0/24 area=backbone1
/routing ospf network add network=192.168.20.0/24 area=backbone1
/routing ospf interface add interface=wlan2 cost=100


or do I need put the area-id, or something else…
Can I do this with interface ether1-3 with rocket M5 in WDS?

Thank you!