Limit bandwidth usage on ASA Outside Interface
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2012 04:20 PM - edited 03-11-2019 04:16 PM
I had an interesting question posed to me today about how to limit bandwidth usage on the outside interface of an ASA device
I did some research, and this is what I came up with. Limiting traffic to 2.5 Meg a second
class-map CM_BW_Throttle
match any
policy-map PM_BW_Throttle
class CM_BW_Throttle
police input 2500000
police output 2500000
exit
exit
service-policy PM_BW_Throttle Outside
Will this interfere with the default inspections or other traffic? I want to make sure it doesn't shut down traffic to the outside interface when it's applied.
- Labels:
-
NGFW Firewalls

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2012 07:26 PM
No, it will not interfere with your default inspection and it will not shutdown the traffic to and from the outside interface.
It will merely apply policing so traffic is not exceeding 2.5Mbps.
Here is the command for your reference:
http://www.cisco.com/en/US/docs/security/asa/asa82/command/reference/p.html#wp1917025
