Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > priority-list functionality on a tunnel interface

Reply
Thread Tools

priority-list functionality on a tunnel interface

 
 
John Caruso
Guest
Posts: n/a
 
      12-22-2004
I'd like to implement a simple priority-based queueing scheme on a GRE
tunnel (e.g. making all telnet traffic higher priority than any other
traffic), but unfortunately GRE tunnels don't allow the use of priority-list/
priority-group. So: what's the simplest alternative to achieve the same
thing? I.e., approaching the level of simplicity of priority-list. I've
browsed through the Cisco QoS documentation and I can see a few ways to
approach this, but I'm looking for the most direct way--the tree that's
obscured by the forest of QoS documentation, you might say.

A short config snippet would be much appreciated.

- John
 
Reply With Quote
 
 
 
 
John Caruso
Guest
Posts: n/a
 
      12-28-2004
In article <. net>, John Caruso wrote:
> I'd like to implement a simple priority-based queueing scheme on a GRE
> tunnel (e.g. making all telnet traffic higher priority than any other
> traffic), but unfortunately GRE tunnels don't allow the use of priority-list/
> priority-group. So: what's the simplest alternative to achieve the same
> thing? I.e., approaching the level of simplicity of priority-list. I've
> browsed through the Cisco QoS documentation and I can see a few ways to
> approach this, but I'm looking for the most direct way


I should have said that I *can't* see any way to do specifically what I'm
talking about, since using class-map/policy-map, it looks like the main
priority options are to set either the total Kbits/sec or the percentage
of total bandwidth. I don't see any way to just do what priority-list
does--i.e., put certain traffic into a high priority queue which will
*always* be serviced first.

Maybe what I want to do isn't possible for tunnel interfaces, and that's
why there are no responses. If so, though, I'm pretty surprised that
something that's so easy to do with priority queueing is so difficult to
do with the more general QoS constructs.

- John
 
Reply With Quote
 
 
 
 
DaveT
Guest
Posts: n/a
 
      12-30-2004
John,

This should work for what you're looking for:
class-map match-all telnet
match protocol telnet
!
!
policy-map tunnel-child
class telnet
priority 290
policy-map tunnel-parent
class class-default
shape average 300000
service-policy tunnel-child

interface Tunnel10
ip address 1.1.1.1 255.255.255.0
service-policy output tunnel-parent
tunnel source 2.2.2.2
tunnel destination 3.3.3.3



Basically you need to define the total amount of available bandwidth
and tell it to shape to that in the "parent" policy map, and apply a
child policy map to define how it should get broken up. Let me know if
this works!
-Dave

John Caruso wrote:
> In article <. net>,

John Caruso wrote:
> > I'd like to implement a simple priority-based queueing scheme on a

GRE
> > tunnel (e.g. making all telnet traffic higher priority than any

other
> > traffic), but unfortunately GRE tunnels don't allow the use of

priority-list/
> > priority-group. So: what's the simplest alternative to achieve the

same
> > thing? I.e., approaching the level of simplicity of priority-list.

I've
> > browsed through the Cisco QoS documentation and I can see a few

ways to
> > approach this, but I'm looking for the most direct way

>
> I should have said that I *can't* see any way to do specifically what

I'm
> talking about, since using class-map/policy-map, it looks like the

main
> priority options are to set either the total Kbits/sec or the

percentage
> of total bandwidth. I don't see any way to just do what

priority-list
> does--i.e., put certain traffic into a high priority queue which will
> *always* be serviced first.
>
> Maybe what I want to do isn't possible for tunnel interfaces, and

that's
> why there are no responses. If so, though, I'm pretty surprised that
> something that's so easy to do with priority queueing is so difficult

to
> do with the more general QoS constructs.
>
> - John


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
One IPsec tunnel and no ISAKMP tunnel. AM Cisco 7 07-19-2007 03:11 PM
Site to site VPn tunnel and VPN tunnel Trouble Cisco 0 08-04-2006 04:23 AM
GRE Tunnel up/up Cannot ping tunnel interface tsvanduyn@yahoo.com Cisco 6 03-09-2006 01:33 AM
Split Tunnel Blocks http through tunnel but passes http around tunnel a.nonny mouse Cisco 2 09-19-2004 12:10 AM
Termination of an IPSec VPN tunnel and a GRE Tunnel on one physical interface. John Ireland Cisco 1 11-11-2003 04:47 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57