PCC Loadbalancing and distant Port forwarding not working

Hi there,

could someone help me please?

I try to config pcc load balancing with 5WAN and port forwarding.
I tried to make a simple http website in LAN and try to connect from outside.
It works only on WAN1 and WAN5. But not on WAN2,3 or WAN4.

But why?

So if anyone know what I did wrong please let me know

here my config:

/interface bridge
add name=LAN
/interface ethernet
set [ find default-name=ether1 ] name=WAN1
set [ find default-name=ether2 ] name=WAN2
set [ find default-name=ether3 ] name=WAN3
set [ find default-name=ether4 ] name=WAN4
set [ find default-name=ether5 ] name=WAN5
/interface list
add name=WAN-list
add name=LAN-list
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=10.0.0.100-10.0.0.200
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=LAN name=dhcp1
/interface bridge port
add bridge=LAN interface=ether12
add bridge=LAN interface=ether8
add bridge=LAN interface=ether11
/interface list member
add interface=WAN1 list=WAN-list
add interface=WAN2 list=WAN-list
add interface=WAN3 list=WAN-list
add interface=WAN4 list=WAN-list
add interface=WAN5 list=WAN-list
add interface=LAN list=LAN-list
/ip address
add address=10.0.0.75/24 interface=ether12 network=10.0.0.0
add address=81.223.59.xxx/29 interface=WAN1 network=81.223.59.xxx
add address=10.0.0.1 interface=ether11 network=10.0.0.1
add address=192.168.4.50/24 interface=WAN3 network=192.168.4.0
add address=192.168.7.50/24 interface=WAN4 network=192.168.7.0
add address=192.168.6.50/24 interface=WAN5 network=192.168.6.0
/ip dhcp-client
add add-default-route=no disabled=no interface=WAN5 use-peer-dns=no \
    use-peer-ntp=no
add add-default-route=no disabled=no interface=WAN2 use-peer-dns=no \
    use-peer-ntp=no
add add-default-route=no disabled=no interface=WAN3 use-peer-dns=no \
    use-peer-ntp=no
add add-default-route=no disabled=no interface=WAN4 use-peer-dns=no \
    use-peer-ntp=no
/ip dhcp-server lease
add address=10.0.0.144 client-id=1:0:50:56:93:f0:9a mac-address=\
    00:50:56:93:F0:9A server=dhcp1
/ip dhcp-server network
add address=10.0.0.0/24 dns-server=10.0.0.25,10.0.0.1 domain=dom-01.net \
    gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=10.0.0.25 use-doh-server=\
    https://dns.google/dns-query verify-doh-cert=yes
/ip dns static
add address=8.8.8.8 name=dns.google
add address=8.8.4.4 name=dns.google
/ip firewall address-list
add address=10.0.0.0/24 list=LAN_10
add address=10.0.0.0/24 list=LAN_IP
add address=10.0.0.0/8 list=RFC1918
add address=172.16.0.0/12 list=RFC1918
add address=192.168.0.0/16 list=RFC1918
add address=81.223.59.xxx/29 list=WAN1
add address=212.95.26.xxx/29 list=WAN3
add address=212.95.27.xxx/24 list=WAN4
add address=176.66.0.xxx/16 list=WAN5
add address=212.95.26.xxx/30 list=WAN2
add address=10.0.0.69-10.0.0.70 list=PBR_LAN5
add address=10.0.0.1-10.0.0.99 list=DT_SERVER
add address=10.0.0.100-10.0.0.200 list=DT_DHCP
add address=10.0.0.201-10.0.0.253 list=DT_FIX
/ip firewall filter
add action=drop chain=input comment="Drop Invalid connections" \
    connection-state=invalid
add action=accept chain=input comment="Zugang aus dem Hausnetz" dst-port=\
    8291,22,80 in-interface=LAN protocol=tcp
add action=accept chain=input comment=\
    "Allow Established/Related/Untracked connections" connection-state=\
    established,related
add action=accept chain=input comment="Allow ICMP" protocol=icmp
add action=accept chain=input comment="DNS nicht von extern" dst-port=53 \
    protocol=tcp src-address-list=LAN_IP
add action=accept chain=input dst-port=53 protocol=udp src-address-list=\
    LAN_IP
add action=drop chain=input comment="Drop everything else" log=yes \
    log-prefix=_DROP_IN_
add action=accept chain=forward dst-address=10.0.0.144 dst-port=80,443 \
    protocol=tcp
add action=accept chain=forward comment="allow port forwarding" \
    connection-nat-state=dstnat connection-state=new
add action=accept chain=forward comment="forward established" \
    connection-state=established,related
add action=accept chain=forward comment="allow internet traffic" \
    in-interface-list=LAN-list out-interface-list=WAN-list
add action=drop chain=forward comment="Forward Drop invalid " \
    connection-state=invalid
add action=drop chain=forward comment="forward drop anything"
/ip firewall mangle
add action=accept chain=prerouting comment=0001 dst-address-list=RFC1918 \
    src-address-list=RFC1918
add action=mark-routing chain=prerouting comment="GIT to WAN3" \
    connection-mark=WAN3_conn disabled=yes new-routing-mark=toWan3 \
    passthrough=no src-address=10.0.0.144
add action=mark-connection chain=forward comment="GIT to WAN3" \
    connection-state=new disabled=yes in-interface=WAN3 new-connection-mark=\
    WAN3_conn passthrough=no
add action=accept chain=prerouting comment=0002 dst-address=81.223.59.xx/29 \
    in-interface=LAN
add action=accept chain=prerouting dst-address=212.95.26.xxx/30 in-interface=\
    LAN
add action=accept chain=prerouting dst-address=212.95.26.xxx/29 in-interface=\
    LAN
add action=accept chain=prerouting dst-address=212.95.27.xxx/24 in-interface=\
    LAN
add action=accept chain=prerouting dst-address=176.66.0.xxx/16 in-interface=LAN
add action=mark-connection chain=prerouting comment="Incomming WAN marking" \
    connection-mark=no-mark in-interface=WAN1 new-connection-mark=WAN1_conn \
    passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN2 new-connection-mark=WAN2_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN3 new-connection-mark=WAN3_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN4 new-connection-mark=WAN4_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN5 new-connection-mark=WAN5_conn passthrough=yes
add action=mark-routing chain=output comment="outgoing WAN routing" \
    connection-mark=WAN1_conn new-routing-mark=toWan1 passthrough=no
add action=mark-routing chain=output connection-mark=WAN2_conn \
    new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=output connection-mark=WAN3_conn \
    new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=output connection-mark=WAN4_conn \
    new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=output connection-mark=WAN5_conn \
    new-routing-mark=toWan5 passthrough=no
add action=mark-connection chain=prerouting comment="3CX to WAN" disabled=yes \
    new-connection-mark=WAN2_conn passthrough=no src-address=10.0.0.50
add action=mark-connection chain=prerouting comment="Routing to WAN2 device" \
    connection-mark=no-mark disabled=yes dst-address=192.168.3.1 \
    dst-address-type="" in-interface-list=LAN-list new-connection-mark=\
    WAN2_conn passthrough=yes
add action=mark-connection chain=prerouting comment="Routing to WAN3 device" \
    connection-mark=no-mark disabled=yes dst-address=192.168.4.1 \
    dst-address-type="" in-interface-list=LAN-list new-connection-mark=\
    WAN3_conn passthrough=yes
add action=mark-connection chain=prerouting comment="Routing to WAN4 device" \
    connection-mark=no-mark disabled=yes dst-address=192.168.7.1 \
    dst-address-type="" in-interface-list=LAN-list new-connection-mark=\
    WAN4_conn passthrough=yes
add action=mark-connection chain=prerouting comment="Routing to WAN5 device" \
    connection-mark=no-mark disabled=yes dst-address=192.168.6.1 \
    dst-address-type="" in-interface-list=LAN-list new-connection-mark=\
    WAN5_conn passthrough=yes
add action=mark-connection chain=prerouting comment="Loadbalancing WAN 2- 5" \
    connection-mark=no-mark dst-address-type=!local in-interface-list=\
    LAN-list new-connection-mark=WAN2_conn passthrough=yes \
    per-connection-classifier=both-addresses:4/0
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN-list new-connection-mark=\
    WAN3_conn passthrough=yes per-connection-classifier=both-addresses:4/1
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN-list new-connection-mark=\
    WAN4_conn passthrough=yes per-connection-classifier=both-addresses:4/2
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN-list new-connection-mark=\
    WAN5_conn passthrough=yes per-connection-classifier=both-addresses:4/3
