I’m trying to create a bonding with 2 Wlans (as shown in the WiKi - Manual:Bonding Examples )
I get no ping to the other side
this is what I have
Router-1
/interface bridge
add l2mtu=1526 name=bridge1
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n disabled=no frequency=2457 \
l2mtu=2290 mode=station-pseudobridge ssid=123456 tx-power=5 tx-power-mode=\
card-rates wireless-protocol=802.11 wmm-support=enabled
set [ find default-name=wlan2 ] band=2ghz-b/g/n disabled=no frequency=2412 \
l2mtu=2290 mode=station-pseudobridge ssid=654321 tx-power=5 tx-power-mode=\
card-rates wireless-protocol=802.11 wmm-support=enabled
/interface eoip
add clamp-tcp-mss=yes mac-address=02:8F:50:48:AA:2C mtu=1500 name=eoip-tunnel1 \
remote-address=10.0.1.1 tunnel-id=1
add clamp-tcp-mss=yes mac-address=02:95:55:53:96:9C mtu=1500 name=eoip-tunnel2 \
remote-address=10.0.2.1 tunnel-id=2
/interface bonding
add link-monitoring=none name=bonding1 slaves=eoip-tunnel1,eoip-tunnel2
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=bonding1
/ip address
add address=192.168.0.1/24 interface=bridge1 network=192.168.0.0
add address=10.1.1.1/24 interface=wlan1 network=10.1.1.0
add address=10.2.2.1/24 interface=wlan2 network=10.2.2.0
Router-2
/interface bridge
add l2mtu=1526 name=bridge1
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n disabled=no frequency=2457 \
l2mtu=1600 mode=ap-bridge ssid=123456 tdma-period-size=auto tx-power=5 \
tx-power-mode=card-rates wireless-protocol=802.11 wmm-support=enabled
set [ find default-name=wlan2 ] band=2ghz-b/g/n disabled=no frequency=2412 \
l2mtu=1600 mode=ap-bridge ssid=654321 tdma-period-size=auto tx-power=5 \
tx-power-mode=card-rates wireless-protocol=802.11 wmm-support=enabled
/interface eoip
add clamp-tcp-mss=yes mac-address=02:8B:55:7D:A7:27 mtu=1500 name=eoip-tunnel1 \
remote-address=10.1.1.1 tunnel-id=1
add clamp-tcp-mss=yes mac-address=02:84:D0:56:4A:04 mtu=1500 name=eoip-tunnel2 \
remote-address=10.2.2.1 tunnel-id=2
/interface bonding
add link-monitoring=none name=bonding1 slaves=eoip-tunnel1,eoip-tunnel2
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=bonding1
/ip address
add address=192.168.0.2/24 interface=bridge1 network=192.168.0.0
add address=10.0.1.1/24 interface=wlan1 network=10.0.1.0
add address=10.0.2.1/24 interface=wlan1 network=10.0.2.0

