|
Posted by Johnny Routin on November 12, 2004, 11:06 am
If you were Registered and logged in, you could reply and use other advanced thread options
Wouldn't priority queuing meet your needs?
--
JR
--
Johnny Routin
©¿©
-
> I'm trying to set up a couple of classes of traffic on our edge router,
and
> I want them set up in such a way that as long as nothing else on our
network
> needs it, Class "low-priority" gets a portion of our available bandwidth,
> but that class is the first to give up its bandwidth if any other client
> needs it.
>
> I currently have something like this:
> ---------------------
> Class-Map match-any low-priority
> Match protocol blah1
> Match protocol blah2
> Match access-group name blah3
>
> Policy Map incoming-test
> Class low-priority
> set precedence 0
> police cir 256000 bc 8000 be 8000
> conform-action transmit
> exceed-action drop
> violate-action drop
> Class class-default
> set precedence 2
> ---------------------
>
> This, of course, doesn't do what I want, but it is keeping the traffic in
> "low-priority" from eating up the rest of the network when we are needing
> the bandwidth for other things.
>
> Let's say our maximum incoming bandwidth is something like 1,000,000bps.
> Would it work the way I want if I set class-default like this?
> ---------------------
> Class class-default
> police cir 1000000 bc 31250
> conform-action transmit
> exceed-action drop
> ---------------------
>
> None of the tweaks I make seem to work the way I want and only impede the
> traffic I want to give the priority. Is this something I need to use
> random-detect for? I downloaded a number of Cisco docs on QoS like
> "Configuring a QoS Service Policy", but there aren't enough examples for
me
> to get a good idea of how to approach this. Most of them seem, to me, to
be
> more along the lines of "policy 1 gets 20%, policy 2 get 30%, and policy 3
> gets all the rest". I want something like, "policy 1 gets 25%, as long as
> nothing else on the network needs it"
>
> Also, could anyone point me to a good book or online tutorial on QoS
policy
> design?
>
>
|