Creating network bandwidth policies

It is a good thing to plan the entire CAC and QoS policy before beginning the configuration. Having done this, we can start adding the bandwidth policies. We could skip this and go directly to the Region tab, but once we get to the Site tab, we need to refer to these policies. Keep to the plan. Move left to right. Don't start this project unless the master QoS and CAC plan is complete.

Note

As an example, we will create three bandwidth policies in this walkthrough: Low, Medium, and High. The High policy will offer the best quality of audio and video. The Low policy will allow for a decent audio quality but no video. The Medium policy will be a balanced policy, allowing some video.

Getting ready

Begin this task only after carefully collecting data and when the planning of the entire QoS and CAC configuration is complete.

How to do it...

Proceed with the following steps for creating network bandwidth policies:

  1. Launch the Lync Server Control Panel with an account that has the RTCUniversalServerAdmins rights, and navigate to Bandwidth Policies under the Network Configuration section.
  2. Select New as shown in the following screenshot:
    How to do it...
  3. Enter the values desired for this policy (from the previous BW table).
  4. Name: This is also known as Identity in PS.
  5. AudioBWLimit: This is the total BW dedicated to audio.
  6. AudioBWSessionLimit: This is the maximum BW per audio call.
  7. VideoBWLimit: This is the total BW dedicated to videos.
  8. VideoBWSessionLimit: This is the maximum BW per video call.
  9. Description: This is not required but recommended.
  10. Click on Commit.

When this task is complete, the CSCP should look similar to the following screenshot:

How to do it...

There's more...

This task can be completed in PowerShell as well, and if there is a call for many policies, PowerShell might be an easier and quicker way to apply these settings:

  1. Create a CSV file with all the information required, as shown in the following screenshot (the header row is named according to the matching properties to be imported):
    There's more...
  2. Save the file (the example script shows C:LyncScriptsQOSCAC.csv).
  3. Run the following PowerShell command to import and configure:
    Import-Csv C:LyncScriptsQOSCAC.csv | foreach {
    New-CsNetworkBandwidthPolicyProfile -Identity $_.Identity`
     -AudioBWLimit $_.AudioBWLimit`
     -AudioBWSessionLimit $_.AudioBWSessionLimit`
     -VideoBWLimit $_.VideoBWLimit`
     -VideoBWSessionLimit $_.VideoBWSessionLimit`
     -Description $_.Description -Verbose
    }
    

See also

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.118.186.143