cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
541
Views
0
Helpful
3
Replies

Packet shaping with ASA5505

clark.ambrose
Level 1
Level 1

I have a client that sends periodic bulk mail to their members. When they do this it completely floods their DSL connection.

Is there a way with an ASA5505 to do packet shaping to limit the amount of smtp traffic to no more than 50% of their upload speed or no more than 25% when the utilization is above 80% for all traffic?

I haven't done any QoS configuration with these devices before so any specifics would be helpful. Thanks.

3 Replies 3

clark.ambrose
Level 1
Level 1

Anyone?

I do not believe rate limiting is possible, feel free to doouble check though in the documentation

autobot130
Level 1
Level 1

This is an easy one. Yes you can achieve this on the ASA5505 by configuring QoS rate-limiting.

First configure a class-map to match the type of traffic.

Second, configure a policy-map to match all the class-maps.

Third, apply policy-map to the physical interface.

hostname(config)# class-map TG1-best-effort

hostname(config-cmap)# match tunnel-group Tunnel-Group-1

hostname(config-cmap)# match flow ip destination-address

hostname(config)# policy-map qos

hostname(config-pmap)# class tcp_traffic

hostname(config-pmap-c)# police output 56000 10500

hostname(config-pmap-c)# class TG1-voice

hostname(config-pmap-c)# priority

hostname(config-pmap-c)# class TG1-best-effort

hostname(config-pmap-c)# police output 200000 37500

hostname(config-pmap-c)# class class-default

hostname(config-pmap-c)# police output 1000000 37500

Reference URL: http://www.cisco.com/en/US/docs/security/asa/asa70/configuration/guide/qos.html#wp1045477

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card