add action=mark-routing chain=prerouting comment="outgoing routing" \
    connection-mark=WAN1_conn in-interface-list=LAN-list new-routing-mark=\
    toWan1 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN2_conn \
    in-interface-list=LAN-list new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN3_conn \
    in-interface-list=LAN-list new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN4_conn \
    in-interface-list=LAN-list new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN5_conn \
    in-interface-list=LAN-list new-routing-mark=toWan5 passthrough=no
add action=mark-routing chain=prerouting comment="Test Mangle one WAN" \
    disabled=yes in-interface-list=LAN-list new-routing-mark=toWan3 \
    passthrough=yes
/ip firewall nat
add action=src-nat chain=srcnat comment="SNat for reverse exchange 35" \
    disabled=yes out-interface=WAN1 src-address=10.0.0.35 to-addresses=\
    81.223.59.194
add action=src-nat chain=srcnat comment="SNat for reverse proxy 222" \
    disabled=yes out-interface=WAN1 src-address=10.0.0.222 to-addresses=\
    81.223.59.194
add action=src-nat chain=srcnat comment="SNat for reverse syno 240" disabled=\
    yes out-interface=WAN1 src-address=10.0.0.240 to-addresses=81.223.59.194
add action=src-nat chain=srcnat comment="SNat for reverse printer 250" \
    disabled=yes out-interface=WAN1 src-address=10.0.0.250 to-addresses=\
    81.223.59.194
add action=dst-nat chain=dstnat comment="testwebsite W1" dst-address=\
    81.223.59.194 dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
    4400
add action=dst-nat chain=dstnat comment="testwebsite W4" dst-address=\
    212.95.27.226 dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
    4400
add action=dst-nat chain=dstnat comment="testwebsite W5" dst-address=\
    176.66.79.218 dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
    4400
add action=dst-nat chain=dstnat comment="GitLab incomming W3" dst-address=\
    212.95.26.84 dst-address-type=local dst-port=80,443,22 protocol=tcp \
    to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat comment="GitLab incomming W2" dst-address=\
    212.95.26.85 dst-address-type=local dst-port=80,443,22 protocol=tcp \
    to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat dst-address=212.95.26.84 dst-address-type=\
    local dst-port=22 in-interface=WAN3 protocol=udp to-addresses=10.0.0.144 \
    to-ports=22
add action=src-nat chain=srcnat connection-mark=WAN3_connPF disabled=yes \
    out-interface=WAN3 src-address=10.0.0.144 to-addresses=212.95.26.84
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN1
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN2
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN3
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN4
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN5
add action=masquerade chain=srcnat comment="MAIN Masquerade" disabled=yes \
    out-interface-list=WAN-list src-address-list=RFC1918
add action=masquerade chain=srcnat comment="MAIN Masquerade" disabled=yes
add action=dst-nat chain=dstnat comment="Website incomming" disabled=yes \
    dst-port=80,443 in-interface=WAN1 protocol=tcp to-addresses=10.0.0.222
add action=dst-nat chain=dstnat comment="FTP incomming" disabled=yes \
    dst-port=20,21,990,9990-10000 in-interface=WAN1 protocol=tcp \
    to-addresses=10.0.0.217
add action=dst-nat chain=dstnat comment="3CX incomming" disabled=yes \
    dst-address=212.95.26.xxx dst-port=5160,5060-5062,5090,443,5001,2197,5223 \
    protocol=tcp src-port="" to-addresses=10.0.0.50
add action=dst-nat chain=dstnat disabled=yes dst-address=212.95.26.xxx \
    dst-port=5160,5060-5062,5090,5001,2197,5223,9000-32560 port="" protocol=\
    udp src-port="" to-addresses=10.0.0.50
add action=accept chain=srcnat comment="2CX Outgoing" disabled=yes protocol=\
    tcp src-address=10.0.0.50 src-port=2195,2196,443,2528
add action=accept chain=srcnat comment="2CX Outgoing" disabled=yes protocol=\
    udp src-address=10.0.0.50 src-port=48000-65535
/ip route
add check-gateway=ping comment="Routing WAN1" distance=1 gateway=4.2.2.2 \
    routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN2" disabled=yes distance=2 \
    gateway=4.2.2.3 routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN3" disabled=yes distance=2 \
    gateway=4.2.2.4 routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN4" disabled=yes distance=2 \
    gateway=1.1.1.1 routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN5" disabled=yes distance=2 \
    gateway=1.0.0.1 routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="Routing WAN2" distance=1 gateway=4.2.2.3 \
    routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN1" disabled=yes distance=2 \
    gateway=4.2.2.2 routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN3" disabled=yes distance=3 \
    gateway=4.2.2.4 routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN4" disabled=yes distance=3 \
    gateway=1.1.1.1 routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN5" disabled=yes distance=3 \
    gateway=1.0.0.1 routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="Routing WAN3" distance=1 gateway=4.2.2.4 \
    routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN1" disabled=yes distance=3 \
    gateway=4.2.2.2 routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN2" disabled=yes distance=3 \
    gateway=4.2.2.3 routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN4" disabled=yes distance=4 \
    gateway=1.1.1.1 routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN5" disabled=yes distance=4 \
    gateway=1.0.0.1 routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="Routing WAN4" distance=1 gateway=1.1.1.1 \
    routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN1" disabled=yes distance=4 \
    gateway=4.2.2.2 routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN2" disabled=yes distance=4 \
    gateway=4.2.2.3 routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN3" disabled=yes distance=4 \
    gateway=4.2.2.4 routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN5" disabled=yes distance=5 \
    gateway=1.0.0.1 routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="Routing WAN5" distance=1 gateway=1.0.0.1 \
    routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN1" disabled=yes distance=5 \
    gateway=4.2.2.2 routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN2" disabled=yes distance=5 \
    gateway=4.2.2.3 routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN3" disabled=yes distance=5 \
    gateway=4.2.2.4 routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN4" disabled=yes distance=5 \
    gateway=1.1.1.1 routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="default wan 1" distance=1 gateway=4.2.2.2 \
    target-scope=11
add check-gateway=ping comment="default wan 2" distance=1 gateway=4.2.2.3 \
    target-scope=11
add check-gateway=ping comment="default wan 4" distance=1 gateway=1.1.1.1 \
    target-scope=11
add check-gateway=ping comment="default wan 3" distance=1 gateway=4.2.2.4 \
    target-scope=11
add check-gateway=ping comment="default wan 5" distance=1 gateway=1.0.0.1 \
    target-scope=11
add comment="Monitor WAN5" distance=1 dst-address=1.0.0.1/32 gateway=\
    176.66.0.xxx scope=10
add comment="Monitor WAN4" distance=1 dst-address=1.1.1.1/32 gateway=\
    212.95.27.xxx scope=10
add comment="Monitor WAN1" distance=1 dst-address=4.2.2.2/32 gateway=\
    81.223.59.xxx scope=10
add comment="Monitor WAN2" distance=1 dst-address=4.2.2.3/32 gateway=\
    212.95.26.xxx scope=10
add comment="Monitor WAN3" distance=1 dst-address=4.2.2.4/32 gateway=\
    212.95.26.xxx scope=10
/system clock
set time-zone-name=Europe/Vienna
/tool graphing interface
add interface=WAN1
add interface=WAN2
add interface=WAN3
add interface=WAN4
add interface=WAN5
add interface=LAN
/tool sniffer
set file-name=testsniff filter-interface=WAN3

Dont name your bridge LAN, its very confusing to the reader and probably to the router.
Name it something else like bridge-lan

I have no idea what you are doing with this so called lan subnet, is it supposed to be attached to the bridge, ether12, ether11.
You are very confused…

/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=LAN name=dhcp1

/ip pool
add name=dhcp_pool0 ranges=10.0.0.100-10.0.0.200

/interface bridge port
add bridge=LAN interface=ether12
add bridge=LAN interface=ether8
add bridge=LAN interface=ether11

/ip address
add address=10.0.0.75/24 interface=ether12 network=10.0.0.0
add address=81.223.59.xxx/29 interface=WAN1 network=81.223.59.xxx
add address=10.0.0.1 interface=ether11 network=10.0.0.1

