Hi all!
I have some trouble getting the following to work. One Linux server (192.168.24.10) behind a RB532 with MikroTIK. The idea is that all traffic that is sent out by the Apache server on the Linux box gets a lower priority than any other traffic. Sounds simple, right?
I tried it this way:
(NB: My uplink is 600Kbit)
set outside queue=ethernet-default
set inside queue=ethernet-default
add chain=forward action=mark-packet new-packet-mark=Apache-out passthrough=no in-interface=inside out-interface=outside src-address=192.168.240.10 src-port=80 dst-port=!80 protocol=tcp comment="Apache" disabled=no
add chain=forward action=mark-packet new-packet-mark=OUT passthrough=no in-interface=inside out-interface=outside comment="OUT" disabled=no
add name="Apache-out" parent=global-out packet-mark=Apache-out limit-at=64000 queue=default priority=8 max-limit=10000000 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="OUT" parent=global-out packet-mark=OUT limit-at=64000 queue=default priority=4 max-limit=10000000 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
However, as soon as someone is getting files from my Apache server, I notice that it clearly has a negative influence on my other traffic. Why is that?
Regards,
John West