Load Balancing help please

Hi guys I have a request for you I have a router rb2011 in it balancing 2 isp I wanted to bi ask me may bit error when I watch online movies or rewind this happens adding screen

i’m starting out with the mikrotik

so thank you for any advice

I did it according to this youtube tutorial: https://www.youtube.com/watch?v=GeuuNE3EPBA

add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface-list=WAN-1 new-connection-mark=WAN1_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface-list=WAN-2 new-connection-mark=WAN2_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address=!192.168.3.0/24 dst-address-type=!local in-interface-list=LAN \
    new-connection-mark=WAN1_conn passthrough=yes per-connection-classifier=\
    src-address:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address=!192.168.3.0/24 dst-address-type=!local in-interface-list=LAN \
    new-connection-mark=WAN2_conn passthrough=yes per-connection-classifier=\
    src-address:2/1
add action=mark-routing chain=prerouting connection-mark=WAN1_conn \
    in-interface-list=LAN new-routing-mark=to_WAN1 passthrough=yes
add action=mark-routing chain=prerouting connection-mark=WAN2_conn \
    in-interface-list=LAN new-routing-mark=to_WAN2 passthrough=yes
add action=mark-routing chain=output connection-mark=WAN1_conn \
    new-routing-mark=to_WAN1 passthrough=yes
add action=mark-routing chain=output connection-mark=WAN2_conn \
    new-routing-mark=to_WAN2 passthrough=yes



https://ctrlv.sk/SEDW
https://ctrlv.sk/MoF8

thank all who help you very much

Check this nice example here https://wiki.mikrotik.com/wiki/Manual:PCC

hello I tried it according to https://wiki.mikrotik.com/wiki/Manual:PCC

problem still the same

please for help

Export mangle rules, routes, adresses and NAT …

add action=mark-connection chain=input in-interface-list=WAN-1 \
    new-connection-mark=ISP1_conn passthrough=yes src-address-list=""
add action=mark-connection chain=input in-interface-list=WAN-2 \
    new-connection-mark=ISP2_conn passthrough=yes
add action=mark-routing chain=output connection-mark=ISP1_conn \
    new-routing-mark=to_ISP1 passthrough=yes
add action=mark-routing chain=output connection-mark=ISP2_conn \
    new-routing-mark=to_ISP2 passthrough=yes
add action=mark-connection chain=prerouting dst-address=!192.168.3.0/24 \
    in-interface-list=LAN new-connection-mark=ISP1_conn passthrough=yes \
    per-connection-classifier=both-addresses:2/0
add action=mark-connection chain=prerouting dst-address=!192.168.3.0/24 \
    in-interface-list=LAN new-connection-mark=ISP2_conn passthrough=yes \
    per-connection-classifier=both-addresses:2/1
add action=mark-routing chain=prerouting connection-mark=ISP1_conn \
    in-interface-list=LAN new-routing-mark=to_ISP1 passthrough=yes
add action=mark-routing chain=prerouting connection-mark=ISP2_conn \
    in-interface-list=LAN new-routing-mark=to_ISP2 passthrough=yes



/ip firewall nat
add action=masquerade chain=srcnat comment="NAT<=>ISP1" out-interface-list=\
    WAN-1
add action=masquerade chain=srcnat comment="NAT<=> ISP2" \
    out-interface-list=WAN-2



/ip route
add distance=1 gateway=62.152.xxx.163 routing-mark=to_ISP1
add distance=1 gateway=176.61.xxx.1 routing-mark=to_ISP2
add distance=1 gateway=62.152.xxx.163
add distance=1 gateway=176.61.xxx.1

Thank you very much

Sorry but this is not the example described here https://wiki.mikrotik.com/wiki/Manual:PCC

Also the last distance on your code should be 2 not 1 and instead of input use prerouting… I dont think those two were causing you a problem but anyways…

Change from both addresses to both addresses and ports just for testing and tell me if it works…

I’m going to set it up according to the wiki when I set it didn’t work properly

The example in the wiki ofcorse it works…!

Did you make the changes i told you in my previous post ?

now set by wiki

add action=accept chain=prerouting comment=ISP1 dst-address=62.152.xxx.0/24 \
    in-interface-list=LAN
add action=accept chain=prerouting comment=ISP2 dst-address=\
    176.61.xxx.0/24 in-interface-list=LAN
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface-list=WAN-1 new-connection-mark=ISP1_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface-list=WAN-2 new-connection-mark=ISP2_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN new-connection-mark=\
    ISP1_conn passthrough=yes per-connection-classifier=both-addresses:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN new-connection-mark=\
    ISP1_conn passthrough=yes per-connection-classifier=both-addresses:2/1
add action=mark-routing chain=prerouting connection-mark=ISP1_conn \
    in-interface-list=LAN new-routing-mark=to_ISP1 passthrough=yes
add action=mark-routing chain=prerouting connection-mark=ISP2_conn \
    in-interface-list=LAN new-routing-mark=to_ISP2 passthrough=yes
add action=mark-routing chain=output connection-mark=ISP1_conn \
    new-routing-mark=to_ISP1 passthrough=yes
add action=mark-routing chain=output connection-mark=ISP2_conn \
    new-routing-mark=to_ISP2 passthrough=yes



/ip firewall nat
add action=masquerade chain=srcnat comment="NAT<=>ISP1" out-interface-list=\
    WAN-1
add action=masquerade chain=srcnat comment="NAT<=> ISP2" \
    out-interface-list=WAN-2



/ip route
add check-gateway=ping distance=1 gateway=62.152.238.1 routing-mark=to_ISP1
add check-gateway=ping distance=1 gateway=176.61.241.1 routing-mark=to_ISP2
add check-gateway=ping distance=1 gateway=62.152.238.1
add check-gateway=ping distance=2 gateway=176.61.241.1

is not generally working

First, how are you testing to see if the mangle rules work?

I can give you a teamviewer and have a look

speedtest

Did you set the classifier to both addresses and ports ?

Why did tou add accept rules for your public IPs ?
Remove them…