Cisco 2811 - Divide Bandwidth
20 pts.
0
Q:
Cisco 2811 - Divide Bandwidth
We have Cisco 2811 router with on serial interface and two fast ethernets. We planned to take 1 mbps leased line and we have to divide it into two parts. For one network is should be 300 kbps and the rest bandwidth for another network. Can any help in this.
ASKED: May 12 2009  9:01 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
10345 pts.
0
A:
 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0
  • AddThis Social Bookmark Button
There are a few different ways this can be done but using MQC is going to be the most flexible.


Here is one way it can be done...

Basically you can create a class-map for each group of traffic you are trying to classify.

access-list 101 permit ip x.x.x.x y.y.y.y <customer A's ip address /inverse mask
access-list 102 permit ip x.x.x.x y.y.y.y <customer B's ip address /inverse mask


class-map match-any customera
match access-group 101

class-map match-any customerb
match access-group 102

Then you will create your outbound policy for the external interface

policy-map myoutboundpolicy
class customera
bandwidth (desired bw in kbps)
class customerb
bandwidth (desired bw in kbps)

interface (outbound interface)
service-policy output myoutboundpolicy


This configuration will allow each map to us above it's allocated bandwidth if it's available. In times of congestion, the traffic allocated as you defined.

If you want to only strictly allow the 300kbps or whatever number you decide, you can use the police option under each class in thepolicy map


police (bw in bps) conform-action transmit exceed-action drop

And finally you will have to determine how you want to limit inbound traffic.

An easy way to do this is to create a new service policy for each inside or customer facing interface and then police the outbound traffic there to your desired bandwidth.

There are numerous other ways to get to the same end goal but this seems to be a very easy and quick way to do what you're trying to do.

Good luck

_____________________________________________________________________________________

set your bandwidth on the interfaces to teh speed you wish them to allow. it's fairly simple.
Last Answered: May 12 2009  7:05 PM GMT by ITKE   10345 pts.
Latest Contributors: Jfernatt   605 pts., CRagsdale32   630 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Jfernatt   605 pts.  |   May 12 2009  7:01PM GMT

cragsdale I didn’t meant to dump all over your answer. I had to walk away from the keyboard and just continued typing when i got back not knowing you had posted an answer or I would have put mine into discussion.

 

Jfernatt   605 pts.  |   May 12 2009  8:48PM GMT

Setting the bandwidth on the interface will NOT share bandwidth on the interface. It is used by routing protocols to determine the best path to a network not how to actually load share on the interface. set your bandwidth on the interfaces to teh speed you wish them to allow. it’s fairly simple. is incorrect.

 
0