DHCP lease and binding

Hello,
I need to connect more than two users to the LOCO M2 antennas. The LOCO M2 is configured as a bridge. How can I bind their PCs using Microtik router, so that they were unable to change to other PCs or not to add additional PCs without my permition? How can I give different users diffrent traffic rate?

there is a few guides you going to have to follow.

It might be easiest to use Raduis for the traffic and limiting the speed for each, the other options require traffic shaping and so forth.

Regards

There are at least a couple ways.

One way is set the dhcp server to use a RADIUS server to assign ip addresses. The mac address is used as the username in the RADIUS server. Return “Framed-IP-Address” set to the ip you want that client mac to have, or “Framed-Pool” to use a different ip pool.

/ip dhcp-server
set 0 use-radius=yes

The set up the RADIUS server stuff

/radius
add service=dhcp address=x.x.x.x secret=radiussecret

Another way is to set the dhcp leases to static. This is not a static ip. It makes the dhcp lease static, so the mac address always gets that ip when it requests one. Only works on the local router.

/ip dhcp-server lease
print
make-static X

Replace X with the line of the ip lease.
Use the firewall filter forward chain to allow your static leases through, and block the rest.

My topology looks like this: User-user antenna(in router mode)-Sector antenna(in bridge mode)-MCrouter. Is it possible to fix user PC to MC so that the user will not able to connect another PC to the antenna?