I also dont think you have a clue about port forwarding with a rule like this… Created a youtube/google monster… ( very disorganized rule order as well )
add action=accept chain=forward dst-address=10.0.0.144 dst-port=80,443
protocol=tcp

When the rest of the config is cleaned up I would scrap all your mangles and routes until you have a coherent plan.
If you are going to have port forwarding, which WANS will be used by which Servers???


For the FIVE WANS, is there a priority for failover, will they always be 1, to 2 to 3, to 4, to 5
OR special orders
1 to 3,4,5,2
2 to 1,4,5,3
3. to etc etc…

OR if one wan goes down do you want the traffic more or less equally spread to all other WANS. etc…

Hi there,

thanks for your replay.
I renamed the LAN Bridge and deleted all disabled Items.
I hope its now better to read.
And yes the failover is always 1,2,3,4,5

If you could check again it would be great.

My last device was a zywall and it was a bit easier for me to get this config to work.


/interface bridge
add name=bridge-LAN
/interface ethernet
set [ find default-name=ether1 ] name=WAN1
set [ find default-name=ether2 ] name=WAN2
set [ find default-name=ether3 ] name=WAN3
set [ find default-name=ether4 ] name=WAN4
set [ find default-name=ether5 ] name=WAN5
/interface list
add name=WAN-list
add name=LAN-list
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=10.0.0.100-10.0.0.200
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=bridge-LAN name=dhcp1
/interface bridge port
add bridge=bridge-LAN interface=ether12
add bridge=bridge-LAN interface=ether8
add bridge=bridge-LAN interface=ether11
/interface list member
add interface=WAN1 list=WAN-list
add interface=WAN2 list=WAN-list
add interface=WAN3 list=WAN-list
add interface=WAN4 list=WAN-list
add interface=WAN5 list=WAN-list
add interface=bridge-LAN list=LAN-list
/ip address
add address=10.0.0.75/24 interface=ether12 network=10.0.0.0
add address=81.223.59.xxx/29 interface=WAN1 network=81.223.59.192
add address=10.0.0.1 interface=ether11 network=10.0.0.1
add address=192.168.4.50/24 interface=WAN3 network=192.168.4.0
add address=192.168.7.50/24 interface=WAN4 network=192.168.7.0
add address=192.168.6.50/24 interface=WAN5 network=192.168.6.0
/ip dhcp-client
add add-default-route=no disabled=no interface=WAN5 use-peer-dns=no \
    use-peer-ntp=no
add add-default-route=no disabled=no interface=WAN2 use-peer-dns=no \
    use-peer-ntp=no
add add-default-route=no disabled=no interface=WAN3 use-peer-dns=no \
    use-peer-ntp=no
add add-default-route=no disabled=no interface=WAN4 use-peer-dns=no \
    use-peer-ntp=no
/ip dhcp-server lease
add address=10.0.0.144 client-id=1:0:50:56:93:f0:9a mac-address=\
    00:50:56:93:F0:9A server=dhcp1
/ip dhcp-server network
add address=10.0.0.0/24 dns-server=10.0.0.25,10.0.0.1 domain=dom-01.net \
    gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=10.0.0.25 use-doh-server=\
    https://dns.google/dns-query verify-doh-cert=yes
/ip dns static
add address=8.8.8.8 name=dns.google
add address=8.8.4.4 name=dns.google
/ip firewall address-list
add address=10.0.0.0/24 list=LAN_10
add address=10.0.0.0/24 list=LAN_IP
add address=10.0.0.0/8 list=RFC1918
add address=172.16.0.0/12 list=RFC1918
add address=192.168.0.0/16 list=RFC1918
add address=10.0.0.69-10.0.0.70 list=PBR_LAN5
add address=10.0.0.1-10.0.0.99 list=DT_SERVER
add address=10.0.0.100-10.0.0.200 list=DT_DHCP
add address=10.0.0.201-10.0.0.253 list=DT_FIX
/ip firewall filter
add action=drop chain=input comment="Drop Invalid connections" \
    connection-state=invalid
add action=accept chain=input comment="Zugang aus dem Hausnetz" dst-port=\
    8291,22,80 in-interface=bridge-LAN protocol=tcp
add action=accept chain=input comment=\
    "Allow Established/Related/Untracked connections" connection-state=\
    established,related
add action=accept chain=input comment="Allow ICMP" protocol=icmp
add action=accept chain=input comment="DNS nicht von extern" dst-port=53 \
    protocol=tcp src-address-list=LAN_IP
add action=accept chain=input dst-port=53 protocol=udp src-address-list=\
    LAN_IP
add action=drop chain=input comment="Drop everything else" log=yes \
    log-prefix=_DROP_IN_
add action=accept chain=forward comment="allow port forwarding" \
    connection-nat-state=dstnat connection-state=new
add action=accept chain=forward comment="forward established" \
    connection-state=established,related
add action=accept chain=forward comment="allow internet traffic" \
    in-interface-list=LAN-list out-interface-list=WAN-list
add action=drop chain=forward comment="Forward Drop invalid " \
    connection-state=invalid
add action=drop chain=forward comment="forward drop anything"
/ip firewall mangle
add action=accept chain=prerouting comment=0001 dst-address-list=RFC1918 \
    src-address-list=RFC1918
add action=accept chain=prerouting comment=0002 dst-address=81.223.59.xxx/29 \
    in-interface=bridge-LAN
add action=accept chain=prerouting dst-address=212.95.26.xxx/30 in-interface=\
    bridge-LAN
add action=accept chain=prerouting dst-address=212.95.26.xxx/29 in-interface=\
    bridge-LAN
add action=accept chain=prerouting dst-address=212.95.27.xxx/24 in-interface=\
    bridge-LAN
add action=accept chain=prerouting dst-address=176.66.0.xxx/16 in-interface=\
    bridge-LAN
add action=mark-connection chain=prerouting comment="Incomming WAN marking" \
    connection-mark=no-mark in-interface=WAN1 new-connection-mark=WAN1_conn \
    passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN2 new-connection-mark=WAN2_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN3 new-connection-mark=WAN3_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN4 new-connection-mark=WAN4_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
    in-interface=WAN5 new-connection-mark=WAN5_conn passthrough=yes
add action=mark-routing chain=output comment="outgoing WAN routing" \
    connection-mark=WAN1_conn new-routing-mark=toWan1 passthrough=no
add action=mark-routing chain=output connection-mark=WAN2_conn \
    new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=output connection-mark=WAN3_conn \
    new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=output connection-mark=WAN4_conn \
    new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=output connection-mark=WAN5_conn \
    new-routing-mark=toWan5 passthrough=no
add action=mark-connection chain=prerouting comment="Loadbalancing WAN 2- 5" \
    connection-mark=no-mark dst-address-type=!local in-interface-list=\
    LAN-list new-connection-mark=WAN2_conn passthrough=yes \
    per-connection-classifier=both-addresses:4/0
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN-list new-connection-mark=\
    WAN3_conn passthrough=yes per-connection-classifier=both-addresses:4/1
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN-list new-connection-mark=\
    WAN4_conn passthrough=yes per-connection-classifier=both-addresses:4/2
add action=mark-connection chain=prerouting connection-mark=no-mark \
    dst-address-type=!local in-interface-list=LAN-list new-connection-mark=\
    WAN5_conn passthrough=yes per-connection-classifier=both-addresses:4/3
add action=mark-routing chain=prerouting comment="outgoing routing" \
    connection-mark=WAN1_conn in-interface-list=LAN-list new-routing-mark=\
    toWan1 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN2_conn \
    in-interface-list=LAN-list new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN3_conn \
    in-interface-list=LAN-list new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN4_conn \
    in-interface-list=LAN-list new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN5_conn \
    in-interface-list=LAN-list new-routing-mark=toWan5 passthrough=no
/ip firewall nat
add action=dst-nat chain=dstnat comment="testwebsite W1" dst-address=\
    81.223.59.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
    4400
add action=dst-nat chain=dstnat comment="testwebsite W4" dst-address=\
    212.95.27.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
    4400
add action=dst-nat chain=dstnat comment="testwebsite W5" dst-address=\
    176.66.79.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
    4400
