Mark packets with DSC value

Hello,

I want to mark some packet with DSCP 40 value.

This is my network:

I want to mark the packets going from 192.168.1.10 to 192.168.2.10.

How could I configure it?

Kind regards.

I got it!

/ip firewall mangle
add action=change-dscp chain=forward dst-address=192.168.2.10 new-dscp=40 \
    passthrough=no src-address=192.168.1.10

Hope someone could use it.

Regards.