Situation: 2 VOIP PBX's connected over a network with some cisco 2950 and 3550 switches inbetween (among others). QOS is needed to keep jitter at a minimum.
I'm trying to config a catalyst 3550 right now.
PBX's set dscp=46 themselves so do not need to mark incoming traffic.
According to http://www.cisco.com/univercd/cc/td/doc...22/122cgcr/fqos_c/fqcprt7/qcfdfsrv.htm I can do this with class-maps, policy-maps and service policies.
So class map:
Switch(config)#class-map match-all voip46
Switch(config-cmap)#match ip dscp 46
policy map:
Switch(config)#policy-map voip46
Switch(config-pmap)#class voip46
Now I should be able to give a priority command. Unfourtunatly, no go.
Only available is bandwidth which doesn't help since it does not forward to the priority queue and hence does northing to limit jitter. Why doesn't the priority command show here? Anyway to solve my problem?
I'm trying to config a catalyst 3550 right now.
PBX's set dscp=46 themselves so do not need to mark incoming traffic.
According to http://www.cisco.com/univercd/cc/td/doc...22/122cgcr/fqos_c/fqcprt7/qcfdfsrv.htm I can do this with class-maps, policy-maps and service policies.
So class map:
Switch(config)#class-map match-all voip46
Switch(config-cmap)#match ip dscp 46
policy map:
Switch(config)#policy-map voip46
Switch(config-pmap)#class voip46
Now I should be able to give a priority command. Unfourtunatly, no go.
Code:
Switch(config-pmap)#class voip46
Switch(config-pmap-c)#?
QoS policy-map class configuration commands:
bandwidth Bandwidth
exit Exit from QoS class action configuration mode
no Negate or set default values of a command
trust Set trust value for the class
<cr>
police Police
set Set QoS values
Only available is bandwidth which doesn't help since it does not forward to the priority queue and hence does northing to limit jitter. Why doesn't the priority command show here? Anyway to solve my problem?