add action=dst-nat chain=dstnat comment="test website W3" dst-address=\
    212.95.26.xxx dst-address-type=local dst-port=80,443,22 protocol=tcp \
    to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat comment="test website W2" dst-address=\
    212.95.26.xxx dst-address-type=local dst-port=80,443,22 protocol=tcp \
    to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat dst-address=212.95.26.xxx dst-address-type=\
    local dst-port=22 in-interface=WAN3 protocol=udp to-addresses=10.0.0.144 \
    to-ports=22
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN1
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN2
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN3
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN4
add action=masquerade chain=srcnat comment="WAN Masquerade" out-interface=\
    WAN5
/ip route
add check-gateway=ping comment="Routing WAN1" distance=1 gateway=4.2.2.2 \
    routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN2" distance=2 gateway=4.2.2.3 \
    routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN3" distance=2 gateway=4.2.2.4 \
    routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN4" distance=2 gateway=1.1.1.1 \
    routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="failover WAN5" distance=2 gateway=1.0.0.1 \
    routing-mark=toWan1 target-scope=11
add check-gateway=ping comment="Routing WAN2" distance=1 gateway=4.2.2.3 \
    routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN1" distance=2 gateway=4.2.2.2 \
    routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN4" distance=3 gateway=1.1.1.1 \
    routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN3" distance=3 gateway=4.2.2.4 \
    routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="failover WAN5" distance=3 gateway=1.0.0.1 \
    routing-mark=toWan2 target-scope=11
add check-gateway=ping comment="Routing WAN3" distance=1 gateway=4.2.2.4 \
    routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN1" distance=3 gateway=4.2.2.2 \
    routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN2" distance=3 gateway=4.2.2.3 \
    routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN4" distance=4 gateway=1.1.1.1 \
    routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="failover WAN5" distance=4 gateway=1.0.0.1 \
    routing-mark=toWan3 target-scope=11
add check-gateway=ping comment="Routing WAN4" distance=1 gateway=1.1.1.1 \
    routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN1" distance=4 gateway=4.2.2.2 \
    routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN2" distance=4 gateway=4.2.2.3 \
    routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN3" distance=4 gateway=4.2.2.4 \
    routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="failover WAN5" distance=5 gateway=1.0.0.1 \
    routing-mark=toWan4 target-scope=11
add check-gateway=ping comment="Routing WAN5" distance=1 gateway=1.0.0.1 \
    routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN1" distance=5 gateway=4.2.2.2 \
    routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN2" distance=5 gateway=4.2.2.3 \
    routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN4" distance=5 gateway=1.1.1.1 \
    routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="failover WAN3" distance=5 gateway=4.2.2.4 \
    routing-mark=toWan5 target-scope=11
add check-gateway=ping comment="default wan 1" distance=1 gateway=4.2.2.2 \
    target-scope=11
add check-gateway=ping comment="default wan 2" distance=1 gateway=4.2.2.3 \
    target-scope=11
add check-gateway=ping comment="default wan 4" distance=1 gateway=1.1.1.1 \
    target-scope=11
add check-gateway=ping comment="default wan 3" distance=1 gateway=4.2.2.4 \
    target-scope=11
add check-gateway=ping comment="default wan 5" distance=1 gateway=1.0.0.1 \
    target-scope=11
add comment="Monitor WAN5" distance=1 dst-address=1.0.0.1/32 gateway=\
    176.66.0.xxx scope=10
add comment="Monitor WAN4" distance=1 dst-address=1.1.1.1/32 gateway=\
    212.95.27.xxx scope=10
add comment="Monitor WAN1" distance=1 dst-address=4.2.2.2/32 gateway=\
    81.223.59.xxx scope=10
add comment="Monitor WAN2" distance=1 dst-address=4.2.2.3/32 gateway=\
    212.95.26.xxx scope=10
add comment="Monitor WAN3" distance=1 dst-address=4.2.2.4/32 gateway=\
    212.95.26.xxx scope=10
/system clock
set time-zone-name=Europe/Vienna
/tool graphing interface
add interface=WAN1
add interface=WAN2
add interface=WAN3
add interface=WAN4
add interface=WAN5
add interface=bridge-LAN
/tool sniffer
set file-name=testsniff filter-interface=WAN3

I came from zyxel myself, and yes its more ProSumer, whereas MT is more IT based programming.
For example zyxel has always had a loop back button. I never knew what it did or why it was there, but on MT you have to accomplish the same thing by understanding source nat and destination nat more completely. MT makes one a better network user.

I will have a look at your config.

Sorry still dont understand the config,

(1) Why does the bridge not have an IP address assigned to it?? Why does ether 12 instead have an IP address??
Why not use something standard anyway like 10.0.0**.1**/24
Why does ether11 have some bizarro subnet assigned…??
/ip address
add address=10.0.0.75/24 interface=ether12 network=10.0.0.0
add address=81.223.59.xxx/29 interface=WAN1 network=81.223.59.192
add address=10.0.0.1 interface=ether11 network=10.0.0.1
add address=192.168.4.50/24 interface=WAN3 network=192.168.4.0
add address=192.168.7.50/24 interface=WAN4 network=192.168.7.0
add address=192.168.6.50/24 interface=WAN5 network=192.168.6.0

As noted previously the dhcp-server indicates bridge.. so no consistency.
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=LAN name=dhcp1

Conclusion: You didnt read my post at all, and thus I cannot help further, hopefully someone else has more patience, good luck.

hi,

sorry, I don’t got what you meant.
Yes I read your post and thank you very much.

this line :
add address=10.0.0.1 interface=ether11 network=10.0.0.1
should be
add address=10.0.0.1/24 interface=ether11 network=10.0.0.0

but what’s wrong with this line?
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=bridge-LAN name=dhcp1

I renamed LAN to bridge-LAN as you told me.

eth11 = my local network
eth12 = port to connect direct to the device if needed

why needs the bridge there own ip?!?

The point being,
a. you have associated the address pool with the bridge-lan via the dhcp-server.
b. you associated the Ip address with two different etherports, that are also members of the bridge but NOT the bridge.

and yet dont see the problem, means you either dont understand networking, or mikrotik OS, or both.
How bout ether8, what is that connected to as its also on the bridge… what IPs do the users get connected to ether8.

What I am saying is you dont need any bridge.

ok, I thought the bridge work like a internal switch.
I removed it now and adapt the config.
I try to learn to make it on the right way.

If you could give me the next idea?

