cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
711
Views
0
Helpful
2
Replies

Advanced QoS configuration

Oneal1975
Level 1
Level 1

Here is the basic network info:

6 remote sites with thin clients, VoIP phones, and some PC's

1 Central office

Database hosted in cloud environment

Thin clients at remote offices need to connect to central office via citrix

PC's at remote offices connect to the shares at Central office

PC's at remote offices connect to the hosted database

Central office connects to the hosted database

Thin clients connected to the central office citrix then route to the hosted database


Need to accomplish the following

Improve VoIP quality between sites

Gaurantee bandwidth and priority to hosted database connectionsduring times of WAN saturation for all locations

Gaurantee citrix connection to central office stays up and as fast as possible


Each remote location has 2 WAN connections, a 6 Mb and 2 Mb connection. 

The Central Location has a 50Mbps and 10Mbps connection

They are also using a PET topology between the offices.


Please let me know if you need any further information.

Thank you in advance for your help.

 

 

 

 

 

 

 

2 Replies 2

Joseph W. Doherty
Hall of Fame
Hall of Fame

Disclaimer

The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.

Liability Disclaimer

In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.

Posting

You need to further, and in detail, describe your logical and physical topologies.

QoS can be used to manage bandwidth, which should meet most or all of your service requirements, but for it to really work, it needs to manage all the bandwidth.

For example, if your WAN supports any kind of multipoint, i.e. where more than one other site has a path to another site, you can congest on egress to the destination site, but do you control that congestion point?

You can do a QoS as this :

class-map match-any TrafficoVoipCTRL
 match protocol skinny
 match access-group name TrafficoVoiceCtrl
 match access-group name TrafficoICM
 match protocol sip
class-map match-any TrafficoSQL
 match protocol sqlserver
 match protocol sqlnet
policy-map QosCentralToRemote

 class TrafficoSQL
  set ip dscp af21
  bandwidth percent 5
  random-detect

 class TrafficoVoipCTRL
  set ip dscp af31
  priority percent 20
 

Extended IP access list TrafficoVoiceCtrl
    10 permit tcp any range 1024 65535 host 172.16.0.140 range 2000 2002
    20 permit tcp host 172.16.0.140 range 2000 2002 any range 1024 65535 (271928 matches)
    30 permit tcp any range 1024 65535 host 172.16.0.141 range 2000 2002
    40 permit tcp host 172.16.0.141 range 2000 2002 any range 1024 65535 (383409 matches)
    50 permit tcp any range 1024 65535 host 172.16.0.142 range 2000 2002
    60 permit tcp host 172.16.0.142 range 2000 2002 any range 1024 65535 (213604 matches)

Extended IP access list TrafficoICM
    10 permit tcp 192.168.95.0 0.0.0.255 range 1024 65535 host 172.16.0.144 eq 42028
    20 permit tcp host 172.16.0.144 eq 42028 192.168.95.0 0.0.0.255 range 1024 65535
    30 permit tcp 192.168.90.0 0.0.0.255 range 1024 65535 host 172.16.0.144 eq 42028
    40 permit tcp host 172.16.0.144 eq 42028 192.168.90.0 0.0.0.255 range 1024 65535
    50 permit tcp 192.168.95.0 0.0.0.255 range 1024 65535 host 172.16.0.148 eq 1433
    60 permit tcp host 172.16.0.148 eq 1433 192.168.95.0 0.0.0.255 range 1024 65535


 

Review Cisco Networking for a $25 gift card