DHCP Queue needed

Hi,
i need to limit the speed Down=200 kbps Up=100 kbps for each new user got IP from DHCP server
please your support to do so
BR

will this help?

# Limit Bandwidth of each IP in an entire subnet:
/queue type
add kind=pcq name=pcq-upload-custom pcq-classifier=src-address pcq-rate=2M
add kind=pcq name=pcq-download-custom pcq-classifier=dst-address pcq-rate=2M
/queue simple
add name=Throttle-Each queue=pcq-upload-custom/pcq-download-custom \
target=192.168.1.0/24

This could work. Just need to change the limits pcq-rate to your liking. Setting total max for upload & download is advisable to provide overall QoS.

thank you