Voice over IP Cisco - QoS ?

This is Interesting: Free IT Magazines  
Home > Archive > Voice over IP Cisco > March 2006 > QoS ?





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author QoS ?
Voll, Scott

2006-03-21, 2:48 am

I have yet to take the QoS class so can someone give some advice:



I just these class maps:



class-map match-all WAN2LAN-VoIP-ctrl

match ip dscp af31

match ip dscp cs3

class-map match-all VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-all VoIP

match ip dscp ef

match ip precedence 5

class-map match-all WAN2LAN-VoIP

match ip dscp ef



is this correct or should I be using match-any.



Thanks in advance



Scott


Jonathan Charles

2006-03-21, 2:48 am

You should absolutely be doing a match-any.

The problem runs in when you have traffic marked CoS 3 and not DSCP 31

To be honest though, AF31 will have Precedence 3 as a part of it (you need
to break down the binary to see it).

The point here is that you want to prioritize your signalling traffic, which
can be CoS 3, Precedence 3 or DSCP AF31... since we want to match any of
them, we need to do a match-any.



Jonathan


On 3/20/06, Voll, Scott <Scott.Voll@wesd.org> wrote:
>
> I have yet to take the QoS class so can someone give some advice:
>
>
>
> I just these class maps:
>
>
>
> class-map match-all WAN2LAN-VoIP-ctrl
>
> match ip dscp af31
>
> match ip dscp cs3
>
> class-map match-all VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-all VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> class-map match-all WAN2LAN-VoIP
>
> match ip dscp ef
>
>
>
> is this correct or should I be using match-any.
>
>
>
> Thanks in advance
>
>
>
> Scott
>
> ________________________________________
_______
> cisco-voip mailing list
> cisco-voip@puck.nether.net
> https://puck.nether.net/mailman/listinfo/cisco-voip
>
>
>


Bell, Joe

2006-03-21, 2:48 am

You want to use match-any. Match-all means the packet must match all
criteria defined in your map or it does not match. Match-any is any
single description in your maps. Currently, your signaling map does not
match any of the traffic you're trying to classify due to this behavior.
AF31 is bit structure 011010 and CS3 is 011000. There won't be a packet
that matches both. You want it to be an "either" statement, not an
"and" so use match-any. Also, if you use match-any, you can collapse
your class-maps for signaling into one map rather than two, which is
cleaner. Here is a collapsed map that works.



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-any VoIP

match ip dscp ef

match ip precedence 5

.



Joe Bell











________________________________