/interface ethernet
set [ find default-name=ether1 ] name=WAN1
set [ find default-name=ether2 ] name=WAN2
set [ find default-name=ether3 ] name=WAN3
set [ find default-name=ether4 ] name=WAN4
set [ find default-name=ether5 ] name=WAN5
set [ find default-name=ether11 ] name=ether11-LAN
/interface list
add name=WAN-list
add name=LAN-list
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=10.0.0.100-10.0.0.200
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=ether11-LAN name=dhcp1
/interface list member
add interface=WAN1 list=WAN-list
add interface=WAN2 list=WAN-list
add interface=WAN3 list=WAN-list
add interface=WAN4 list=WAN-list
add interface=WAN5 list=WAN-list
add interface=ether11-LAN list=LAN-list
/ip address
add address=81.223.59.xxx/29 interface=WAN1 network=81.223.59.xxx
add address=10.0.0.1/24 interface=ether11-LAN network=10.0.0.0
add address=192.168.4.xxx/24 interface=WAN3 network=192.168.4.0
add address=192.168.7.50/24 interface=WAN4 network=192.168.7.0
add address=192.168.6.50/24 interface=WAN5 network=192.168.6.0
add address=192.168.3.20/24 interface=WAN2 network=192.168.3.0
add address=212.95.26.xxx/30 interface=WAN2 network=212.95.26.xxx
add address=212.95.26.xxx/29 interface=WAN3 network=212.95.26.xxx
add address=212.95.27.xxx/24 interface=WAN4 network=212.95.27.xxx
add address=176.66.79.xxx/16 interface=WAN5 network=176.66.0.xxx
/ip dhcp-client
add add-default-route=no interface=WAN5 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN2 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN3 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN4 use-peer-dns=no use-peer-ntp=no
/ip dhcp-server lease
add address=10.0.0.144 client-id=1:0:50:56:93:f0:9a mac-address=
00:50:56:93:F0:9A server=dhcp1
/ip dhcp-server network
add address=10.0.0.0/24 dns-server=10.0.0.25,10.0.0.1 domain=dom-01.net
gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=10.0.0.25 use-doh-server=
https://dns.google/dns-query > verify-doh-cert=yes
/ip dns static
add address=8.8.8.8 name=dns.google
add address=8.8.4.4 name=dns.google
/ip firewall address-list
add address=10.0.0.0/24 list=LAN_10
add address=10.0.0.0/24 list=LAN_IP
add address=10.0.0.0/8 list=RFC1918
add address=172.16.0.0/12 list=RFC1918
add address=192.168.0.0/16 list=RFC1918
add address=10.0.0.69-10.0.0.70 list=PBR_LAN5
add address=10.0.0.1-10.0.0.99 list=DT_SERVER
add address=10.0.0.100-10.0.0.200 list=DT_DHCP
add address=10.0.0.201-10.0.0.253 list=DT_FIX
/ip firewall filter
add action=drop chain=input comment=“Drop Invalid connections”
connection-state=invalid
add action=accept chain=input comment=“Zugang aus dem Hausnetz” dst-port=
8291,22,80 in-interface=ether11-LAN protocol=tcp
add action=accept chain=input comment=
“Allow Established/Related/Untracked connections” connection-state=
established,related
add action=accept chain=input comment=“Allow ICMP” protocol=icmp
add action=accept chain=input comment=“DNS nicht von extern” dst-port=53
protocol=tcp src-address-list=LAN_IP
add action=accept chain=input dst-port=53 protocol=udp src-address-list=
LAN_IP
add action=drop chain=input comment=“Drop everything else” log=yes
log-prefix=DROP_IN
add action=accept chain=forward comment=“allow port forwarding”
connection-nat-state=dstnat connection-state=new
add action=accept chain=forward comment=“forward established”
connection-state=established,related
add action=accept chain=forward comment=“allow internet traffic”
in-interface-list=LAN-list out-interface-list=WAN-list
add action=drop chain=forward comment="Forward Drop invalid "
connection-state=invalid
add action=drop chain=forward comment=“forward drop anything”
/ip firewall mangle
add action=accept chain=prerouting comment=0001 dst-address-list=RFC1918
src-address-list=RFC1918
add action=accept chain=prerouting comment=0002 dst-address=81.223.59.xxx/29
in-interface=ether11-LAN
add action=accept chain=prerouting dst-address=212.95.26.xxx/30 in-interface=
ether11-LAN
add action=accept chain=prerouting dst-address=212.95.26.xxx/29 in-interface=
ether11-LAN
add action=accept chain=prerouting dst-address=212.95.27.xxx/24 in-interface=
ether11-LAN
add action=accept chain=prerouting dst-address=176.66.0.xx/16 in-interface=
ether11-LAN
add action=mark-connection chain=prerouting comment=“Incomming WAN marking”
connection-mark=no-mark in-interface=WAN1 new-connection-mark=WAN1_conn
passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN2 new-connection-mark=WAN2_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN3 new-connection-mark=WAN3_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN4 new-connection-mark=WAN4_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN5 new-connection-mark=WAN5_conn passthrough=yes
add action=mark-routing chain=output comment=“outgoing WAN routing”
connection-mark=WAN1_conn new-routing-mark=toWan1 passthrough=no
add action=mark-routing chain=output connection-mark=WAN2_conn
new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=output connection-mark=WAN3_conn
new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=output connection-mark=WAN4_conn
new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=output connection-mark=WAN5_conn
new-routing-mark=toWan5 passthrough=no
add action=mark-connection chain=prerouting comment=“Loadbalancing WAN 2- 5”
connection-mark=no-mark dst-address-type=!local in-interface-list=
LAN-list new-connection-mark=WAN2_conn passthrough=yes
per-connection-classifier=both-addresses:4/0
add action=mark-connection chain=prerouting connection-mark=no-mark
dst-address-type=!local in-interface-list=LAN-list new-connection-mark=
WAN3_conn passthrough=yes per-connection-classifier=both-addresses:4/1
add action=mark-connection chain=prerouting connection-mark=no-mark
dst-address-type=!local in-interface-list=LAN-list new-connection-mark=
WAN4_conn passthrough=yes per-connection-classifier=both-addresses:4/2
add action=mark-connection chain=prerouting connection-mark=no-mark
dst-address-type=!local in-interface-list=LAN-list new-connection-mark=
WAN5_conn passthrough=yes per-connection-classifier=both-addresses:4/3
add action=mark-routing chain=prerouting comment=“outgoing routing”
connection-mark=WAN1_conn in-interface-list=LAN-list new-routing-mark=
toWan1 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN2_conn
in-interface-list=LAN-list new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN3_conn
in-interface-list=LAN-list new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN4_conn
in-interface-list=LAN-list new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN5_conn
in-interface-list=LAN-list new-routing-mark=toWan5 passthrough=no
/ip firewall nat
add action=dst-nat chain=dstnat comment=“testwebsite W1” dst-address=
81.223.59.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=
4400
add action=dst-nat chain=dstnat comment=“testwebsite W4” dst-address=
212.95.27.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=
4400
add action=dst-nat chain=dstnat comment=“testwebsite W5” dst-address=
176.66.79.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=
4400
add action=dst-nat chain=dstnat comment=“test website W3” dst-address=
212.95.26.xxx dst-address-type=local dst-port=80,443,22 protocol=tcp
to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat comment=“test website W2” dst-address=
212.95.26.xxx dst-address-type=local dst-port=80,443,22 protocol=tcp
to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat dst-address=212.95.26.xxx dst-address-type=
local dst-port=22 in-interface=WAN3 protocol=udp to-addresses=10.0.0.144
to-ports=22
add action=masquerade chain=srcnat comment=“WAN Masquerade” out-interface=
WAN1
add action=masquerade chain=srcnat comment=“WAN Masquerade” out-interface=
WAN2
add action=masquerade chain=srcnat comment=“WAN Masquerade” out-interface=
WAN3
add action=masquerade chain=srcnat comment=“WAN Masquerade” out-interface=
WAN4
add action=masquerade chain=srcnat comment=“WAN Masquerade” out-interface=
WAN5
/ip route
add check-gateway=ping comment=“Routing WAN1” distance=1 gateway=4.2.2.2
routing-mark=toWan1 target-scope=11
add check-gateway=ping comment=“failover WAN2” distance=2 gateway=4.2.2.3
routing-mark=toWan1 target-scope=11
add check-gateway=ping comment=“failover WAN3” distance=2 gateway=4.2.2.4
routing-mark=toWan1 target-scope=11
add check-gateway=ping comment=“failover WAN4” distance=2 gateway=1.1.1.1
routing-mark=toWan1 target-scope=11
add check-gateway=ping comment=“failover WAN5” distance=2 gateway=1.0.0.1
routing-mark=toWan1 target-scope=11
add check-gateway=ping comment=“Routing WAN2” distance=1 gateway=4.2.2.3
routing-mark=toWan2 target-scope=11
add check-gateway=ping comment=“failover WAN1” distance=2 gateway=4.2.2.2
routing-mark=toWan2 target-scope=11
add check-gateway=ping comment=“failover WAN4” distance=3 gateway=1.1.1.1
routing-mark=toWan2 target-scope=11
add check-gateway=ping comment=“failover WAN3” distance=3 gateway=4.2.2.4
routing-mark=toWan2 target-scope=11
add check-gateway=ping comment=“failover WAN5” distance=3 gateway=1.0.0.1
routing-mark=toWan2 target-scope=11
add check-gateway=ping comment=“Routing WAN3” distance=1 gateway=4.2.2.4
routing-mark=toWan3 target-scope=11
add check-gateway=ping comment=“failover WAN1” distance=3 gateway=4.2.2.2
routing-mark=toWan3 target-scope=11
add check-gateway=ping comment=“failover WAN2” distance=3 gateway=4.2.2.3
routing-mark=toWan3 target-scope=11
add check-gateway=ping comment=“failover WAN4” distance=4 gateway=1.1.1.1
routing-mark=toWan3 target-scope=11
add check-gateway=ping comment=“failover WAN5” distance=4 gateway=1.0.0.1
routing-mark=toWan3 target-scope=11
add check-gateway=ping comment=“Routing WAN4” distance=1 gateway=1.1.1.1
routing-mark=toWan4 target-scope=11
add check-gateway=ping comment=“failover WAN1” distance=4 gateway=4.2.2.2
routing-mark=toWan4 target-scope=11
add check-gateway=ping comment=“failover WAN2” distance=4 gateway=4.2.2.3
routing-mark=toWan4 target-scope=11
add check-gateway=ping comment=“failover WAN3” distance=4 gateway=4.2.2.4
routing-mark=toWan4 target-scope=11
add check-gateway=ping comment=“failover WAN5” distance=5 gateway=1.0.0.1
routing-mark=toWan4 target-scope=11
add check-gateway=ping comment=“Routing WAN5” distance=1 gateway=1.0.0.1
routing-mark=toWan5 target-scope=11
add check-gateway=ping comment=“failover WAN1” distance=5 gateway=4.2.2.2
routing-mark=toWan5 target-scope=11
add check-gateway=ping comment=“failover WAN2” distance=5 gateway=4.2.2.3
routing-mark=toWan5 target-scope=11
add check-gateway=ping comment=“failover WAN4” distance=5 gateway=1.1.1.1
routing-mark=toWan5 target-scope=11
add check-gateway=ping comment=“failover WAN3” distance=5 gateway=4.2.2.4
routing-mark=toWan5 target-scope=11
add check-gateway=ping comment=“default wan 5” distance=1 gateway=1.0.0.1
target-scope=11
add check-gateway=ping comment=“default wan 1” distance=1 gateway=4.2.2.2
target-scope=11
add check-gateway=ping comment=“default wan 2” distance=1 gateway=4.2.2.3
target-scope=11
add check-gateway=ping comment=“default wan 3” distance=1 gateway=4.2.2.4
target-scope=11
add check-gateway=ping comment=“default wan 4” distance=1 gateway=1.1.1.1
target-scope=11
add comment=“Monitor WAN5” distance=1 dst-address=1.0.0.1/32 gateway=
176.66.0.xxx scope=10
add comment=“Monitor WAN4” distance=1 dst-address=1.1.1.1/32 gateway=
212.95.27.xxx scope=10
add comment=“Monitor WAN1” distance=1 dst-address=4.2.2.2/32 gateway=
81.223.59.xxx scope=10
add comment=“Monitor WAN2” distance=1 dst-address=4.2.2.3/32 gateway=
212.95.26.xxx scope=10
add comment=“Monitor WAN3” distance=1 dst-address=4.2.2.4/32 gateway=
212.95.26.xxx scope=10
/system clock
set time-zone-name=Europe/Vienna
/tool graphing interface
add interface=WAN1
add interface=WAN2
add interface=WAN3
add interface=WAN4
add interface=WAN5
add
/tool sniffer
set file-name=testsniff filter-interface=WAN3

