Hi, I use openwrt in dumb ap mode (lan+wlan+wan bridged together), router is tp-link wr1043nd v2. But I'd like to prevent congestion using SQM between local ports and wan. I don't want to route to different range and I want to avoid double nat (ISP modem cannot be set to bridge and they have forwarded some ports for me). When I assign wan port to bridge, the traffic does not pass over CPU and so SQM does not work. When I remove eth1.1 from bridge, internet will (obviously) not work, so I guess it will be some magic in switch section.
How can I assign wan port to switch in a way packets will travel over CPU and SQM? On mikrotik I'd simply untick fastpath, but on openwrt I don't know how to do this.
Thank you.
root@wr1043nd:~# cat /etc/config/network
.
.
config interface 'lan'
option type 'bridge'
option ifname 'eth0.2 eth1.1' #eth1.1 is wan port
.
.
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '1 2 3 4 0t'
config switch_vlan
option device 'switch0'
option vlan '2'
option ports '5 6t'