Hello, here litle exemple of the config i m running:
So I'm using police-map to control trafic on my network.
The problem is pretty weird.
Lets say I have few client connecting to Internet at 640kbps, and few at 1.5mbps.
My total bandwith to Internet is a dedicate 3mbps. Using snmp or checking my interface in the router show me i m using average 2mbps.
When I do a download test to see what speed my client go, if he is set in the 640kbps class, he can go as slow at 100-300kbps instead 640. If I block his IP in Access-list 110 (to give him a 1.5mbps connexion) he go at 1.5mbps.
During whole process I check carefully the total bandwith I use and i never cap to 3mbps.
So why my client at 640kbps isn t going to 640 and stick around 100-300? I know i have enought bandwith but look like the router slow him down.
Any idea?
Code:
[...]
class-map match-all cl_640_down
match access-group 110
class-map match-all cl_1500_down
match access-group 130
[...]
policy-map po_down
class cl_640_down
police 640000 80000 exceed-action drop
class cl_1500_down
police 1496000 187500 exceed-action drop
[...]
interface FastEthernet0/3
no ip address
service-policy input po_down
[...]
access-list 110 remark Download for Client 1500
access-list 110 deny ip any host w.x.y.z
access-list 110 permit ip any any
access-list 130 remark Download unlock
access-list 130 permit ip any any
So I'm using police-map to control trafic on my network.
The problem is pretty weird.
Lets say I have few client connecting to Internet at 640kbps, and few at 1.5mbps.
My total bandwith to Internet is a dedicate 3mbps. Using snmp or checking my interface in the router show me i m using average 2mbps.
When I do a download test to see what speed my client go, if he is set in the 640kbps class, he can go as slow at 100-300kbps instead 640. If I block his IP in Access-list 110 (to give him a 1.5mbps connexion) he go at 1.5mbps.
During whole process I check carefully the total bandwith I use and i never cap to 3mbps.
So why my client at 640kbps isn t going to 640 and stick around 100-300? I know i have enought bandwith but look like the router slow him down.
Any idea?