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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need a Config for a 6500 bandwidth reservation

Status
Not open for further replies.

9Nails

IS-IT--Management
Feb 26, 2008
1
US
I would like to accomplish some bandwidth reservation of 20% for specific IP Addresses that match an access list in a Cisco 6500 chassis with a 720 Supervisor.

My network looks like:
[Remote Campus']<router> -- FiberWAN -- <6500 switch>[Central Office]

I've previously has a router do this for me, but changing the connection to a 6500 has presented some challenges.

In the 6500 it seems that I cannot use policy-map statements such as:
priority
bandwidth
or shape average

Example of the ROUTER config that I used:
version 12.4
!
class-map match-all Mission_Critical
match access-group 199
!
policy-map Office-2Mb
class Mission_Critical
bandwidth percent 20
policy-map shape-10M-rsvd
class class-default
shape average 10000000
service-policy Office-2Mb
!
!
interface GigabitEthernet0/1
description *** FiberWAN Collector Circuit ***
no ip address
duplex auto
speed auto
media-type sfp
no negotiation auto
!
interface GigabitEthernet0/1.151
description *** CID xxx101-001PT Site 1 ***
encapsulation dot1Q 151
ip address 10.6.199.1 255.255.255.252
service-policy output shape-10M-rsvd
!
interface GigabitEthernet0/1.152
description *** CID xxx102-001PT Site 2 ***
encapsulation dot1Q 152
ip address 10.6.199.5 255.255.255.252
service-policy output shape-10M-rsvd
!
access-list 199 permit ip 10.6.151.0 0.0.0.255 any
access-list 199 permit ip 10.6.152.0 0.0.0.255 any

So, what I'm looking for is a way to provide something similar in my 6500 switch.

Currently, the SWITCH config looks like:
version 12.2
!
interface GigabitEthernet11/25
description *** FiberWAN Collector Circuit ***
switchport
switchport trunk encapsulation dot1q
switchport mode trunk
no ip address
speed nonegotiate
!
interface Vlan151
description *** CID xxx101-001PT Site 1 ***
bandwidth 10000
ip address 10.6.199.1 255.255.255.252
traffic-shape rate 10000000 250000 250000 1000
!
interface Vlan152
description *** CID xxx102-001PT Site 2 ***
bandwidth 10000
ip address 10.6.199.5 255.255.255.252
traffic-shape rate 10000000 250000 250000 1000
!
 
What options do you have?

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top