cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1038
Views
0
Helpful
2
Replies

PCQ (Per Connection Queu) in Cissco

Dear all

in mikrotik same feature name PCQ 

https://wiki.mikrotik.com/wiki/Manual:Queues_-_PCQ_Examples 

 

For exmaple i have DHCP or PPPOE pool with subnet /24

and  i have 10 client is connected 

client 1 : 10.10.10.1

client 2 : 10.10.10.2

client 3: 10.10.10.3

client 4 : 10.10.10.4

             .

client 0 : 10.10.10.10

 

in mikrotik when use PCQ and create Queue for ip (10.10.10.0/24) and limted it for example 5M

so each client with his ip address can download rate 5Mbps , not limit all ip rage with 5M  

 

 

how we can do this in cisco 

i try with this 

 

ip access-list 1 permit 10.10.10.0 0.0.0255 any

class-map pool
match access-group 1

policy-map Ppool
class pool
police cir 5m

and i apply this policy for interface or dhpc 

but i thing all interface is limited with 5m not each ip address 

 

2 Replies 2

Joseph W. Doherty
Hall of Fame
Hall of Fame
If you have a small number of IP addresses (under the limit supported by CBWFQ, about 250), you can implement a CBWFQ policy that has one class, per IP address, and police each at a per class rate.

E.g.:
ip access-list 1 permit host 10.10.10.1
ip access-list 2 permit host 10.10.10.2
.
.
class-map ipaddr1
match access-group 1
class-map ipaddr2
match access-group 2
.
.
policy-map sample
class ipaddr1
police cir 5m
class ipaddr2
police cir 5m
.
.

For a larger number of IP addresses, or for "unknown" IP addresses, I'm unaware of a Cisco feature that supports what you want. However, a (very) few platforms support microflow policing which targets flows, not IP addresses.

fadhil.khaleel
Level 1
Level 1

Dears

is there a plan for the large network? new platform or hardware support Per Connection?

 

Review Cisco Networking for a $25 gift card