BW Control using Mikrotik CCR-1009-8G-1S

Hello All,

I’m a new member of this forum. I work as System Engineer in an ISP. We have a Mikrotik CCR-1009-8G-1S Router which We using as Router for our LAN. We have a CISCO router and a CISCO switch. in that CISCO switch VLAN is configured in some port and We’ve connected our Mikrotik from one of those port of CISCO switch. Our clients also connected from other port. Each port has BW limit, so that We can distribute Bandwidth to clients as per their need. in short:

CISCO Router → CISCO Switch (48 port, VLAN configured) → LAN Mikrotik from port 11 and other clients from port 12, 13, 14 so on.

but We found controlling BW using CISCO switch port BW limitation method is tedious and troublesome. Sometimes limit not even working. Like- our LAN connected from port-11 and BW of this port is 4mbps. But LAN users getting much higher BW than that. So limiting BW using Mikrotik would be nice for us. Is there any way We can do this BW contol job through the Mikrotik we are using? If yes, then we can easily do the job using queue feature of RouterOS under Winbox.

For information please have the port wise configuration sample of that CISCO switch:

Current configuration : 10256 bytes
!
...................................
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
!
class-map match-any traffic
 match ip dscp default
!
!
policy-map 25mb
 class traffic
    police 25600000 2000000 exceed-action drop
policy-map 17mb
 class traffic
    police 17408000 2000000 exceed-action drop
policy-map 15mb
 class traffic
    police 15360000 2000000 exceed-action drop
policy-map 12mb
 class traffic
    police 12360000 2000000 exceed-action drop
policy-map 20mb
 class traffic
    police 20480000 2000000 exceed-action drop
policy-map 13mb
 class traffic
    police 13560000 2000000 exceed-action drop
policy-map 10mb
 class traffic
    police 10240000 2000000 exceed-action drop
policy-map 1.75mb
 class traffic
    police 1792000 1792000 exceed-action drop
policy-map 4.5mb
 class traffic
    police 4608000 2000000 exceed-action drop
policy-map 1.256mb
 class traffic
    police 1280000 1280000 exceed-action drop
policy-map 5.5mb
 class traffic
    police 5760000 2000000 exceed-action drop
policy-map 6.5mb
 class traffic
    police 6656000 2000000 exceed-action drop
policy-map 1.2mb
 class traffic
    police 1280000 1280000 exceed-action drop
policy-map 1.5mb
 class traffic
    police 1536000 1536000 exceed-action drop
policy-map 2.5mb
 class traffic
    police 2560000 2000000 exceed-action drop
policy-map 3.5mb
 class traffic
    police 3584000 2000000 exceed-action drop
policy-map 1.7mb
 class traffic
    police 1740000 2000000 exceed-action drop
policy-map 1.9mb
 class traffic
    police 1920000 1920000 exceed-action drop
policy-map 1.128mb
 class traffic
    police 1152000 1152000 exceed-action drop
policy-map 768kbps
 class traffic
    police 768000 768000 exceed-action drop
policy-map 384kbps
 class traffic
    police 384000 384000 exceed-action drop
policy-map 8mb
 class traffic
    police 8192000 2000000 exceed-action drop
policy-map 7mb
 class traffic
    police 7168000 2000000 exceed-action drop
policy-map 640kbps
 class traffic
    police 640000 640000 exceed-action drop
policy-map 6mb
 class traffic
    police 6144000 2000000 exceed-action drop
policy-map 5mb
 class traffic
    police 5248000 2000000 exceed-action drop
policy-map 256kbps
 class traffic
    police 256000 256000 exceed-action drop
policy-map 4mb
 class traffic
    police 4096000 2000000 exceed-action drop
policy-map 512kpbs
 class traffic
    police 512000 512000 exceed-action drop
policy-map 3mb
 class traffic
    police 3072000 2000000 exceed-action drop
policy-map 512kbps
 class traffic
    police 512000 512000 exceed-action drop
policy-map 600kbps
 class traffic
    police 600000 600000 exceed-action drop
policy-map 896kbps
 class traffic
    police 896000 2000000 exceed-action drop
policy-map 2mb
 class traffic
    police 2048000 2000000 exceed-action drop
policy-map 1mb
 class traffic
    police 1024000 1024000 exceed-action drop
!
!
!
!
!
!
interface FastEthernet0/1
 switchport access vlan 10
 switchport mode access
!
interface FastEthernet0/2
 switchport mode dynamic desirable
!
interface FastEthernet0/3
 switchport mode dynamic desirable
!
interface FastEthernet0/4
 switchport access vlan 4
 switchport mode access
 service-policy input 1mb
 service-policy output 1mb
!
interface FastEthernet0/5
 switchport mode dynamic desirable
!
interface FastEthernet0/6
 switchport mode dynamic desirable
!
interface FastEthernet0/7
 switchport mode dynamic desirable
!
interface FastEthernet0/8
 switchport mode dynamic desirable
!
interface FastEthernet0/9
 switchport mode dynamic desirable
!
interface FastEthernet0/10
 switchport access vlan 11
 switchport mode access
 service-policy input 10mb
 service-policy output 10mb
!
interface FastEthernet0/11
 switchport access vlan 12
 switchport mode access
 service-policy input 4mb
 service-policy output 4mb
!
interface FastEthernet0/12
 switchport access vlan 13
 switchport mode access
 service-policy input 1mb
 service-policy output 1mb
!
interface FastEthernet0/13
 switchport mode dynamic desirable
!
interface FastEthernet0/14
 switchport access vlan 14
 switchport mode access
 service-policy input 1mb
 service-policy output 1mb
!

Thanks in advance.