cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1055
Views
0
Helpful
5
Replies

Bandwidth Restriction on each port Layer 3750 Layer 3 Switch

sulekhnain
Level 1
Level 1

I have a Cisco 3750 layer 3 switch. I want to limit the bandwidth to 1 Mbps on each port of switch. Can i do that & if yes then How ?

Please let me know

5 Replies 5

royalblues
Level 10
Level 10

Friend,

You can use policing to limit the bandwidth.

Switch(config)# access-list 1 permit any

Switch(config)# class-map ipclass1

Switch(config-cmap)# match access-group 1

Switch(config-cmap)# exit

Switch(config)# policy-map flow1t

Switch(config-pmap)# class ipclass1

Switch(config-pmap-c)# police 1000000 8000 exceed-action drop

Switch(config)# interface gigabitethernet2/0/1

Switch(config-if)# service-policy input flow1t

have a look at this link

http://www.cisco.com/univercd/cc/td/doc/product/lan/cat3750/12225see/scg/swqos.htm#wp1044737

HTH, rate if it does

Narayan

Thanks a lot Sir,

I am able to control the input traffic on the port with about said configuration. But when I applly service-policy on output of port, it says that "Warning: Assigning a policy map to the output side of an interface not supported"

Please let me know how to apply service policy on output of port.

Thanks,

Sulekh Nain

Pavel Bykov
Level 5
Level 5

Alternatively, you can do it over class-default, without using Access List.

eg:

policy-map LIMIT_1M

class class-default

police 1000000 8000 exceed-action drop

interface range gigabit 1/0/1 - 24

service-policy input LIMIT_1M

Thanks a lot Sir,

I am able to control the input traffic on the port with about said configuration. But when I apply service-policy on output of port, it says that "Warning: Assigning a policy map to the output side of an interface not supported"

Please let me know how to apply service policy on output of port.

Thanks,

Sulekh Nain

Edison Ortiz
Hall of Fame
Hall of Fame
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