Guarantee and prioritize traffic conf:
ip firewall mangle
HTTP mark on wlan and lan interfaces:
in-interface=wlan1 dst-address=:80 protocol=tcp action=passthrough
mark-connection=http-connections
in-interface=lan dst-address=:80 protocol=tcp action=passthrough
mark-connection=http-connections
HTTP Flow:
protocol=tcp connection=http-connections action=passthrough mark-flow=http
POP3 mark on wlan and lan interfaces:
in-interface=wlan1 dst-address=:110 protocol=tcp action=passthrough
mark-connection=pop3-connections
in-interface=lan dst-address=:110 protocol=tcp action=passthrough
mark-connection=pop3-connections
POP3 Flow:
protocol=tcp connection=pop3-connections action=passthrough mark-flow=pop3
I created two queues:
2 name="http-queue" parent=global-in flow=http limit-at=614400 queue=default priority=7 max-limit=1024000 burst-limit=0 burst-threshold=0 burst-time=0
3 name="pop3-queue" parent=global-in flow=pop3 limit-at=307200 queue=default priority=7 max-limit=1024000 burst-limit=0 burst-threshold=0 burst-time=0
Problem:
I want to quarantee traffic for both my subnets/interfaces (together).
The global-in parent isnt work properly.
I dont know what to do
Do you have some solution / suggestions ?
Martin