Simple Queues between Interfaces

Hi, i need a help to simple queue rule work between two interfaces, in this case i want to keep both on same range with different pools and half the connection to each ether;

Follow the resume from actualy config

Ether1 (PPPoE), Ether2 (192.168.2.5/24) and Ether3 (192.168.2.6/24)

I tried to bridge ether2 and 3, simple queue with target on ethers not work, after remove bridge and keep target on ethers worked, but ether3 cant access the internet, there’s a way to queue works between ether 2 and 3? below follow the router config:

# 2024-11-24 18:43:38 by RouterOS 7.16.1
# software id = V002-QEAN
#
# model = RB750r2
# serial number = 67D2066403C4
/interface bridge
add name=bridge1
/interface ethernet
set [ find default-name=ether1 ] 
set [ find default-name=ether2 ] 
set [ find default-name=ether3 ] 
set [ find default-name=ether4 ] disabled=yes
set [ find default-name=ether5 ] disabled=yes
/interface pppoe-client
add add-default-route=yes disabled=no interface=ether1 name=pppoe-out1 user=\
xxxxxxx    
/interface lte apn
set [ find default=yes ] ip-type=ipv4 use-network-apn=no
/ip pool
add name=pool1 ranges=192.168.2.10-192.168.2.150
add name=pool2 ranges=192.168.2.151-192.168.2.254
/ip dhcp-server
add address-pool=pool1 interface=ether2 name=server1
add address-pool=pool2 interface=ether3 name=server2
/queue simple
add max-limit=2M/4M name=queue1 target=ether3
add max-limit=2M/4M name=queue2 target=ether2
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
/ip firewall connection tracking
set udp-timeout=10s
/ip neighbor discovery-settings
set discover-interface-list=!dynamic
/ip settings
set max-neighbor-entries=8192
/ipv6 settings
set disable-ipv6=yes max-neighbor-entries=8192
/interface ovpn-server server
set auth=sha1,md5
/ip address
add address=192.168.2.5/24 interface=ether2 network=192.168.2.0
add address=192.168.2.6/24 interface=ether3 network=192.168.2.0
/ip dhcp-server network
add address=192.168.2.0/24 gateway=192.168.2.5,192.168.2.6
/ip dns
set servers=1.1.1.1,1.0.0.1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=pppoe-out1
add action=masquerade chain=srcnat dst-address=192.168.2.0/24 src-address=\
    192.168.2.0/24
/ip hotspot profile
set [ find default=yes ] html-directory=hotspot
/ip ipsec profile
set [ find default=yes ] dpd-interval=2m dpd-maximum-failures=5
/ip service
set ftp disabled=yes
set ssh disabled=yes
set api disabled=yes
set api-ssl disabled=yes
/routing bfd configuration
add disabled=no interfaces=all min-rx=200ms min-tx=200ms multiplier=5
/system clock
set time-zone-name=America/Sao_Paulo
/system identity
set name=xxx
/system note
set show-at-login=no
/system ntp client
set enabled=yes
/system ntp client servers
add address=xxx.xxx.xxx.xxx
add address=xxx.xxx.xxx.xxx

LAN configuration is incorrect,
if you want to use the /24 mask you have to make a bridge and assign it an IP

/interface ethernet
set [ find default-name=ether2 ]
set [ find default-name=ether3 ]

/interface bridge
add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3

/ip pool
add name=pool1 ranges=192.168.2.10-192.168.2.150
/ip dhcp-server
add address-pool=pool1 interface=bridge1 name=server1
/ip dhcp-server network
add address=192.168.2.0/24 gateway=192.168.2.5

/ip address
add address=192.168.2.5/24 interface=bridge1 network=192.168.2.0

/ip firewall nat
add action=masquerade chain=srcnat out-interface=pppoe-out1

/queue simple
add max-limit=2M/4M name=q1_LAN queue=pcq-upload-default/pcq-download-default target=192.168.2.0/24