Sure. The QoS settings apply to both the SCCP and SIP VoIP traffic. As I said, the CME SCCP is flawless during file downloads while a simultaneous SwitchVox SIP call is severely chopped up.
The QoS portions of the config follow. I look for any CS5 marked traffic or anything originating from the SwitchVox server (10.0.0.16) or the SIP phone (10.0.0.121) and remark it as EF as it goes out through the LAN interface. The WAN interface policy looks for anything going out marked EF and puts it iin the priority queue. At the same time, the WAN interface polices FTP/HTTP inbound to reserve bandwidth for voice.
class-map match-any FTP-Traffic
match protocol ftp
match protocol http
match protocol secure-http
match protocol secure-ftp
class-map match-any CS5
match ip dscp cs5
match access-group name switchvox-server
match access-group name switchvox-phone
class-map match-any VOICE
match ip dscp ef
class-map match-any Signaling
match ip dscp cs3
match ip dscp af31
class-map match-any INTERNETWORK-CONTROL
match ip dscp cs6
match access-group name IKE
class-map match-any TRANSACTIONAL-DATA
match ip dscp af21 af22
policy-map Limit-FTP
class FTP-Traffic
police cir 16000000
conform-action transmit
exceed-action drop
policy-map MARKING
class CS5
set dscp ef
policy-map V3PN-EDGE
class VOICE
priority percent 33
class INTERNETWORK-CONTROL
bandwidth percent 5
class TRANSACTIONAL-DATA
bandwidth percent 21
queue-limit 20 packets
class SCAVENGER
bandwidth percent 1
queue-limit 1 packets
class Signaling
bandwidth percent 5
class class-default
fair-queue
random-detect
interface FastEthernet0/0
description connected to Private LAN
ip address 10.0.0.1 255.255.255.0
ip nat inside
ip virtual-reassembly
zone-member security ZN-Inside_LAN
ip tcp adjust-mss 1300
duplex auto
speed auto
service-policy input MARKING
interface FastEthernet0/1
description Cable modem
bandwidth 2200
ip address w.x.y.z 255.255.255.240
ip nat outside
ip virtual-reassembly
zone-member security ZN-Outside_T1
duplex auto
speed auto
crypto map combinedmap
service-policy input Limit-FTP
service-policy output V3PN-EDGE
ip access-list extended switchvox-phone
permit ip host 10.0.0.121 any
ip access-list extended switchvox-server
permit ip host 10.0.0.16 any
Main Topics
Browse All Topics





by: netbonesPosted on 2009-05-22 at 20:08:29ID: 24456563
Can you post your config for the SIP QoS?