Link to home
Start Free TrialLog in
Avatar of LiveComm
LiveComm

asked on

Manage Downloadspeed for one user through an ASA 5520

Hi,

We have a user that uses bittorrent software, for legal purposes.. according to him anyway, we would like to be able to control the amount of avavible bandwitdh so that he does not kill the connection for the other users.
ASKER CERTIFIED SOLUTION
Avatar of memo_tnt
memo_tnt
Flag of Palestine, State of image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
for specific commands

here is mine

 >> assuming the ip you need to control is 1.1.1.1 and i limited the bandwidth to 1M <<

access-list throttle_me extended permit ip host 1.1.1.1 any
 access-list throttle_me extended permit ip any host 1.1.1.1

class-map throttle-me
 match access-list throttle_me

policy-map throttle-policy
 class throttle-me
 police output 1000000 2000
 police input 1000000 2000

service-policy throttle-policy interface outside
Avatar of LiveComm
LiveComm

ASKER

You're right, i must have seached wrong :)