Hola Samuel, ya tengo un RB750G y he seguido todo los pasos que has puesto en tu manual para crear el hotspot ( impresionante! ) todo de lujo, incluso lo he personalizado un poco para la wifi que estoy montando en un camping. He creado los perfiles y limitado el ancho de banda segun los perfiles. El tema es que aun asi los usuarios van a poder petar el ancho de banda que les tenga otorgado, por lo cual para que todo este perfecto estaria muy interesante bloquear el p2p. Esto que pones en este post podria tener algo que ver pero esto habla de limitar los puertos no?, no seria efectivo en la actuliadad porque muchos programas utilizan aleatoriamente los puertos para realizar el intercambio. He estado leyendo por ahi y he encontrado esto... el problema es que a mi de saca un error en la linea 20 y ahi la verdad me pierdo. Una ayudita?

First I have marked p2p traffic and than all other traffic, what I have done you can find it below:
for p2p traffic I have configured as follows:
[admin@MikroTik] ip firewall mangle> add src-address=10.84.0.0/24 mark-flow=p2p-out p2p=all-p2p action=passthrough
[admin@MikroTik] ip firewall mangle> add dst-address=10.84.0.0/24 mark-flow=p2p-in p2p=all-p2p action=passthrough
[admin@MikroTik] queue type> add name="p2p-out" kind=pcq pcq-rate=32000 pcq-classifier=src-address
[admin@MikroTik] queue type> add name="p2p-in" kind=pcq pcq-rate=32000 pcq-classifier=dst-address
[admin@MikroTik] queue tree> add name="p2p-in" parent=global-in flow=p2p-in queue=p2p-in
[admin@MikroTik] queue tree> add name="p2p-out" parent=global-out flow=p2p-out queue=p2p-out
for all other traffic I have configured as follows:
ip firewall mangle add action=accept mark-flow=all
queue type add name=PCQ-Download kind=pcq pcq-rate=131072 pcq-classifier=dst-address
queue type add name=PCQ-Upload kind=pcq pcq-rate=131072 pcq-classifier=src-address
queue tree add parent=global-in queue=PCQ-Download flow=all
queue tree add parent=global-out queue=PCQ-Upload flow=all
I have found where the trick was,
under ip firewall mangle instead of add action=passthrough should be used add acction=accept, in order not to ignore the first rule and jump to the next one, which is limiting the bandwidth and not P2P.