Community discussions

MikroTik App
 
craigdavids
just joined
Topic Author
Posts: 13
Joined: Mon Dec 12, 2011 6:59 pm

Bonding Wireless

Mon Mar 05, 2012 8:22 pm

Hello to all,

I was reading about the possiblity of do Wireless bonding of two wi-fi cards, in my Mikrotik router's, and I have found this manual page: http://wiki.mikrotik.com/wiki/Manual:Bonding_Examples , but in this page they use and create EoIP interfaces and they do bonding of them, and I do not understand why.
Why they do not do like in this page http://wiki.mikrotik.com/wiki/Bonding and do the bonding of the two wi-fi cards like they bond the two NIC cards? the bonding of wlan1 and wlan2 without EoIP interfaces?

Thanks in advanced,
Best Regards,
Craig
 
craigdavids
just joined
Topic Author
Posts: 13
Joined: Mon Dec 12, 2011 6:59 pm

Re: Bonding Wireless

Tue Mar 06, 2012 1:06 pm

Hello to all,

Can someone advise me and tell me why they do not do the bonding of 'wlan' like they do with 'ether': [admin@Router1] interface bonding> add slaves=ether1,ether2

Have anyone tried to do this: [admin@Router1] interface bonding> add slaves=wlan1, wlan2 , with success.

All comments and advises will be very appreciated.

Best Regards,
Craig
 
craigdavids
just joined
Topic Author
Posts: 13
Joined: Mon Dec 12, 2011 6:59 pm

Re: Bonding Wireless

Wed Mar 07, 2012 7:52 pm

Hello,

Someone?? Mikrotik experts??

Best Regards,
Craig
 
User avatar
cybercoder
Member Candidate
Member Candidate
Posts: 175
Joined: Tue Dec 07, 2010 11:20 pm
Location: Guilan, Iran
Contact:

Re: Bonding Wireless

Wed Mar 07, 2012 8:29 pm

Bonding could be used only on OSI layer 2 (Ethernet level) connections. Thus you need to create EoIP interfaces on each of the wireless links.
http://wiki.mikrotik.com/wiki/Bonding_Examples
 
craigdavids
just joined
Topic Author
Posts: 13
Joined: Mon Dec 12, 2011 6:59 pm

Re: Bonding Wireless

Thu Mar 08, 2012 2:24 pm

Hello,

@cybercoder; thanks for the answer and for your interest in my topic, but the thing that I do not understand is really that statement. Why Bonding could be used only on OSI layer 2 (Ethernet level) connections? And wireless works also on OSI Layer 2. What I'm trying to find is why they said that. That statement have to be based in some fact. What is the point and the subject in wireless level that forces Mikrotik to use EoIP interfaces when bonding in wireless.

Maybe there are a simple point that I'm missing.
More advises, comments, please...

Best regards,
Craig
 
InoX
Forum Guru
Forum Guru
Posts: 1966
Joined: Tue Jan 09, 2007 6:44 pm

Re: Bonding Wireless

Thu Mar 08, 2012 5:29 pm

I've used that tutorial with 2xSXT and speed is 330mbps UDP and 240mbps TCP. No eiop. Just like in tutorial.
 
craigdavids
just joined
Topic Author
Posts: 13
Joined: Mon Dec 12, 2011 6:59 pm

Re: Bonding Wireless

Thu Mar 08, 2012 6:58 pm

Hello,

@InoX: First thanks for the feedback, can you explain me better how do you do that.
You also said like the tutorial but which one, becuase I have posted two.

Best Regards,
Craig
 
InoX
Forum Guru
Forum Guru
Posts: 1966
Joined: Tue Jan 09, 2007 6:44 pm

Re: Bonding Wireless

Thu Mar 08, 2012 8:52 pm

 
adriaan777
just joined
Posts: 7
Joined: Wed Apr 18, 2012 10:29 pm

Re: Bonding Wireless

Sun Nov 11, 2012 10:21 am

Hi Inox

Just a question about the bonding you did. You said you used 2 SXT to do it. To what did you connect the 2 SXT's? Where they both looking at 1 uplink or did they look at each other? If they looked at 1 uplink, did you the use a RB with 5 ports behind them to do the bonding?
 
victors0991
newbie
Posts: 32
Joined: Wed Aug 02, 2017 6:42 pm