(1) Order of firewall rules fixed.
(2) Its dumb to allow an entire subnet to configure the router and besides, 8291 is not a tcp protocol its udp!
Created a firewall address list called authorized… to solve…
(3) Got rid of unnecessary firewall address lists.
(4) Removed logging on drop all rule, your lists and memory would fill with garbage…
(5) added missing fastrack rule in forward chain.
(6) One sourcenat rule out-interface-list=WAN-list replaces the five you had.
(7) Input chain use LAN-list for DNS.
(8) Missing all the tables???

/interface ethernet
set [ find default-name=ether1 ] name=WAN1
set [ find default-name=ether2 ] name=WAN2
set [ find default-name=ether3 ] name=WAN3
set [ find default-name=ether4 ] name=WAN4
set [ find default-name=ether5 ] name=WAN5
set [ find default-name=ether11 ] name=ether11-LAN
/interface list
add name=WAN-list
add name=LAN-list
/routing table
add fib name=useWAN1
add fib name=useWAN2
add fib name=useWAN3
add fib name=useWAN4
add fib name=useWAN5
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=10.0.0.100-10.0.0.200
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=ether11-LAN name=dhcp1
/interface list member
add interface=WAN1 list=WAN-list
add interface=WAN2 list=WAN-list
add interface=WAN3 list=WAN-list
add interface=WAN4 list=WAN-list
add interface=WAN5 list=WAN-list
add interface=ether11-LAN list=LAN-list
/ip address
add address=81.223.59.xxx/29 interface=WAN1 network=81.223.59.xxx
add address=10.0.0.1/24 interface=ether11-LAN network=10.0.0.0
add address=192.168.4.xxx/24 interface=WAN3 network=192.168.4.0
add address=192.168.7.50/24 interface=WAN4 network=192.168.7.0
add address=192.168.6.50/24 interface=WAN5 network=192.168.6.0
add address=192.168.3.20/24 interface=WAN2 network=192.168.3.0
add address=212.95.26.xxx/30 interface=WAN2 network=212.95.26.xxx
add address=212.95.26.xxx/29 interface=WAN3 network=212.95.26.xxx
add address=212.95.27.xxx/24 interface=WAN4 network=212.95.27.xxx
add address=176.66.79.xxx/16 interface=WAN5 network=176.66.0.xxx
/ip dhcp-client
add add-default-route=no interface=WAN5 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN2 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN3 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN4 use-peer-dns=no use-peer-ntp=no
/ip dhcp-server lease
add address=10.0.0.144 client-id=1:0:50:56:93:f0:9a mac-address=\
00:50:56:93:F0:9A server=dhcp1
/ip dhcp-server network
add address=10.0.0.0/24 dns-server=10.0.0.25,10.0.0.1 domain=dom-01.net \
gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=10.0.0.25 use-doh-server=\
https://dns.google/dns-query verify-doh-cert=yes
/ip dns static
add address=8.8.8.8 name=dns.google
add address=8.8.4.4 name=dns.google
/ip firewall address-list
add address=10.0.0.69-10.0.0.70 list=PBR_LAN5
add address=10.0.0.1-10.0.0.99 list=DT_SERVER
add address=10.0.0.100-10.0.0.200 list=DT_DHCP
add address=10.0.0.201-10.0.0.253 list=DT_FIX
add address=10.0.0.XXx  list=Authorized comment=admin-desktop
add addres=10.0.0.YYy list=Authorized comment=admin-latpop
add address=10.0.0.TTt list=Authorized comment=admin-smartphone/ipad
/ip firewall filter
add action=accept chain=input comment=\
"Allow Established/Related/Untracked connections" connection-state=\
established,related
add action=drop chain=input comment="Drop Invalid" connection-state=invalid
add action=accept chain=input comment="Allow ICMP" protocol=icmp
add action=accept chain=input comment="defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=accept chain=input comment="allow admin access only"  src-address-list=Authorized
add action=accept chain=input comment="DNS nicht von extern" dst-port=53 \
protocol=tcp  in-interface-list=LAN-list
add action=accept chain=input dst-port=53 protocol=udp in-interface-list=Lan-list
add action=drop chain=input comment="Drop everything else" log=no \
add action=fasttrack-connection chain=forward comment="defconf: fasttrack"  \
    connection-state=established,related  connection-mark=no-mark
add action=accept chain=forward comment="forward established untracked" \
connection-state=established,related,untracked
add action=drop chain=forward comment="Forward Drop invalid " \
connection-state=invalid
add action=accept chain=forward comment="port forward" connection-nat-state=dstnat 
add action=accept chain=forward comment="allow internet traffic" \
in-interface-list=LAN-list out-interface-list=WAN-list
add action=drop chain=forward comment="forward drop anything"
/ip firewall nat
add action=masquerade chain=srcnat out-interface-list=WAN-list
add action=dst-nat chain=dstnat comment="testwebsite W1" dst-address=\
81.223.59.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
4400
add action=dst-nat chain=dstnat comment="testwebsite W4" dst-address=\
212.95.27.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
4400
add action=dst-nat chain=dstnat comment="testwebsite W5" dst-address=\
176.66.79.xxx dst-port=80 protocol=tcp to-addresses=10.0.0.100 to-ports=\
4400
add action=dst-nat chain=dstnat comment="test website W3" dst-address=\
212.95.26.xxx dst-address-type=local dst-port=80,443,22 protocol=tcp \
to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat comment="test website W2" dst-address=\
212.95.26.xxx dst-address-type=local dst-port=80,443,22 protocol=tcp \
to-addresses=10.0.0.100 to-ports=4400
add action=dst-nat chain=dstnat dst-address=212.95.26.xxx dst-address-type=\
local dst-port=22 in-interface=WAN3 protocol=udp to-addresses=10.0.0.144 \
to-ports=22
add action=masquerade chain=srcnat out-interface-list=WAN-list
/ip firewall mangle
comment=" The following 10 mangles ensure traffic coming in on WANX, goes out WANX"
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=WAN1  new-connection-mark=incomingWAN1 passthrough=yes 
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=WAN2 new-connection-mark=incomingWAN2 passthrough=yes 
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=WAN3  new-connection-mark=incomingWAN3 passthrough=yes 
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=WAN4  new-connection-mark=incomingWAN4 passthrough=yes 
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=WAN5  new-connection-mark=incomingWAN5 passthrough=yes 
add action=mark-routing chain=output connection-mark=incomingWAN1 \
   new-routing-mark=useWAN1 passthrough=no
