cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1121
Views
0
Helpful
4
Replies

pix limited bandwith

jaymare33
Level 1
Level 1

I hope this is the right place where I can post my problem: I just want to limit traffic on my pix's ethernet interface.. is it possible?

1 Accepted Solution

Accepted Solutions

Hello,

in the same document you find a section entitled "Activating the Service Policy", where you find the command:

hostname(config)# service-policy qos interface outside

One service policy can be applied per interface.

A sample configuration to limit all traffic across an interface, which should be close to what you need:

hostname(config)# policy-map Limit1MB

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

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

hostname(config)# service-policy Limit1MB interface outside

You can also use other interfaces and apply the service-policy.

Hope this helps! Please rate all posts.

Regards, Martin

View solution in original post

4 Replies 4

mheusinger
Level 10
Level 10

Hello,

with version 7.0 QoS is part of the PIX features. This includes rat limiting. For a detailed explanation of possibilities and limitations please read in the "Cisco Security Appliance Command Line Configuration Guide, Version 7.0" the section on rate limiting: "Applying Rate Limiting"

http://www.cisco.com/en/US/products/ps6120/products_configuration_guide_chapter09186a0080450b9a.html#wp1045477

Hope this helps! Please rate all posts.

Regards, Martin

thank you! that seems to be really helpfull.. however I could not find a way to apply qos to an ethernet interface. T-T

Hello,

in the same document you find a section entitled "Activating the Service Policy", where you find the command:

hostname(config)# service-policy qos interface outside

One service policy can be applied per interface.

A sample configuration to limit all traffic across an interface, which should be close to what you need:

hostname(config)# policy-map Limit1MB

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

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

hostname(config)# service-policy Limit1MB interface outside

You can also use other interfaces and apply the service-policy.

Hope this helps! Please rate all posts.

Regards, Martin

thank you.. it has been really helpful!