Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 3550-EMI and QoS

Status
Not open for further replies.

jonas21

Technical User
Nov 27, 2002
18
DE
Hi,

i just got a 3550-EMI and want to QoS limit the bandwidth on some ports.
Heres my setup:

Port 1 Uplink
Port 2 to 48 Servers
All Ports are in Vlan1.
IP Routing is DISABLED.

(Background Info: The switch should limit the customer servers to given bandwidth limits that they purchased.)

I found some stuff about QoS on CCO but no example howto actually rate-limit the bandwidth (in and outgoing) on a interface. I played a bit and only got incoming rate-limit's to work. Could anyone paste his config if he/she got this to work?

Thanks,
Jonas
 
here is my config which works



The match access-group xxx refers to an access list which you need to configure to match both incoming and outgoing traffic, and then you need to apply the traffic-shape policy to the relevant interfaces.


mls qos aggregate-policer test 1000000 250000 exceed-action drop
mls qos aggregate-policer sbs 1000000 250000 exceed-action drop
mls qos aggregate-policer gctr 256000 64000 exceed-action drop
mls qos aggregate-policer kit 2000000 1250000 exceed-action drop
mls qos aggregate-policer webfarm 1000000 250000 exceed-action drop
mls qos aggregate-policer dmz 1000000 250000 exceed-action drop
mls qos aggregate-policer tennants 2000000 1000000 exceed-action drop
mls qos aggregate-policer staff 2000000 1250000 exceed-action drop
mls qos
!
class-map match-any gctr
match access-group 106
class-map match-any test
match none
class-map match-any tennants
match access-group 102
class-map match-any sbs
match access-group 107
class-map match-any staff
match access-group 101
class-map match-any webfarm
match access-group 104
class-map match-any dmz
match access-group 103
class-map match-any kit
match access-group 105
!
!
policy-map traffic-shape
description Limit internet bandwidth
class staff
police aggregate staff
trust dscp
class tennants
police aggregate tennants
trust dscp
class dmz
police aggregate dmz
trust dscp
class webfarm
police aggregate webfarm
trust dscp
class kit
police aggregate kit
trust dscp
class gctr
police aggregate gctr
trust dscp
class sbs
police aggregate sbs
trust dscp



interface FastEthernet0/22
description Link to Internet Router
switchport access vlan 10
no ip address
duplex full
speed 100
service-policy history
service-policy input traffic-shape
spanning-tree portfast
 
Hi Hunter,

thanks alot!

Does this work for incoming and outgoing bandwidth?
I just see the service-policy input traffic-shape for input...but not output?

What are your dcsp paramenters or dont you use any at all?

Thanks,
Jonas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top