This example is from the manual for 2.9 - but the should I set maximum limits as the bandwidth of the interface or the bandwidth of my connection - ie 4M not 100M?
0 chain=forward p2p=all-p2p action=mark-connection new-connection-mark=p2p_conn
1 chain=forward connection-mark=p2p_conn action=mark-packet new-packet-mark=p2p
2 chain=forward packet-mark=!p2p_conn action=mark-packet new-packet-mark=other
/queue tree add parent=Public packet-mark=p2p limit-at=1000000 \
\... max-limit=100000000 priority=8
/queue tree add parent=Local packet-mark=p2p limit-at=1000000 \
\... max-limit=100000000 priority=8
/queue tree add parent=Public packet-mark=other limit-at=1000000 \
\... max-limit=100000000 priority=1
/queue tree add parent=Local packet-mark=other limit-at=1000000 \
\... max-limit=100000000 priority=1
Trisc