add action=mark-routing chain=output connection-mark=incomingWAN2 \
   new-routing-mark=useWAN2 passthrough=no
add action=mark-routing chain=output  connection-mark=incomingWAN3 \
   new-routing-mark=useWAN3 passthrough=no
add action=mark-routing chain=output  connection-mark=incomingWAN4 \
   new-routing-mark=useWAN4 passthrough=no
add action=mark-routing chain=output  connection-mark=incomingWAN5 \
   new-routing-mark=useWAN5 passthrough=no
comment=" The following 10 mangles ensure PCC traffic for all 5 WANS"
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=ether11-LAN new-connection-mark=to-WAN1  dst-address-type=!local\
    per-connection-classifier=both-addresses:5/0 passthrough=yes
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=ether11-LAN new-connection-mark=to-WAN2  dst-address-type=!local\
    per-connection-classifier=both-addresses:5/1 passthrough=yes
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=ether11-LAN new-connection-mark=to-WAN3  dst-address-type=!local\
    per-connection-classifier=both-addresses:5/2 passthrough=yes
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=ether11-LAN new-connection-mark=to-WAN4  dst-address-type=!local\
    per-connection-classifier=both-addresses:5/3 passthrough=yes
add action=mark-connections chain=prerouting connection-mark=no-mark \
    in-interface=ether11-LAN new-connection-mark=to-WAN5  dst-address-type=!local\
    per-connection-classifier=both-addresses:5/4 passthrough=yes
add action=mark-routing chain=prerouting  connection-mark=to-WAN1 \
    new-routing-mark=useWAN1 passthrough=yes
add action=mark-routing chain=prerouting  connection-mark=to-WAN2 \
    new-routing-mark=useWAN2 passthrough=yes
add action=mark-routing chain=prerouting  connection-mark=to-WAN3 \
    new-routing-mark=useWAN3 passthrough=yes
add action=mark-routing chain=prerouting  connection-mark=to-WAN4 \
    new-routing-mark=useWAN4 passthrough=yes
add action=mark-routing chain=prerouting  connection-mark=to-WAN5 \
    new-routing-mark=useWAN5 passthrough=yes
/ip route
{ first 10 routes address the main table and recursive routing }
add check-gateway=ping distance=1 dst-address=0.0.0.0/0 gateway=1.1.1.1 scope=10 target-scope=12 routing-table=main
add check-gateway=ping distance=2 dst-address=0.0.0.0/0 gateway=1.0.0.1 scope=10 target-scope=12 routing-table=main
add check-gateway=ping distance=3 dst-address=0.0.0.0/0 gateway=9.9.9.9 scope=10 target-scope=12 routing-table=main
add check-gateway=ping distance=4 dst-address=0.0.0.0/0 gateway=208.67.222.222  scope=10 target-scope=12 routing-table=main
add check-gateway=ping distance=5 dst-address=0.0.0.0/0 gateway=94.140.14.14 scope=10 target-scope=12 routing-table=main
+++++++++++++++++++++++++++++
add check-gateway=ping distance=1 dst-address=1.1.1.1/32 gateway=ISP1 scope=10 target-scope=11 routing-table=main
add check-gateway=ping distance=2 dst-address=1.0.0.1/32 gateway=ISP2 scope=10 target-scope=11 routing-table=main
add check-gateway=ping distance=3 dst-address=9.9.9.9/32 gateway=ISP3 scope=10 target-scope=11 routing-table=main
add check-gateway=ping distance=4 dst-address=208.67.222.222/32 gateway=ISP4  scope=10 target-scope=11 routing-table=main
add check-gateway=ping distance=5 dst-address=94.140.14.14/32  gateway=ISP5  scope=10 target-scope=11 routing-table=main

{ the following 25 routes handle basic simple, pcc failover so that traffic from a failed WAN gets punted to the next available WAN }
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP1-gateway routing-table=useWAN1 distance=1 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP2-gateway routing-table=useWAN1 distance=2 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP3-gateway routing-table=useWAN1 distance=3 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP4-gateway routing-table=useWAN1 distance=4
add dst-address=0.0.0.0/0 gateway=ISP5-gateway routing-table=useWAN1 distance=5

add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP2-gateway routing-table=useWAN2 distance=1 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP1-gateway routing-table=useWAN2 distance=2 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP3-gateway routing-table=useWAN2 distance=3 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP4-gateway routing-table=useWAN2 distance=4
add  dst-address=0.0.0.0/0 gateway=ISP5-gateway routing-table=useWAN2 distance=5

add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP3-gateway routing-table=useWAN3 distance=1 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP1-gateway routing-table=useWAN3 distance=2 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP2-gateway routing-table=useWAN3 distance=3 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP4-gateway routing-table=useWAN3 distance=4
add dst-address=0.0.0.0/0 gateway=ISP5-gateway routing-table=useWAN3 distance=5

add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP4-gateway routing-table=useWAN4 distance=1 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP1-gateway routing-table=useWAN4 distance=2 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP2-gateway routing-table=useWAN4 distance=3 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP3-gateway routing-table=useWAN4 distance=4
add  dst-address=0.0.0.0/0 gateway=ISP5-gateway routing-table=useWAN4 distance=5

add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP5-gateway routing-table=useWAN5 distance=1 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP1-gateway routing-table=useWAN5 distance=2 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP2-gateway routing-table=useWAN5 distance=3 
add check-gateway=ping dst-address=0.0.0.0/0 gateway=ISP3-gateway routing-table=useWAN5 distance=4
add dst-address=0.0.0.0/0 gateway=ISP4-gateway routing-table=useWAN5 distance=5

The above handles all the rules required.
Give that a shot and we will see how much progress is made!

Hi,
thank you so much for your time and help.

I use router os ver 6.xx there are no /ip tables ?
I removed the rule for fast track, because it should not work with pcc

in the meantime I try to find the error.
I removed all the fail over,
Outgoing was never a problem, but the port forwarding was not working.
Now here the newest results.
With my actual config is incoming traffic possible on WAN1, WAN2 and WAN5 but not on WAN3 and WAN4

So traffic comes in, but not out?!?

I have seen that my external IP’s have overlapping Subnets.
I made my research and find that I should use xxx.xxx.xxx.xxx%WAN_PORT
But this is also not helping.
I can see that the traffic comes in but I don’t know hot to debug where the package will go.
WAN1 is a DSL
WAN2 - WAN5 is 5G with an router in bridged mode.
The Router from WAN2 and WAN3 is the same Modell, so also the Router from WAN4 and WAN5

I think I have a outgoing routing problem, but I don’t know why?
The mangle should do this, but its not working?!?

Here my actual config, adapted with the help from anav

If someone could help?

nov/26/2023 14:14:19 by RouterOS 6.49.10