Re: Bonding Wireless

Sun Aug 06, 2017 11:09 pm

Hey your rsdio are in brigde mode?
 
victors0991
newbie
Posts: 32
Joined: Wed Aug 02, 2017 6:42 pm

Re: Bonding Wireless

Sun Aug 06, 2017 11:10 pm

Or what was your scenario using radio links?
 
InoX
Forum Guru
Forum Guru
Posts: 1966
Joined: Tue Jan 09, 2007 6:44 pm

Re: Bonding Wireless

Mon Aug 07, 2017 3:50 pm

2xRB750GL or any mikrotik router with gigabit, 2xSXT+2xSXT and Balance-rr. Radios were all in bridge, no other configuration needed. Configurations are on the routers between the ports with radios.
The radios were shielded and placed in the focal point of satellite dish antennas, it might not work with cheap antennas otherwise.


This is the tutorial i've used:

Router A
Log into your Mikrotik router
Create a Bonding interface: Here you tell the router which interfaces should be included in the bond. We are going to use round-robin mode, make ether1 and ether2 the slaves and give the interface a name of "bonding1". The different modes are explained in Mikrotik's Wiki/Bonding.
/interface bonding add slaves=ether1,ether2 name=bonding1 mode=balance-rr
Assign an IP to the bonding interface. Never assign ip's to the slave interfaces themselves.
/ip address add address 192.168.0.10/24 interface=bonding1
Add Link Monitoring so your router knows when a link is having a problem. We will use ARP for link monitoring and tell the router to watch the ARP on 192.168.0.20. An explaniation of the different types of link monitoring can be found at Mikrotik's Wiki/Bonding.
/interface bonding set bonding1 link-monitoring=arp arp-ip-targets=192.168.0.20

Router B
Log into your Mikrotik router
Create a Bonding interface: Here you tell the router which interfaces should be included in the bond. We are going to use round-robin mode, make ether1 and ether2 the slaves and give the interface a name of "bonding1". The different modes are explained in Mikrotik's Wiki/Bonding.
/interface bonding add slaves=ether1,ether2 name=bonding1 mode=balance-rr
Assign an IP to the bonding interface. Never assign ip's to the slave interfaces themselves.
/ip address add address 192.168.0.20/24 interface=bonding1

Add Link Monitoring so your router knows when a link is having a problem. We will use ARP for link monitoring and tell the router to watch the ARP on 192.168.0.10. An explaniation of the different types of link monitoring can be found at Mikrotik's Wiki/Bonding.
/interface bonding set bonding1 link-monitoring=arp arp-ip-targets=192.168.0.10

Ofcourse that radios needs to be connected between them, two wireless links like in the picture:
You do not have the required permissions to view the files attached to this post.
Last edited by InoX on Mon Aug 07, 2017 4:02 pm, edited 1 time in total.
 
victors0991
newbie
Posts: 32
Joined: Wed Aug 02, 2017 6:42 pm

Re: Bonding Wireless

Mon Aug 07, 2017 4:01 pm

You dont have problem with latency and disorder packet?? Because I am using 2x rocket ac lite ans 2x rocket m5 and 2 x rb750g and I get only 25mbps using balance rr
 
victors0991
newbie
Posts: 32
Joined: Wed Aug 02, 2017 6:42 pm

Re: Bonding Wireless

Mon Aug 07, 2017 4:04 pm

I am doing a test in our office and radio are 30 cm separate of other radio and radio links have different frequency.
 
InoX
Forum Guru
Forum Guru
Posts: 1966
Joined: Tue Jan 09, 2007 6:44 pm

Re: Bonding Wireless

Mon Aug 07, 2017 4:07 pm

There was no problem, the links worked for about 3 years until water found a way inside and reset one sxt to default. It was a well known design flaw. Both links must be set up very good because the weakest will dictate the speed.

LE
It wont work in the lab also. Just use cables between the ports and see if the traffic is distributed correctly.
It's impossible to make 4 radios work in one room no matter the antennas.
 
victors0991
newbie
Posts: 32
Joined: Wed Aug 02, 2017 6:42 pm

Re: Bonding Wireless

Mon Aug 07, 2017 6:13 pm

I do binding with cable and it works but with radio link dont work. I put radio near other radio to make link between them
 
