Hello All,
I’m beginner to mikrotik and i want to configure RB-750G as a layer Switch, so that can manage both routing & switching together with VLAN.
I have 3Mb bandwidth and 64 Valid IP (75.175.161.73/26) and 3 user, that i want to manage them like this.
User#1: BW=1024 IP Range= 75.175.161.73 255.255.255.248 (Ethernet#2)
User#2: BW=1536 IP Range= 75.175.161.81 255.255.255.240 (Ethernet#3)
User#3: BW=512 IP Range= 75.175.161.97 255.255.255.248 (Ethernet#4)
what should do and how can i start?
I will appreciate your help and attention.
Assuming you are getting the 75.175.161.73/26 routed to you via another subnet, that you put on ether 1 i.e. 10.10.10.2/30 and you want to put each customer on an interface of the 750G, with the address you gave being their gateway Here is your routing.
/ip route add gateway=10.10.10.1
/ip address add interface=ether2 address=10.10.10.2/30
/ip address add interface=ether2 address=75.175.161.73/29
/ip address add interface=ether3 address=75.175.161.81/28
/ip address add interface=ether3 address=75.175.161.97/28
There is about a thousands of methods to accomplish your rate limits. The easiest is to limit the interface but you are limited to the built in speed steps.10M | 128k | 1M | 256k | 2M | 1MB | 512k
/interface ethernet set ether2-local bandwidth=1M
Or you could put a queue in for any speed you want queues are nicer but take some cpu cycles
/queue simple
add burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s comment="" direction=both disabled=no dst-address=0.0.0.0/0 interface=ether5-local limit-at=2M/2M max-limit=1500k/1500k name=queue1 parent=none priority=8 queue=default-small/default-small \
total-queue=default-small