PCC Load Balancing + Hotspot

Hi everybody,

I’m newbie with Mikrotik routers and im trying to learn how they work.

I have a question. Im trying to configurate a Hotspot with a PCC Load Balancing. The problem is that hotspot packets don’t have connection marks and all the traffic is going through the 1st WAN.

Here is my test code:

/ip address
add address=192.168.1.2/24 network=192.168.1.0 broadcast=192.168.1.255 interface=WAN1
add address=192.168.2.2/24 network=192.168.2.0 broadcast=192.168.2.255 interface=WAN2

/ip firewall mangle
add chain=input in-interface=WAN1 action=mark-connection new-connection-mark=WAN1_conn
add chain=input in-interface=WAN2 action=mark-connection new-connection-mark=WAN2_conn

add chain=output connection-mark=WAN1_conn action=mark-routing new-routing-mark=to_WAN1
add chain=output connection-mark=WAN2_conn action=mark-routing new-routing-mark=to_WAN2

add chain=prerouting dst-address=192.168.1.0/24 action=accept in-interface=Hotspot
add chain=prerouting dst-address=192.168.2.0/24 action=accept in-interface=Hotspot

add chain=prerouting dst-address-type=!local in-interface=Hotspot per-connection-classifier=src-address:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes hotspot=auth
add chain=prerouting dst-address-type=!local in-interface=Hotspot per-connection-classifier=src-address:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes hotspot=auth

add chain=prerouting connection-mark=WAN1_conn in-interface=Hotspot action=mark-routing new-routing-mark=to_WAN1
add chain=prerouting connection-mark=WAN2_conn in-interface=Hotspot action=mark-routing new-routing-mark=to_WAN2

/ip route
add dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-mark=to_WAN1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.2.1 routing-mark=to_WAN2 check-gateway=ping

add dst-address=0.0.0.0/0 gateway=192.168.1.1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.2.1 distance=2 check-gateway=ping

/ip firewall nat
add chain=srcnat out-interface=WAN1 action=masquerade
add chain=srcnat out-interface=WAN2 action=masquerade

/ip dns set allow-remote-requests=yes cache-max-ttl=1w cache-size=5000KiB max-udp-packet-size=512 servers=8.8.8.8,8.8.4.4

/ip firewall mangle
add chain=prerouting dst-address-type=!local in-interface=Hotspot action=passthrough connection-mark=no-mark comment="No connection marks"
add chain=prerouting dst-address-type=!local in-interface=Hotspot action=passthrough routing-mark=main comment="No routing marks"

The last 2 firewall mangle rules should appear 0 packets in each one but in connection marks doesn’t.

I don’t have any other rule for the Hotspot, is clean.

I would like to know why the Hotspot is not being balanced. Need something more in my code?

Best regards and sorry for my english

Could somebody help me please? I know that my problem is basic but i don’t know which is my error