victors0991
newbie
Posts: 32
Joined: Wed Aug 02, 2017 6:42 pm

Re: Bonding Wireless

Tue Aug 08, 2017 2:53 am

I dont know what happens. I turn on radio in my offce and it works. I am using balance alb and its works but I noticed tht in certain time bonding was down and suddenly up. Is that normal? I used jperf to do one tcp connection and I get 90mbps and I using arp monitoring
 
scampbell
Trainer
Trainer
Posts: 487
Joined: Thu Jun 22, 2006 5:20 am
Location: Wellington, NZ
Contact:

Re: Bonding Wireless

Thu Aug 10, 2017 8:11 am

If you are testing SXT's in one room I would recommend reducing Tx Power on all radios so they perform better. Default Tx power in one room gives terrible results.

Make sure you choose different non-conflicting channels for each radio pair, use scan or frequency usage to choose the best two channels.

I also recommend to set devices to use manual-tx-power and all-rates-fixed=6

You should aim for Tx/Rx signal (in the registration table) of -40dB if possible. The closer it is to 0dB the worse the performance as the radios are "shouting" at each other.

It can also stop you getting a headache from all the RF 8)
 
User avatar
erebusodora
Frequent Visitor
Frequent Visitor
Posts: 84
Joined: Mon Jan 23, 2012 3:46 pm
Location: Bulgaria

Re: Bonding Wireless

Mon Feb 04, 2019 3:18 pm

2xRB750GL or any mikrotik router with gigabit, 2xSXT+2xSXT and Balance-rr. Radios were all in bridge, no other configuration needed. Configurations are on the routers between the ports with radios.
The radios were shielded and placed in the focal point of satellite dish antennas, it might not work with cheap antennas otherwise.


This is the tutorial i've used:

Router A
Log into your Mikrotik router
Create a Bonding interface: Here you tell the router which interfaces should be included in the bond. We are going to use round-robin mode, make ether1 and ether2 the slaves and give the interface a name of "bonding1". The different modes are explained in Mikrotik's Wiki/Bonding.
/interface bonding add slaves=ether1,ether2 name=bonding1 mode=balance-rr
Assign an IP to the bonding interface. Never assign ip's to the slave interfaces themselves.
/ip address add address 192.168.0.10/24 interface=bonding1
Add Link Monitoring so your router knows when a link is having a problem. We will use ARP for link monitoring and tell the router to watch the ARP on 192.168.0.20. An explaniation of the different types of link monitoring can be found at Mikrotik's Wiki/Bonding.
/interface bonding set bonding1 link-monitoring=arp arp-ip-targets=192.168.0.20

Router B
Log into your Mikrotik router
Create a Bonding interface: Here you tell the router which interfaces should be included in the bond. We are going to use round-robin mode, make ether1 and ether2 the slaves and give the interface a name of "bonding1". The different modes are explained in Mikrotik's Wiki/Bonding.
/interface bonding add slaves=ether1,ether2 name=bonding1 mode=balance-rr
Assign an IP to the bonding interface. Never assign ip's to the slave interfaces themselves.
/ip address add address 192.168.0.20/24 interface=bonding1

Add Link Monitoring so your router knows when a link is having a problem. We will use ARP for link monitoring and tell the router to watch the ARP on 192.168.0.10. An explaniation of the different types of link monitoring can be found at Mikrotik's Wiki/Bonding.
/interface bonding set bonding1 link-monitoring=arp arp-ip-targets=192.168.0.10

Ofcourse that radios needs to be connected between them, two wireless links like in the picture:
I have the same scheme with the difference that I made it with Mikrotik 2x750gr3 boards, wireless links with 2x RB911G-5HPacD +2xRB911G-5HPacD. I have the following problem. I can not ping from A to A1, A2, B1, B2. Or from B1 to A1, A2, B2. Ping from B to A1,A2,B1,B2 also not working. Pings between the two bonding A to B runs and works. I tried to put / 32 addresses on A1, A2, B1, B2 but still can not ping. In these boards I can only get in with mac-telnet. When the link works without bonding and puts addresses / 24 devices A1, A2 accesses them without any problems. Would you explain exactly how you do addressing and routing to have access to A1, A2, B1, B2. My topic is: viewtopic.php?f=7&t=144833
Thanks in advance

Who is online

Users browsing this forum: KBW, tdw and 47 guests