I need to limit the amount of bandwidht 256K that a single IP can receive or transmit through our 7200 to the internet. Would the best way be to configure an extended IP access-list and apply a rate limit to interface.
access-list 101 permit ip host x.x.x.x any
At Interface:
rate-limit input access-group 101 256000 32000 32000 conform-action tranmit exceed-action drop
rate-limit output access-group 101 256000 32000 32000 conform-action tranmit exceed-action drop
I also have additional access-lists applied to same interface. Do I also need to add the permit IP any any to this access list.