Hello I am noob in networking and mikrotik configuring can some one help me why is my failover not working and I have lots of pocket loss when I ping google.com at an average of 20 - 25% pocket loss. By the way I have 2 Isp PLDT and GLOBE and using PPPoE configuration. Below is my configuration. Hope someone could enlighten me as I have hit brickwall. Thank you.
/interface ethernet
set [ find default-name=ether1 ] name=ISP1-PLDT
set [ find default-name=ether2 ] name=ISP2-GLOBE
set [ find default-name=ether3 ] name=LAN-ETH3
set [ find default-name=ether4 ] name=LAN-ETH4
set [ find default-name=ether5 ] comment=PPoE name=LAN-ETH5
set [ find default-name=ether6 ] name=LAN-ETH6
set [ find default-name=ether7 ] name=LAN-ETH7
set [ find default-name=ether8 ] name=MANAGEMENT
set [ find default-name=sfp-sfpplus1 ] comment=PPPoE
/ip pool
add name=dhcp_pool0 ranges=192.168.222.2-192.168.222.254
add name=pppoe-pool ranges=192.168.88.2-192.168.88.254
/ip dhcp-server
add address-pool=dhcp_pool0 interface=bridge-LAN name=dhcp1
/ppp profile
add local-address=192.168.88.1 name=ssv-20MB rate-limit=20M/20M remote-address=pppoe-pool
add dns-server=8.8.8.8 local-address=192.168.88.1 name=ssv-15mb rate-limit=15M/15M remote-address=pppoe-pool
/queue simple
add disabled=yes max-limit=900M/900M name=GLOBAL-CAP target=192.168.88.0/24
/queue tree
add max-limit=100M name=queue-voip packet-mark=voip parent=global priority=1
add max-limit=300M name=queue-web packet-mark=web parent=global priority=3
add max-limit=300M name=queue-bulk packet-mark=bulk parent=global priority=6
add max-limit=200M name=queue-default packet-mark=default parent=global
add max-limit=800M name=global-download parent=ISP1-PLDT
add max-limit=800M name=global-download2 parent=ISP2-GLOBE
add max-limit=800M name=upload-cap parent=bridge-LAN
/queue type
add kind=pcq name=default-down pcq-classifier=dst-address pcq-rate=80M
add kind=pcq name=default-up pcq-classifier=src-address pcq-rate=80M
/ppp profile
add local-address=192.168.88.1 name=ssv-def-80mb queue-type=default-up/default-down rate-limit=80M/80M remote-address=pppoe-pool
add local-address=192.168.88.1 name=ssv-50MB queue-type=default-up/default-down rate-limit=50M/50M remote-address=pppoe-pool
/routing table
add disabled=no fib name=to-ISP1-PLDT
add disabled=no fib name=to-ISP2-Globe
/interface bridge port
add bridge=bridge-LAN interface=LAN-ETH3
add bridge=bridge-LAN interface=LAN-ETH4
add bridge=bridge-LAN interface=LAN-ETH6
add bridge=bridge-LAN interface=LAN-ETH7
add bridge=bridge-LAN interface=MANAGEMENT
/interface pppoe-server server
add comment="PPPoE Server LAN-ETH5" default-profile=ssv-def-80mb disabled=no interface=LAN-ETH5 one-session-per-host=yes service-name="SSV-PPPoE-Server LAN5"
add comment="PPPoE Server SFP+" default-profile=ssv-def-80mb disabled=no interface=sfp-sfpplus1 one-session-per-host=yes service-name="SSV-PPPoE-Server SFP+"
/ip address
add address=192.168.222.1/24 interface=bridge-LAN network=192.168.222.0
add address=192.168.254.2/24 interface=ISP2-GLOBE network=192.168.254.0
add address=192.168.88.1/24 interface=LAN-ETH5 network=192.168.88.0
add address=192.168.88.1/24 interface=sfp-sfpplus1 network=192.168.88.0
/ip dhcp-client
add add-default-route=no interface=ISP1-PLDT
add add-default-route=no interface=ISP2-GLOBE
/ip dhcp-server network
add address=192.168.222.0/24 gateway=192.168.222.1
/ip dns
set allow-remote-requests=yes servers=8.8.8.8,1.1.1.1
/ip firewall mangle
add action=mark-connection chain=prerouting comment="# === FIREWALL MANGLE RULES (PCC on DHCP and PPPoE) ===" connection-mark=no-mark in-interface=bridge-LAN \
new-connection-mark=ISP1_conn per-connection-classifier=src-address:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark in-interface=bridge-LAN new-connection-mark=ISP2_conn per-connection-classifier=src-address:2/1
add action=mark-routing chain=prerouting connection-mark=ISP1_conn in-interface=bridge-LAN new-routing-mark=to-ISP1-PLDT
add action=mark-routing chain=prerouting connection-mark=ISP2_conn in-interface=bridge-LAN new-routing-mark=to-ISP2-Globe
add action=mark-connection chain=prerouting connection-mark=no-mark in-interface=LAN-ETH5 new-connection-mark=ISP1_conn per-connection-classifier=src-address:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark in-interface=LAN-ETH5 new-connection-mark=ISP2_conn per-connection-classifier=src-address:2/1
add action=mark-routing chain=prerouting connection-mark=ISP1_conn in-interface=LAN-ETH5 new-routing-mark=to-ISP1-PLDT
add action=mark-routing chain=prerouting connection-mark=ISP2_conn in-interface=LAN-ETH5 new-routing-mark=to-ISP2-Globe
add action=mark-connection chain=prerouting connection-mark=no-mark in-interface=sfp-sfpplus1 new-connection-mark=ISP1_conn per-connection-classifier=src-address:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark in-interface=sfp-sfpplus1 new-connection-mark=ISP2_conn per-connection-classifier=src-address:2/1
add action=mark-routing chain=prerouting connection-mark=ISP1_conn in-interface=sfp-sfpplus1 new-routing-mark=to-ISP1-PLDT
add action=mark-routing chain=prerouting connection-mark=ISP2_conn in-interface=sfp-sfpplus1 new-routing-mark=to-ISP2-Globe
add action=mark-packet chain=forward comment="VoIP / Zoom" dst-port=3478-3481 new-packet-mark=voip protocol=udp
add action=mark-packet chain=forward comment="RTP audio" dst-port=5004-5010 new-packet-mark=voip protocol=udp
add action=mark-packet chain=forward comment="Web traffic" new-packet-mark=web port=80,443 protocol=tcp
add action=mark-packet chain=forward comment=Torrents new-packet-mark=bulk port=6881-6999 protocol=tcp
add action=mark-packet chain=forward comment=qBittorrent new-packet-mark=bulk port=51413 protocol=tcp
add action=mark-packet chain=forward comment="Everything else" new-packet-mark=default
add action=mark-packet chain=forward content=googlevideo.com new-packet-mark=pm_youtube port=443 protocol=tcp
add action=mark-packet chain=forward new-packet-mark=pm_voip port=5060-5061,10000-20000 protocol=udp
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ISP1-PLDT
add action=masquerade chain=srcnat out-interface=ISP2-GLOBE
/ip route
add check-gateway=ping dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-table=to-ISP1-PLDT
add check-gateway=ping dst-address=0.0.0.0/0 gateway=192.168.254.254 routing-table=to-ISP2-Globe
add check-gateway=ping distance=1 dst-address=0.0.0.0/0 gateway=192.168.1.1
add check-gateway=ping distance=2 dst-address=0.0.0.0/0 gateway=192.168.254.254
/ppp secret
add name=ssv-front1 profile=ssv-def-80mb service=pppoe
add name=ssv-back-office profile=ssv-def-80mb service=pppoe
add name=SSV-001 profile=ssv-def-80mb service=pppoe