/interface ethernet
set [ find default-name=ether1 ] name=WAN1
set [ find default-name=ether2 ] name=WAN2
set [ find default-name=ether3 ] name=WAN3
set [ find default-name=ether4 ] name=WAN4
set [ find default-name=ether5 ] name=WAN5
set [ find default-name=ether11 ] name=ether11-LAN
/interface list
add name=WAN-list
add name=LAN-list
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=10.0.0.100-10.0.0.200
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=ether11-LAN name=dhcp1
/interface list member
add interface=WAN1 list=WAN-list
add interface=WAN2 list=WAN-list
add interface=WAN3 list=WAN-list
add interface=WAN4 list=WAN-list
add interface=WAN5 list=WAN-list
add interface=ether11-LAN list=LAN-list
/ip address
add address=81.223.59.194/29 interface=WAN1 network=81.223.59.xxx
add address=10.0.0.1/24 interface=ether11-LAN network=10.0.0.0
add address=212.95.26.25/30 interface=WAN2 network=212.95.26.24
add address=212.95.26.24/29 interface=WAN3 network=212.95.26.20
add address=212.95.27.236/24 interface=WAN4 network=212.95.27.0
add address=176.66.79.238/16 interface=WAN5 network=176.66.0.0
/ip dhcp-client
add add-default-route=no interface=WAN5 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN2 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN3 use-peer-dns=no use-peer-ntp=no
add add-default-route=no interface=WAN4 use-peer-dns=no use-peer-ntp=no
/ip dhcp-server lease
add address=10.0.0.144 client-id=1:0:50:56:93:f0:9a mac-address=
00:50:56:93:F0:9A server=dhcp1
add address=10.0.0.122 client-id=1:0:23:a4:2:36:86 mac-address=
00:23:A4:02:36:86 server=dhcp1
/ip dhcp-server network
add address=10.0.0.0/24 dns-server=10.0.0.25,10.0.0.1 domain=dom-01.net
gateway=10.0.0.1
/ip dns
set allow-remote-requests=yes servers=10.0.0.25 use-doh-server=
https://dns.google/dns-query > verify-doh-cert=yes
/ip dns static
add address=8.8.8.8 name=dns.google
add address=8.8.4.4 name=dns.google
/ip firewall address-list
add address=10.0.0.0/8 list=RFC1918
add address=172.16.0.0/12 list=RFC1918
add address=192.168.0.0/16 list=RFC1918
/ip firewall filter
add action=drop chain=input comment=“Drop Invalid connections”
connection-state=invalid
add action=accept chain=input comment=“access only from inside” dst-port=
8291,22,80 in-interface=ether11-LAN protocol=tcp
add action=accept chain=input comment=
“Allow Established/Related/Untracked connections” connection-state=
established,related
add action=accept chain=input comment=“Allow ICMP” protocol=icmp
add action=accept chain=input comment=“DNS nicht von extern” dst-port=53
protocol=tcp src-address-list=RFC1918
add action=accept chain=input dst-port=53 protocol=udp src-address-list=
RFC1918
add action=drop chain=input comment=“Drop everything else” log-prefix=
DROP_IN
add action=accept chain=forward comment=“allow port forwarding”
connection-nat-state=dstnat connection-state=new in-interface-list=
WAN-list
add action=accept chain=forward comment=“forward established”
connection-state=established,related
add action=accept chain=forward comment=“allow internet traffic”
in-interface-list=LAN-list out-interface-list=WAN-list
add action=drop chain=forward comment="Forward Drop invalid "
connection-state=invalid
add action=drop chain=forward comment=“forward drop anything”
/ip firewall mangle
add action=accept chain=prerouting comment=0001 dst-address-list=RFC1918
src-address-list=RFC1918
add action=accept chain=prerouting comment=0002 dst-address=81.223.59.192/29
in-interface=ether11-LAN
add action=accept chain=prerouting dst-address=212.95.26.24/30 in-interface=
ether11-LAN
add action=accept chain=prerouting dst-address=212.95.26.20/29 in-interface=
ether11-LAN
add action=accept chain=prerouting dst-address=212.95.27.0/24 in-interface=
ether11-LAN
add action=accept chain=prerouting dst-address=176.66.0.0/16 in-interface=
ether11-LAN
add action=mark-connection chain=prerouting comment=“Incomming WAN marking”
connection-mark=no-mark in-interface=WAN1 new-connection-mark=WAN1_conn
passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN2 new-connection-mark=WAN2_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN3 new-connection-mark=WAN3_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN4 new-connection-mark=WAN4_conn passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark
in-interface=WAN5 new-connection-mark=WAN5_conn passthrough=yes
add action=mark-connection chain=prerouting comment=“Loadbalancing WAN 2- 5”
connection-mark=no-mark dst-address-type=!local in-interface-list=
LAN-list new-connection-mark=WAN2_conn passthrough=yes
per-connection-classifier=both-addresses:4/0
add action=mark-connection chain=prerouting connection-mark=no-mark
dst-address-type=!local in-interface-list=LAN-list log=yes log-prefix=
mark_conn3 new-connection-mark=WAN3_conn passthrough=yes
per-connection-classifier=both-addresses:4/1
add action=mark-connection chain=prerouting connection-mark=no-mark
dst-address-type=!local in-interface-list=LAN-list log=yes log-prefix=
mark_conn4 new-connection-mark=WAN4_conn passthrough=yes
per-connection-classifier=both-addresses:4/2
add action=mark-connection chain=prerouting connection-mark=no-mark
dst-address-type=!local in-interface-list=LAN-list new-connection-mark=
WAN5_conn passthrough=yes per-connection-classifier=both-addresses:4/3
add action=mark-routing chain=prerouting comment=“outgoing routing”
connection-mark=WAN1_conn in-interface-list=LAN-list new-routing-mark=
toWan1 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN2_conn
in-interface-list=LAN-list new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN3_conn
in-interface-list=LAN-list new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN4_conn
in-interface-list=LAN-list new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=prerouting connection-mark=WAN5_conn
in-interface-list=LAN-list new-routing-mark=toWan5 passthrough=no
add action=mark-routing chain=output comment=“outgoing WAN routing”
connection-mark=WAN1_conn new-routing-mark=toWan1 passthrough=no
add action=mark-routing chain=output connection-mark=WAN2_conn
new-routing-mark=toWan2 passthrough=no
add action=mark-routing chain=output connection-mark=WAN3_conn log=yes
log-prefix=out_W3 new-routing-mark=toWan3 passthrough=no
add action=mark-routing chain=output connection-mark=WAN4_conn log=yes
log-prefix=out_W4 new-routing-mark=toWan4 passthrough=no
add action=mark-routing chain=output connection-mark=WAN5_conn
new-routing-mark=toWan5 passthrough=no
/ip firewall nat
add action=dst-nat chain=dstnat comment=“testwebsite W1” dst-address=
81.223.59.194 dst-port=80 protocol=tcp to-addresses=10.0.0.122 to-ports=
4400
add action=dst-nat chain=dstnat comment=“testwebsite W4” dst-address=
212.95.27.226 dst-port=80 protocol=tcp to-addresses=10.0.0.122 to-ports=
4400
add action=dst-nat chain=dstnat comment=“testwebsite W5” dst-address=
176.66.79.218 dst-port=80 protocol=tcp to-addresses=10.0.0.122 to-ports=
4400
add action=dst-nat chain=dstnat comment=“test website W3” dst-address=
212.95.26.84 dst-port=80 protocol=tcp to-addresses=10.0.0.122 to-ports=
4400
add action=dst-nat chain=dstnat comment=“test website W2” dst-address=
212.95.26.85 dst-port=80 protocol=tcp to-addresses=10.0.0.122 to-ports=
4400
add action=masquerade chain=srcnat comment=“WAN Masquerade”
out-interface-list=WAN-list
/ip route
add comment=“EXPL WAN1” distance=1 gateway=81.223.59.123%WAN1 routing-mark=
toWan1
add comment=“EXPL WAN2” distance=1 gateway=212.95.26.36%WAN2 routing-mark=
toWan2
add comment=“EXPL WAN3” distance=1 gateway=212.95.26.35%WAN3 routing-mark=
toWan3
add comment=“EXPL WAN4” distance=1 gateway=212.95.27.1%WAN4 routing-mark=
toWan4
add comment=“EXPL WAN5” distance=1 gateway=176.66.0.1%WAN5 routing-mark=
toWan5
add comment=“Standard WAN2” distance=2 gateway=212.95.36.86%WAN2
add comment=“Standard WAN4” distance=2 gateway=212.95.37.1%WAN4
add comment=“Standard WAN1” distance=2 gateway=81.223.59.893%WAN1
add comment=“Standard WAN5” distance=2 gateway=176.66.0.1%WAN5
add comment=“Standard WAN3” distance=2 gateway=212.95.26.75%WAN3
/system clock
set time-zone-name=Europe/Vienna
/system ntp client
set enabled=yes primary-ntp=10.0.0.25
/tool sniffer
set streaming-enabled=yes streaming-server=10.0.0.122

Wait you are still on vers 6?? My configs are predicated on vers 7

yes I am on 6.49

Is version 7 better? I found different statements to version 7.

The improvements to many functions and the ability to do wireguard are huge reasons to move ahead.
If this is a home no worries, 7.12.1 is decent enough.