I’ve been testing what is described here on our WISP system: https://wiki.mikrotik.com/wiki/Manual:Connection_Rate
It works fine but in other parts of the network there are more then one Bridge on LAN side. instead of setting the Parent of Download tree on each LAN Bridge, I’d like to use Global instead.
Here is my configuration:
/queue tree
add name=upload parent=Bridge_Carrier_Downlink max-limit=30M
add name=other_upload parent=upload limit-at=10M max-limit=30M \
packet-mark=other_traffic priority=4
add name=heavy_upload parent=upload limit-at=10M max-limit=30M \
packet-mark=heavy_traffic priority=8
add name=download parent=Bridge_Uplink_to_CAP2B max-limit=100M
add name=other_download parent=download limit-at=40M max-limit=90M \
packet-mark=other_traffic priority=4
add name=heavy_download parent=download limit-at=40M max-limit=90M \
packet-mark=heavy_traffic priority=8
add name=download_CAP11 parent=Bridge_Uplink_to_CAP11 max-limit=100M
add name=other_download_CAP11 parent=download_CAP11 limit-at=20M max-limit=50M \
packet-mark=other_traffic priority=4
add name=heavy_download_CAP11 parent=download_CAP11 limit-at=20M max-limit=50M \
packet-mark=heavy_traffic priority=8
Could anyone confirm that I can use Global as Parent in donwloading Tree, is correct? so I’d have this:
/queue tree
add max-limit=30M name=upload parent=Bridge_Carrier_Downlink
add limit-at=10M max-limit=30M name=other_upload packet-mark=other_traffic \
parent=upload priority=4
add limit-at=10M max-limit=30M name=heavy_upload packet-mark=heavy_traffic \
parent=upload
add max-limit=100M name=download parent=global
add limit-at=40M max-limit=90M name=other_download packet-mark=other_traffic \
parent=download priority=4
add limit-at=40M max-limit=90M name=heavy_download packet-mark=heavy_traffic \
parent=download
It seems working but I would like to know why it is or isn’t working.
my connection are marked on forward chain as per the previous post so it should be both directions. Am I right thinking this would work on upload Tree as well? Or my downloading Tree is now acutally for both directions?
Many thanks in advance!