From: cisco-voip-bounces@puck.nether.net
[mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Voll, Scott
Sent: Monday, March 20, 2006 10:20 AM
To: cisco Voip
Subject: [cisco-voip] QoS ?



I have yet to take the QoS class so can someone give some advice:



I just these class maps:



class-map match-all WAN2LAN-VoIP-ctrl

match ip dscp af31

match ip dscp cs3

class-map match-all VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-all VoIP

match ip dscp ef

match ip precedence 5

class-map match-all WAN2LAN-VoIP

match ip dscp ef



is this correct or should I be using match-any.



Thanks in advance



Scott



This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail and delete the message and any attachments from your system.

Wydra, Jason

2006-03-21, 2:48 am

You want a quick 101 on QoS and DSCP you might want to check out this
link........



http://www.cisco.com/en/US/tech/tk5...tech_note09186a
00800949f2.shtml



Also, with the following class map, wouldn't the CS3 and precedence 3
statements be redundant? Couldn't you just get by with one of them?
Since both effectively are 011000



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3





Jason Wydra

Consultant

burwood group, inc.





________________________________

From: cisco-voip-bounces@puck.nether.net
[mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Bell, Joe
Sent: Monday, March 20, 2006 12:49 PM
To: Voll, Scott; cisco Voip
Subject: Re: [cisco-voip] QoS ?



You want to use match-any. Match-all means the packet must match all
criteria defined in your map or it does not match. Match-any is any
single description in your maps. Currently, your signaling map does not
match any of the traffic you're trying to classify due to this behavior.
AF31 is bit structure 011010 and CS3 is 011000. There won't be a packet
that matches both. You want it to be an "either" statement, not an
"and" so use match-any. Also, if you use match-any, you can collapse
your class-maps for signaling into one map rather than two, which is
cleaner. Here is a collapsed map that works.



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-any VoIP

match ip dscp ef

match ip precedence 5

..



Joe Bell











________________________________

From: cisco-voip-bounces@puck.nether.net
[mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Voll, Scott
Sent: Monday, March 20, 2006 10:20 AM
To: cisco Voip
Subject: [cisco-voip] QoS ?



I have yet to take the QoS class so can someone give some advice:



I just these class maps:



class-map match-all WAN2LAN-VoIP-ctrl

match ip dscp af31

match ip dscp cs3

class-map match-all VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-all VoIP

match ip dscp ef

match ip precedence 5

class-map match-all WAN2LAN-VoIP

match ip dscp ef



is this correct or should I be using match-any.



Thanks in advance



Scott

________________________________

This message and any attachments are intended only for the use of the
addressee and may contain information that is privileged and
confidential. If the reader of the message is not the intended recipient
or an authorized representative of the intended recipient, you are
hereby notified that any dissemination of this communication is strictly
prohibited. If you have received this communication in error, please
notify us immediately by e-mail and delete the message and any
attachments from your system.


Bell, Joe

2006-03-21, 2:48 am

Yes, cs3 is precedent 3. You could get by with just cs3. If you guys
are going for the CCIE Voice, make sure you know your QoS inside and
out.



Joe



________________________________

From: Wydra, Jason [mailto:jwydra@Burwood.com]
Sent: Monday, March 20, 2006 10:57 AM
To: Bell, Joe; Voll, Scott; cisco Voip
Subject: RE: [cisco-voip] QoS ?



You want a quick 101 on QoS and DSCP you might want to check out this
link........



http://www.cisco.com/en/US/tech/tk5...tech_note09186a
00800949f2.shtml



Also, with the following class map, wouldn't the CS3 and precedence 3
statements be redundant? Couldn't you just get by with one of them?
Since both effectively are 011000



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3





Jason Wydra

Consultant

burwood group, inc.





________________________________

From: cisco-voip-bounces@puck.nether.net
[mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Bell, Joe
Sent: Monday, March 20, 2006 12:49 PM
To: Voll, Scott; cisco Voip
Subject: Re: [cisco-voip] QoS ?



You want to use match-any. Match-all means the packet must match all
criteria defined in your map or it does not match. Match-any is any
single description in your maps. Currently, your signaling map does not
match any of the traffic you're trying to classify due to this behavior.
AF31 is bit structure 011010 and CS3 is 011000. There won't be a packet
that matches both. You want it to be an "either" statement, not an
"and" so use match-any. Also, if you use match-any, you can collapse
your class-maps for signaling into one map rather than two, which is
cleaner. Here is a collapsed map that works.



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-any VoIP

match ip dscp ef

match ip precedence 5

.



Joe Bell











________________________________

From: cisco-voip-bounces@puck.nether.net
[mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Voll, Scott
Sent: Monday, March 20, 2006 10:20 AM
To: cisco Voip
Subject: [cisco-voip] QoS ?



I have yet to take the QoS class so can someone give some advice:



I just these class maps:



class-map match-all WAN2LAN-VoIP-ctrl

match ip dscp af31

match ip dscp cs3

class-map match-all VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-all VoIP

match ip dscp ef

match ip precedence 5

class-map match-all WAN2LAN-VoIP

match ip dscp ef



is this correct or should I be using match-any.



Thanks in advance



Scott

________________________________

This message and any attachments are intended only for the use of the
addressee and may contain information that is privileged and
confidential. If the reader of the message is not the intended recipient
or an authorized representative of the intended recipient, you are
hereby notified that any dissemination of this communication is strictly
prohibited. If you have received this communication in error, please
notify us immediately by e-mail and delete the message and any
attachments from your system.



This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail and delete the message and any attachments from your system.

Jonathan Charles

2006-03-21, 2:48 am

Also, I cannot recommend enough the QoS Book for the 642-642 exam by Odam, a
great book... It basically reads itself... the best cisco Press book I have
ever read (for downright usefulness the Configuring cisco CallManager and
Unity by Bateman...



On 3/20/06, Bell, Joe <Joe_Bell@adp.com> wrote:
>
> Yes, cs3 is precedent 3. You could get by with just cs3. If you guys are
> going for the CCIE Voice, make sure you know your QoS inside and out.
>
>
>
> Joe
>
>
> ------------------------------
>
> *From:* Wydra, Jason [mailto:jwydra@Burwood.com]
> *Sent:* Monday, March 20, 2006 10:57 AM
> *To:* Bell, Joe; Voll, Scott; cisco Voip
> *Subject:* RE: [cisco-voip] QoS ?
>
>
>
> You want a quick 101 on QoS and DSCP you might want to check out this
> link……..
>
>
>
>
> http://www.cisco.com/en/US/tech/tk5...0800949f2.shtml
>
>
>
> Also, with the following class map, wouldn't the CS3 and precedence 3
> statements be redundant? Couldn't you just get by with one of them? Since
> both effectively are 011000
>
>
>
> class-map match-any VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
>
>
>
>
> *Jason Wydra*
>
> *Consultant*
>
> *burwood* *group, inc.*
>
>
>
>
> ------------------------------
>
> *From:* cisco-voip-bounces@puck.nether.net [mailto:
> cisco-voip-bounces@puck.nether.net] *On Behalf Of *Bell, Joe
> *Sent:* Monday, March 20, 2006 12:49 PM
> *To:* Voll, Scott; cisco Voip
> *Subject:* Re: [cisco-voip] QoS ?
>
>
>
> You want to use match-any. Match-all means the packet must match all
> criteria defined in your map or it does not match. Match-any is any single
> description in your maps. Currently, your signaling map does not match any
> of the traffic you're trying to classify due to this behavior. AF31 is bit
> structure 011010 and CS3 is 011000. There won't be a packet that matches
> both. You want it to be an "either" statement, not an "and" so use
> match-any. Also, if you use match-any, you can collapse your class-maps for
> signaling into one map rather than two, which is cleaner. Here is a
> collapsed map that works.
>
>
>
> class-map match-any VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-any VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> .
>
>
>
> Joe Bell
>
>
>
>
>
>
>
>
>
>
> ------------------------------
>
> *From:* cisco-voip-bounces@puck.nether.net [mailto:
> cisco-voip-bounces@puck.nether.net] *On Behalf Of *Voll, Scott
> *Sent:* Monday, March 20, 2006 10:20 AM
> *To:* cisco Voip
> *Subject:* [cisco-voip] QoS ?
>
>
>
> I have yet to take the QoS class so can someone give some advice:
>
>
>
> I just these class maps:
>
>
>
> class-map match-all WAN2LAN-VoIP-ctrl
>
> match ip dscp af31
>
> match ip dscp cs3
>
> class-map match-all VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-all VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> class-map match-all WAN2LAN-VoIP
>
> match ip dscp ef
>
>
>
> is this correct or should I be using match-any.
>
>
>
> Thanks in advance
>
>
>
> Scott
> ------------------------------
>
> This message and any attachments are intended only for the use of the
> addressee and may contain information that is privileged and confidential..
> If the reader of the message is not the intended recipient or an authorized
> representative of the intended recipient, you are hereby notified that any
> dissemination of this communication is strictly prohibited. If you have
> received this communication in error, please notify us immediately by e-mail
> and delete the message and any attachments from your system.
>
> ------------------------------
> This message and any attachments are intended only for the use of the
> addressee and may contain information that is privileged and confidential..
> If the reader of the message is not the intended recipient or an authorized
> representative of the intended recipient, you are hereby notified that any
> dissemination of this communication is strictly prohibited. If you have
> received this communication in error, please notify us immediately by e-mail
> and delete the message and any attachments from your system.
>
>
> ________________________________________
_______
> cisco-voip mailing list
> cisco-voip@puck.nether.net
> https://puck.nether.net/mailman/listinfo/cisco-voip
>
>
>


Jonathan Charles

2006-03-21, 2:48 am

No.

CoS is layer 2, Precedence is layer 3...


Jonathan

On 3/20/06, Wydra, Jason <jwydra@burwood.com> wrote:
>
> You want a quick 101 on QoS and DSCP you might want to check out this
> link……..
>
>
>
>
> http://www.cisco.com/en/US/tech/tk5...0800949f2.shtml
>
>
>
> Also, with the following class map, wouldn't the CS3 and precedence 3
> statements be redundant? Couldn't you just get by with one of them? Since
> both effectively are 011000
>
>
>
> class-map match-any VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
>
>
>
>
> *Jason Wydra*
>
> *Consultant*
>
> *burwood* *group, inc.*
>
>
>
>
> ------------------------------
>
> *From:* cisco-voip-bounces@puck.nether.net [mailto:
> cisco-voip-bounces@puck.nether.net] *On Behalf Of *Bell, Joe
> *Sent:* Monday, March 20, 2006 12:49 PM
> *To:* Voll, Scott; cisco Voip
>
> *Subject:* Re: [cisco-voip] QoS ?
>
>
>
> You want to use match-any. Match-all means the packet must match all
> criteria defined in your map or it does not match. Match-any is any single
> description in your maps. Currently, your signaling map does not match any
> of the traffic you're trying to classify due to this behavior. AF31 is bit
> structure 011010 and CS3 is 011000. There won't be a packet that matches
> both. You want it to be an "either" statement, not an "and" so use
> match-any. Also, if you use match-any, you can collapse your class-maps for
> signaling into one map rather than two, which is cleaner. Here is a
> collapsed map that works.
>
>
>
> class-map match-any VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-any VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> .
>
>
>
> Joe Bell
>
>
>
>
>
>
>
>
>
>
> ------------------------------
>
> *From:* cisco-voip-bounces@puck.nether.net [mailto:
> cisco-voip-bounces@puck.nether.net] *On Behalf Of *Voll, Scott
> *Sent:* Monday, March 20, 2006 10:20 AM
> *To:* cisco Voip
> *Subject:* [cisco-voip] QoS ?
>
>
>
> I have yet to take the QoS class so can someone give some advice:
>
>
>
> I just these class maps:
>
>
>
> class-map match-all WAN2LAN-VoIP-ctrl
>
> match ip dscp af31
>
> match ip dscp cs3
>
> class-map match-all VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-all VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> class-map match-all WAN2LAN-VoIP
>
> match ip dscp ef
>
>
>
> is this correct or should I be using match-any.
>
>
>
> Thanks in advance
>
>
>
> Scott
> ------------------------------
>
> This message and any attachments are intended only for the use of the
> addressee and may contain information that is privileged and confidential..
> If the reader of the message is not the intended recipient or an authorized
> representative of the intended recipient, you are hereby notified that any
> dissemination of this communication is strictly prohibited. If you have
> received this communication in error, please notify us immediately by e-mail
> and delete the message and any attachments from your system.
>
> ________________________________________
_______
> cisco-voip mailing list
> cisco-voip@puck.nether.net
> https://puck.nether.net/mailman/listinfo/cisco-voip
>
>
>


Wydra, Jason

2006-03-21, 2:48 am

CS3 isn't CoS dude.



Jason Wydra

Consultant

burwood group, inc.

Phone: (312) 327-4677

Cell: (312) 493-2834

jwydra@burwood.com





________________________________

From: Jonathan Charles [mailto:jonvoip@gmail.com]
Sent: Monday, March 20, 2006 1:26 PM
To: Wydra, Jason
Cc: Bell, Joe; Voll, Scott; cisco Voip
Subject: Re: [cisco-voip] QoS ?



No.

CoS is layer 2, Precedence is layer 3...


Jonathan

On 3/20/06, Wydra, Jason <jwydra@burwood.com > wrote:

You want a quick 101 on QoS and DSCP you might want to check out this
link........



http://www.cisco.com/en/US/tech/tk5...tech_note09186a
00800949f2.shtml



Also, with the following class map, wouldn't the CS3 and precedence 3
statements be redundant? Couldn't you just get by with one of them?
Since both effectively are 011000



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3





Jason Wydra

Consultant

burwood group, inc.





________________________________

From: cisco-voip-bounces@puck.nether.net [mailto:
cisco-voip-bounces@puck.nether.net
<mailto:cisco-voip-bounces@puck.nether.net> ] On Behalf Of Bell, Joe
Sent: Monday, March 20, 2006 12:49 PM
To: Voll, Scott; cisco Voip


Subject: Re: [cisco-voip] QoS ?



You want to use match-any. Match-all means the packet must match all
criteria defined in your map or it does not match. Match-any is any
single description in your maps. Currently, your signaling map does not
match any of the traffic you're trying to classify due to this behavior.
AF31 is bit structure 011010 and CS3 is 011000. There won't be a packet
that matches both. You want it to be an "either" statement, not an
"and" so use match-any. Also, if you use match-any, you can collapse
your class-maps for signaling into one map rather than two, which is
cleaner. Here is a collapsed map that works.



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-any VoIP

match ip dscp ef

match ip precedence 5

..



Joe Bell











________________________________

From: cisco-voip-bounces@puck.nether.net
[mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Voll, Scott
Sent: Monday, March 20, 2006 10:20 AM
To: cisco Voip
Subject: [cisco-voip] QoS ?



I have yet to take the QoS class so can someone give some advice:



I just these class maps:



class-map match-all WAN2LAN-VoIP-ctrl

match ip dscp af31

match ip dscp cs3

class-map match-all VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-all VoIP

match ip dscp ef

match ip precedence 5

class-map match-all WAN2LAN-VoIP

match ip dscp ef



is this correct or should I be using match-any.



Thanks in advance



Scott

________________________________

This message and any attachments are intended only for the use of the
addressee and may contain information that is privileged and
confidential. If the reader of the message is not the intended recipient
or an authorized representative of the intended recipient, you are
hereby notified that any dissemination of this communication is strictly
prohibited. If you have received this communication in error, please
notify us immediately by e-mail and delete the message and any
attachments from your system.


________________________________________
_______
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip






Jonathan Charles

2006-03-21, 2:48 am

I was misreading it...

But I still stand by statement that CoS is layer 2... and Precedence, aka
ToS is layer 3...

You are right, CS3 and Precedence 3 are the same thing... just different
ways of saying it.


Jonathan


On 3/20/06, Wydra, Jason <jwydra@burwood.com> wrote:
>
> CS3 isn't CoS dude.
>
>
>
> *Jason Wydra*
>
> *Consultant***
>
> *burwood* *group, inc.*
>
> *Phone: (312) 327-4677***
>
> *Cell: (312) 493-2834*
>
> jwydra@burwood.com
>
>
>
>
> ------------------------------
>
> *From:* Jonathan Charles [mailto:jonvoip@gmail.com]
> *Sent:* Monday, March 20, 2006 1:26 PM
> *To:* Wydra, Jason
> *Cc:* Bell, Joe; Voll, Scott; cisco Voip
>
> *Subject:* Re: [cisco-voip] QoS ?
>
>
>
> No.
>
> CoS is layer 2, Precedence is layer 3...
>
>
> Jonathan
>
> On 3/20/06, *Wydra, Jason* <jwydra@burwood.com > wrote:
>
> You want a quick 101 on QoS and DSCP you might want to check out this
> link……..
>
>
>
>
> http://www.cisco.com/en/US/tech/tk5...0800949f2.shtml
>
>
>
> Also, with the following class map, wouldn't the CS3 and precedence 3
> statements be redundant? Couldn't you just get by with one of them? Since
> both effectively are 011000
>
>
>
> class-map match-any VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
>
>
>
>
> *Jason Wydra*
>
> *Consultant*
>
> *burwood* *group, inc.*
>
>
>
>
> ------------------------------
>
> *From:* cisco-voip-bounces@puck.nether.net [mailto:cisco-voip-bounces@puck.nether.net]
> *On Behalf Of *Bell, Joe
> *Sent:* Monday, March 20, 2006 12:49 PM
> *To:* Voll, Scott; cisco Voip
>
>
> *Subject:* Re: [cisco-voip] QoS ?
>
>
>
> You want to use match-any. Match-all means the packet must match all
> criteria defined in your map or it does not match. Match-any is any single
> description in your maps. Currently, your signaling map does not match any
> of the traffic you're trying to classify due to this behavior. AF31 is bit
> structure 011010 and CS3 is 011000. There won't be a packet that matches
> both. You want it to be an "either" statement, not an "and" so use
> match-any. Also, if you use match-any, you can collapse your class-maps for
> signaling into one map rather than two, which is cleaner. Here is a
> collapsed map that works.
>
>
>
> class-map match-any VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-any VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> .
>
>
>
> Joe Bell
>
>
>
>
>
>
>
>
>
>
> ------------------------------
>
> *From:* cisco-voip-bounces@puck.nether.net [mailto:
> cisco-voip-bounces@puck.nether.net] *On Behalf Of *Voll, Scott
> *Sent:* Monday, March 20, 2006 10:20 AM
> *To:* cisco Voip
> *Subject:* [cisco-voip] QoS ?
>
>
>
> I have yet to take the QoS class so can someone give some advice:
>
>
>
> I just these class maps:
>
>
>
> class-map match-all WAN2LAN-VoIP-ctrl
>
> match ip dscp af31
>
> match ip dscp cs3
>
> class-map match-all VoIP-ctrl
>
> match ip dscp cs3
>
> match ip dscp af31
>
> match ip precedence 3
>
> class-map match-all VoIP
>
> match ip dscp ef
>
> match ip precedence 5
>
> class-map match-all WAN2LAN-VoIP
>
> match ip dscp ef
>
>
>
> is this correct or should I be using match-any.
>
>
>
> Thanks in advance
>
>
>
> Scott
> ------------------------------
>
> This message and any attachments are intended only for the use of the
> addressee and may contain information that is privileged and confidential..
> If the reader of the message is not the intended recipient or an authorized
> representative of the intended recipient, you are hereby notified that any
> dissemination of this communication is strictly prohibited. If you have
> received this communication in error, please notify us immediately by e-mail
> and delete the message and any attachments from your system.
>
>
> ________________________________________
_______
> cisco-voip mailing list
> cisco-voip@puck.nether.net
> https://puck.nether.net/mailman/listinfo/cisco-voip
>
>
>


Robin Inderberg

2006-03-23, 8:47 pm

A question regarding the text written in this post.



The statement match-any on a 2950T, I guess it isn't possible to use, right?

c2950-i6q4l2-mz.121-22.EA1b.bin I use this image..





Med vänliga hälsningar



Robin Inderberg

robin.inderberg@candidator.se <mailto:robin.inderberg@candidator.se>

________________________________________
_____

Telefon: 0322-67 10 00 www.candidator.se <http://www.candidator.se/>

Direkt: 0322-67 10 19 Candidator AB

Mobil: 0733-47 10 19 Malmgatan 15

Fax: 0322-67 10 99 441 39 ALINGSÅS

¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
¯¯¯¯¯

________________________________

From: cisco-voip-bounces@puck.nether.net [mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Jonathan Charles
Sent: den 20 mars 2006 20:33
To: Wydra, Jason
Cc: Voll, Scott; cisco Voip; Bell, Joe
Subject: Re: [cisco-voip] QoS ?



I was misreading it...

But I still stand by statement that CoS is layer 2... and Precedence, aka ToS is layer 3...

You are right, CS3 and Precedence 3 are the same thing... just different ways of saying it.


Jonathan



On 3/20/06, Wydra, Jason <jwydra@burwood.com> wrote:

CS3 isn't CoS dude.



Jason Wydra

Consultant

burwood group, inc.

Phone: (312) 327-4677

Cell: (312) 493-2834

jwydra@burwood.com





________________________________

From: Jonathan Charles [mailto:jonvoip@gmail.com]
Sent: Monday, March 20, 2006 1:26 PM
To: Wydra, Jason
Cc: Bell, Joe; Voll, Scott; cisco Voip


Subject: Re: [cisco-voip] QoS ?



No.

CoS is layer 2, Precedence is layer 3...


Jonathan

On 3/20/06, Wydra, Jason <jwydra@burwood.com > wrote:

You want a quick 101 on QoS and DSCP you might want to check out this link........



http://www.cisco.com/en/US/tech/tk5...0800949f2.shtml



Also, with the following class map, wouldn't the CS3 and precedence 3 statements be redundant? Couldn't you just get by with one of them? Since both effectively are 011000



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3





Jason Wydra

Consultant

burwood group, inc.





________________________________

From: cisco-voip-bounces@puck.nether.net [mailto: cisco-voip-bounces@puck.nether.net <mailto:cisco-voip-bounces@puck.nether.net> ] On Behalf Of Bell, Joe
Sent: Monday, March 20, 2006 12:49 PM
To: Voll, Scott; cisco Voip


Subject: Re: [cisco-voip] QoS ?



You want to use match-any. Match-all means the packet must match all criteria defined in your map or it does not match. Match-any is any single description in your maps. Currently, your signaling map does not match any of the traffic you're trying to classify due to this behavior. AF31 is bit structure 011010 and CS3 is 011000. There won't be a packet that matches both. You want it to be an "either" statement, not an "and" so use match-any. Also, if you use match-any, you can collapse your class-maps for signaling into one map rather than two, which is cleaner. Here is a collapsed map that works.



class-map match-any VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-any VoIP

match ip dscp ef

match ip precedence 5

..



Joe Bell











________________________________

From: cisco-voip-bounces@puck.nether.net [mailto:cisco-voip-bounces@puck.nether.net] On Behalf Of Voll, Scott
Sent: Monday, March 20, 2006 10:20 AM
To: cisco Voip
Subject: [cisco-voip] QoS ?



I have yet to take the QoS class so can someone give some advice:



I just these class maps:



class-map match-all WAN2LAN-VoIP-ctrl

match ip dscp af31

match ip dscp cs3

class-map match-all VoIP-ctrl

match ip dscp cs3

match ip dscp af31

match ip precedence 3

class-map match-all VoIP

match ip dscp ef

match ip precedence 5

class-map match-all WAN2LAN-VoIP

match ip dscp ef



is this correct or should I be using match-any.



Thanks in advance



Scott

________________________________

This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail and delete the message and any attachments from your system.


________________________________________
_______
cisco-voip mailing list
cisco-voip@puck.nether.net
https://puck.nether.net/mailman/listinfo/cisco-voip






Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com