hello
I’m trying to make bonding work with 1 router that have 2 modems
and on the other side I have 1 ADSL line
when both modem\SIMS are working I get(when I do BW test “send”) ~ 1500 kbps ,and I can see both modem are sending the same amount of data .
but when I close 1 modem - I lose ping to the ADSL
how do I fix this?
how can I make the bonding do “fail over” or something like this when 1 modem not working?
this is what I have now
Router #1 (with 2 SIMS)
/interface bridge
add l2mtu=1526 name=bridge1
/interface eoip
add mac-address=02:10:15:44:E4:4E name=eoip-tunnel1 remote-address=\
81.91.111.34 tunnel-id=2
add mac-address=02:39:5B:B8:9C:C1 name=eoip-tunnel2 remote-address=\
81.91.111.34 tunnel-id=4
/interface bonding
add name=bonding1 slaves=eoip-tunnel1,eoip-tunnel2 transmit-hash-policy=\
layer-2-and-3
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=bonding1
/ip address
add address=10.0.0.1/24 interface=bonding1 network=10.0.0.0
/ip firewall nat
add action=masquerade chain=srcnat
Router #2 (with ADSL)
/interface bridge
add l2mtu=1518 name=bridge1 protocol-mode=rstp
/interface eoip
add mac-address=02:73:CF:06:01:2D name=eoip-tunnel1 remote-address=2.52.72.92 \
tunnel-id=2
add mac-address=02:CE:82:1A:4F:DF name=eoip-tunnel2 remote-address=\
174.14.134.204 tunnel-id=4
/interface bonding
add link-monitoring=mii-type1 name=bonding1 slaves=eoip-tunnel1,eoip-tunnel2 \
transmit-hash-policy=layer-2-and-3
/queue type
add kind=pcq name=pcq-upload-default pcq-classifier=src-address
add kind=pcq name=pcq-download-default pcq-classifier=dst-address
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=bonding1
/ip address
add address=10.0.0.122/24 interface=bridge1
/ip firewall nat
add action=masquerade chain=srcnat
/ip neighbor discovery
set eoip-tunnel1 disabled=yes
set eoip-tunnel2 disabled=yes
set bonding1 disabled=yes
what can I do\change?
Thanks ,