Hi
You could try the rate-limit command (CAR):
define an extended access-list for, let's say, http and ftp:
access-list 150 permit tcp any any eq www
access-list 150 permit tcp any any eq ftp
access-list 150 permit tcp any any eq ftp-data
then go to the interface:
interface serial0
rate-limit input access-group 150 1000000 8000 8000 conform-action transmit exceed-action drop
the rate-limit line is long, but it's the same line
what is says is that any traffic which is ok for access-list 150 would be limited to 1M on the input direction...
Arie