Hello, tell as to cut speed to subscribers in case of PCC balancing (http://wiki.mikrotik.com/wiki/Manual:PCC)? There are two channels on 100Мбит, from one provider, balancing works, it isn’t clear how to make a sheyper. At present it is made so:
/ip firewall mangle
add action=mark-packet chain=forward comment="unlimit" new-packet-mark=packet_unlimit_out passthrough=no src-address-list=list_3_3
add action=mark-packet chain=forward dst-address-list=list_3_3 new-packet-mark=packet_unlimit_in passthrough=no
/queue type
kind=pcq name=unlimit_1_in pcq-classifier=dst-address pcq-dst-address6-mask=64 pcq-rate=25M pcq-src-address6-mask=64 pcq-total-limit=6000
add kind=pcq name=unlimit_1_out pcq-classifier=src-address pcq-dst-address6-mask=64 pcq-rate=3M pcq-src-address6-mask=64 pcq-total-limit=6000
/queue tree
add max-limit=30M name=lan_out packet-mark=packet_unlimit_out parent=global queue=unlimit_out
add max-limit=120M name=lan_in packet-mark=packet_unlimit_in parent=ether1 queue=unlimit_in
I understand that this is wrong, how to fix it?