cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1120
Views
0
Helpful
2
Replies

Cisco 6500 - Limit port bandwidth

a.psomas
Level 1
Level 1

Hello all, 

I have a Cisco 6500 with IOS 12.2(33)SXJ5 .A customer have a server connected to an access port .. I want to limit this port to 60MBit full dublex. Any ideas how can i configure this ? 

Thanks

1 Accepted Solution

Accepted Solutions

chrihussey
VIP Alumni
VIP Alumni

Doesn't look like you can configure CAR (committed access rate) on the 6500, however it may be dependent on different blades / IOS. Regardless I think a service policy could be applied to accomplish this. Might need some tweaking, but this should give you and idea:

!
!
class-map match-any test
  match any
!
!
policy-map TEST
  class test
   police cir 60000000 bc 11250000    conform-action transmit     exceed-action drop
!
!
!
interface GigabitEthernet2/7
 service-policy input TEST
 service-policy output TEST
!
!

Some bursting is allowed because if you don't it never gets to 60 Mbs. The CIR is in bits and the burst (bc) is in bytes.

Hope this helps.

View solution in original post

2 Replies 2

chrihussey
VIP Alumni
VIP Alumni

Doesn't look like you can configure CAR (committed access rate) on the 6500, however it may be dependent on different blades / IOS. Regardless I think a service policy could be applied to accomplish this. Might need some tweaking, but this should give you and idea:

!
!
class-map match-any test
  match any
!
!
policy-map TEST
  class test
   police cir 60000000 bc 11250000    conform-action transmit     exceed-action drop
!
!
!
interface GigabitEthernet2/7
 service-policy input TEST
 service-policy output TEST
!
!

Some bursting is allowed because if you don't it never gets to 60 Mbs. The CIR is in bits and the burst (bc) is in bytes.

Hope this helps.

Thanks chrihussey  I thing it works! 

Review Cisco Networking for a $25 gift card