Use multi-wan together for LAN bridge

I have LAN bridge ip 192.168.1.1/24. I have WAN1 and WAN2 having different IPs. Both WANs provide equal speeds like 50Mbps so the total speed of both wan is 100Mbps. How should I configure the multi-wan manager and firewall or routing settings to use the full speed of each wan at the same time (for speedtest.net)?

Reference: https://youtu.be/XRijP4_0xog?t=582

Try MWAN3 package

1 Like
onfig globals 'globals'
        option mmx_mask '0x3F00'

config interface 'wan'
        option enabled '1'
        list track_ip '1.0.0.1'
        list track_ip '1.1.1.1'
        list track_ip '208.67.222.222'
        list track_ip '208.67.220.220'
        option family 'ipv4'
        option reliability '2'
        option initial_state 'online'
        option track_method 'ping'
        option count '1'
        option size '56'
        option max_ttl '60'
        option timeout '4'
        option interval '10'
        option failure_interval '5'
        option recovery_interval '5'
        option down '5'
        option up '5'

config interface 'wan6'
        option enabled '0'
        list track_ip '2606:4700:4700::1001'
        list track_ip '2606:4700:4700::1111'
        list track_ip '2620:0:ccd::2'
        list track_ip '2620:0:ccc::2'
        option family 'ipv6'
        option reliability '2'

config member 'wan_m1_w3'
        option interface 'wan'
        option metric '1'
        option weight '3'

config member 'wanb_m1_w3'
        option metric '1'
        option weight '3'
        option interface 'wan2'

config policy 'balanced'
        list use_member 'wan_m1_w3'
        list use_member 'wanb_m1_w3'
        option last_resort 'unreachable'

config rule 'https'
        option sticky '1'
        option dest_port '443'
        option proto 'tcp'
        option use_policy 'balanced'

config rule 'default_rule_v4'
        option dest_ip '0.0.0.0/0'
        option use_policy 'balanced'
        option family 'ipv4'

config interface 'wan2'
        option initial_state 'online'
        option family 'ipv4'
        list track_ip '1.0.0.3'
        option track_method 'ping'
        option reliability '1'
        option count '1'
        option size '56'
        option max_ttl '60'
        option timeout '4'
        option interval '10'
        option failure_interval '5'
        option recovery_interval '5'
        option down '5'
        option up '5'
        option enabled '1'

config interface 'wan62'
        option initial_state 'online'
        option family 'ipv4'
        option track_method 'ping'
        option reliability '1'
        option count '1'
        option size '56'
        option max_ttl '60'
        option timeout '4'
        option interval '10'
        option failure_interval '5'
        option recovery_interval '5'
        option down '5'
        option up '5'
        list track_ip '2606:4700:4700::1001'
        list track_ip '2606:4700:4700::111

How to config mwan3 to use wan and wan2 together for br-lan?

Follow this video. turn on subtitles https://youtu.be/syjYbEjjiZo

This is for failover. It is not using multi WAN together.