Quality of Service for Skype for Business/Lync configuration and best practice Guide V2

Size: px
Start display at page:

Download "Quality of Service for Skype for Business/Lync configuration and best practice Guide V2"

Transcription

1 Quality of Service for Skype for Business/Lync configuration and best practice Guide V2 Overview: As you know that Microsoft Skype for Business is great product which has multiple features which help enterprise users to communicate and collaborate effectively from anywhere. To get Skype for Business to work correctly for internal and external users, is complex task as we are dealing with vast product. Improving quality of service is very important. So, this admin guide helps you to configure end to end Quality of Service. Also, this document mainly focusing on why we need Quality of Service and how we can configure this. Basically, Quality of Services is not a only solution of every quality problem, however QoS is combination of networking technologies that enables companies to optimize the end-user experience for real time audio, video and application sharing communications. QoS is commonly used when network bandwidth is limited and when network congestion, in practice bandwidth limitation and network congestion always there so we must have QoS configure correctly to optimize end-users experience. Author: Balu Ilag Microsoft MVP (Office Servers and Services) , Balu Ilag, System Administrator, Microsoft MVP Office Apps and Services. Version 2.0 Contact me at: balasaheb.ilag@hotmail.com Blog: This document covers how to deploy quality of services and why we need it. Target audience for this admin guide are Skype for Business / Lync Administrator, Skype for Business Online (Office365) Administrator, Network Engineer and System Administrator who manages Skype for Business and Lync server 2013 environment.

2 Quality of Service for Skype for Business / Lync configuration and best practice Guide V2 Why QoS required? Quality of Services (QoS) is a combination of networking technologies that enables companies to optimize the end-user experience for real time audio, video and application sharing communications. QoS is commonly used when network bandwidth is limited and when network congestion, in practice bandwidth limitation and network congestion always there so we must have QoS configure correctly to optimize end-users experience. QoS can be configure as end to end, it more useful your media traffic traverse over Wide Area Network because on Local Area Network you might not have network congestion and bandwidth issues. When we talk about WAN, were most of organization uses Multi-Protocol Label Switched (MPLS). MPLS network is a L3 WAN built by a service provider to sell its bandwidth to many customers and allows to guarantee a quality of service (QoS). With that said means QoS is always required How QoS is working? Basically, all port range provided to Skype for Business/Lync client via in band provisioning. This means that once your Skype for Business / Lync client signs in, they will start using these locked down port ranges which configured on Skype for Business/ Lync Server and this ports pushed down to Skype for Business/ Lync clients. So, when client initiate the media traffic using applications like lync.exe, communicator.exe and attendeeconsole.exe. This means that all applications that utilize the Audio/Video, Application sharing, file transfer ports, which will get DSCP (Differentiated Services Code Point), markings stamped by Operating System via GPO (Group Policy Object). Operating System like, Windows Vista, Windows 7, Windows 8 and Windows 10 utilize the Policy based QoS. Policy based QoS has the benefit that you can restrict the QoS at the application level. This means that all client applications that utilize the Audio/Video Application sharing, file transfer ports that we configure for Audio/Video, Application sharing, file transfer will get DSCP markings stamped.

3 In other word the Windows or Windows Server operating system can identify the traffic type and apply the appropriate DSCP to each packet according to the port that it uses. Below is the client application with their executable file name: Office Communicator 2007/R2 and Lync 2010 communicator.exe Lync 2010 and Lync Attendant Console - attendantconsole.exe Lync 2013, Skype for Business 2015 and Skype for Business 2016 Lync.exe Below are the port ranges and DSCP values with their Media type: Media Type Communication Port Range Port Count DSCP Values Conferencing Audio 8348 Server Audio Mediation Server Audio Clients Conferencing Video 8034 Server Video Clients App Conferencing Sharing Server App Clients 20 Sharing File Clients 20 Transfer Signaling Client and Server Note: This QoS capability is only applicable to Skype for Business clients and IP phone devices which are registered directly to an internal Skype for Business / Lync pool Server on managed networks; QoS is not applicable for traffic routed over the Internet. Let us start with QoS configuration: 1. Enable QoS for all clients, which is disabled by default: Quality of Services (QoS) is not enabled by default on Skype for Business / Lync Server.

4 You can run Get-CsMediaConfiguration command from PowerShell and see if EnableQoS shows True or False. By default, it shows as False. To Enable QoS globally, run the below PowerShell command: Set-CsMediaConfiguration -EnableQoS $True In case you want to enable QoS per site wise then run the below command let Set-CsMediaConfiguration -Identity Site:<sitename> -EnableQoS $True 2. Configure the port ranges for Conferencing and peer-to-peer media traffic: For Quality of Service work correctly, you should configure identical port ranges for audio, video, file transfer and application sharing on your Conferencing, Application, and Mediation servers; furthermore, those port ranges must not overlap in any ways. E.g. if you use ports through for video on your Conferencing servers. That means that you must also reserve ports through for video on your application servers. If you do not, QoS will not work as expected. You must use Power Shell to configure Port ranges. You can verify the existing port ranges for your Conferencing, Application, and Mediation servers by running power shell commands. Get-CsService -ConferencingServer Select-Object Identity, AudioPortStart, AudioPortCount, VideoPortStart, VideoPortCount, AppSharingPortStart, AppSharingPortCount Get-CsService -ApplicationServer Select-Object Identity, AudioPortStart, AudioPortCount Get-CsService -MediationServer Select-Object Identity, AudioPortStart, AudioPortCount Note: Application server and Mediation server only support QoS for audio; you do not need to change video or application sharing ports in your Application servers or Mediation servers.

5 As you can see in the below commands, each port type audio, video, and application sharing is assigned two separate property values; the port start and the port count. The port start indicates the first port used for that modality; e.g. if the audio port start is equal to that means that the first port used for audio traffic is port If the audio port count is 8348 that means that 8348 ports are allocated for audio. If the first port is port and last ports (port ranges should be contiguous). Thus, the port range for audio would be ports through To make changes in all Pool Servers: Get-CsService -ConferencingServer ForEach-Object {Set-CsConferenceServer - Identity $_.identity -AppSharingPortStart "40803" -AppSharingPortCount "4348" - AudioPortStart "49152" -AudioPortCount "4348" -VideoPortStart "57501" - VideoPortCount "8034"} To modify Instant messaging SIP port in all Pool Server (optional): Get-CsService -ConferencingServer ForEach-Object {Set-CsConferenceServer - Identity $_.Identity -ImSipPort 5062} You can make changes to mediation and application server audio port ranges. To set on all Edge Server: With Edge servers, you do not have to configure separate port ranges for audio, video, and application sharing; likewise, the port ranges used for Edge servers do not have to match the port ranges used with your Conferencing, Application, and Mediation servers. Get-CsService -EdgeServer ForEach-Object {Set-CsEdgeServer -Identity $_.Identity -MediaCommunicationPortStart MediaCommunicationPortCount 10000} Configure client port ranges for peer-to-peer media: You can run below command to find existing media client ports: Get-CsConferencingConfiguration fl Client*

6 To make changes in client port ranges: Set-CsConferencingConfiguration -ClientMediaPortRangeEnabled $True - ClientAudioPort "50020" -ClientAudioPortRange "40" -ClientVideoPort "58000" - ClientVideoPortRange "20" -ClientAppSharingPort "42000" - ClientAppSharingPortRange "20" -ClientFileTransferPort "40783" - ClientFileTransferPortRange "20" 3. Now configure separate Group Policy Object for Client and Server: After defining port ranges you must also create Quality of Service policies that specify the DSCP code to be associated with each port range Simply, restricting a set of ports to a specific type of traffic does not result in packets traveling through those ports being marked with the appropriate DSCP code. In addition to defining port ranges you must also create Quality of Service policies that specify the DSCP code to be associated with each port range. This DSCP values association with port ranges can be achieve via GPO which has policy based QoS. If you already have all port ranges and DSCP value with communication type then processed below, if not then decide port ranges and follow the step two for configure port ranges. Microsoft outline complete steps a. You must have consolidated all your computer object to single OU (Organization Unit). E.g. Computer. b. Login to the Domain Controller or computer which have Group Policy Management installed.

7 c. Open Group Policy Management tool (run > gpmc.msc) and then right click the OU (Computer) and then click Create a GPO in this domain, and Link it here to create a new GPO. E.g. SfBLyncClient-QoS. You must have required permission (Domain Admin) or like create and link policy object. d. Select the newly created Group Policy Object and right click on it and select Edit to Open Group Policy Management Editor > expand Computer Configuration > expand Policies > expand Windows Settings > right click Policy-based QoS > then click Create new policy. e. In Policy-based QoS page > give policy name as "Lync2013-Audio" > Select Specify DSCP Value: "46" > click Next. Below screenshot shows Policy name and DSCP value information: (screenshot shows exiting policy)

8 f. On next page > Select "Only applications with this executable name: "lync.exe" > click Next. Note: This simply ensures that Lync.exe application will match packets from the specified port range with the specified DSCP code. Below screenshot shows Application name information: (screenshot shows exiting policy)

9 g. On next page, make sure that both Any source IP address and Any destination IP address are selected > then click Next. Note: These two settings ensure that packets will be managed regardless of which computer (IP address) sent those packets and which computer (IP address) will receive those packets. Below screenshot shows IP address configuration information: (screenshot shows exiting policy).

10 h. On next page select TCP and UDP > select From this source port or range. Note: TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) are the two networking protocols most-commonly used by Skype for Business/ Lync Server and its client applications. Also, typed port range reserved for audio transmissions. Below screenshot shows protocol and port range configuration information: (screenshot shows exiting policy).

11 i. Follow step e to h and create new policy object as Lync2013-Signaling, Lync2013-AppShare, Lync2013-File Transfer and Lync2013-Video with above ports ranges and DSCP values. j. After you configuring all policy object, it will look like below: k. Open Group Policy Management and then right click the OU (Server) and then click Create a GPO in this domain, and Link it here to create a new GPO. E.g. SfBLync-Server-QoS. You must add your Skype for Business / Lync Server to Server OU. Then repeat step d to I and create policy object for Server as well. After you configuring all policy object for server, it will look like below screen.

12 4. Finally test the QoS, as a best practice you must validate QoS configuration and DSCP tagging quarterly basis. How enable QoS for Skype for Business / Lync Phone devices? Basically, Skype for Business / Phone edition mainly support audio, hence you define DSCP values for Audio traffic. To enable QoS on Skype for Business /Lync Phone Edition device, you must edit the VoiceDiffServTag and Voice8021p settings on the device By default, VoiceDiffServTag is set to 40, and Voice8021p is set to 0. Lync/Skype Server Control Panel > Clients > Device Configuration. You enable QoS using PowerShell as well:

13 Open Skype for Business / Lync Management Shell > type below command: Set-CsUcPhoneConfiguration -VoiceDiffServTag <value> -Voice8021p <value> E.g. Set-CsUcPhoneConfiguration -VoiceDiffServTag 46 -Voice8021p 0 You will need to restart the device for the changes to take effect. Test1: a. First, we need test GPO policy correctly applied or not, after newly created GPO applied and linked to OU where Computer and Server object stored (separate OU). Before testing you can force the policy by running "gpupdate.exe /force" on testing computer and server which will refresh the policy. b. After policy refresh on client computer > Start > Run > cmd (open as administrator) > type Gpresult /h result.htm c. You will all policy result in result.htm file and find your QoS policy. Test2: a. Enable Skype for Business/ Lync client log > then sign-in to Skype for Business / Lync client > then open Skype/ Lync (UCCAPILOG) logs in Notepad or Snooper tool. See the qosenabled shows true and verify all client port numbers. Below are log file locations. Skype for Business 2015/Lync2013 client: %userprofile%\appdata\local\microsoft\office\15.0\lync\tr acing\ Skype for Business 2015 client: %userprofile%\appdata\local\microsoft\office\16.0\lync\tr acing\ Below screenshot shows correct client ports.

14 Test3: Make audio call with another internal user and capture network traffic to verify, if QoS tagging shows correctly of not. Verify two way packets and see DSCP value shows correctly. Below screenshot shows UDP traffic DSCP: FE (Expedited Forwarding (46), which is correct tagging. Test4: a. On Windows machine > open regedit > browse path HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\QoS

15 You will see all QoS polices applied to this machine: b. On FE Server, you don t have to define application name because this server all application related to Skype/ Lync. open regedit > browse path HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\QoS On Front End Server show like below:

16 Best practices: 1. Every quarterly audit QoS policies and sees tagging. 2. Check with WAN (Wide Area Network) provider (MPLS) for QoS plane. 3. You must validate QoS end-to-end because sometime incorrectly configured network devices (routers, wireless access points, switches) which might set or change DSCP markings to something you did not intend or strip DSCP markings to 0 (set to 0). Thank you.

Implement the Quality of Service (QoS) for Microsoft Teams V1. Overview:

Implement the Quality of Service (QoS) for Microsoft Teams V1. Overview: Implement the Quality of Service (QoS) for Microsoft Teams V1 Overview: As you know that Microsoft Teams is great product which has multiple features which help enterprise users to communicate and collaborate

More information

OR /2017-E. White Paper KARL STORZ OR1 FUSION IP. Unified Communication and Virtual Meeting Rooms WHITE PAPER

OR /2017-E. White Paper KARL STORZ OR1 FUSION IP. Unified Communication and Virtual Meeting Rooms WHITE PAPER OR1 32 1.0 11/2017-E White Paper KARL STORZ OR1 FUSION IP Unified Communication and Virtual Meeting Rooms WHITE PAPER Contents 1 Description KARL STORZ OR1 FUSION... 3 2 Microsoft Skype for Business (SfB)...

More information

Polycom Better Together over Ethernet Connector 3.9.0

Polycom Better Together over Ethernet Connector 3.9.0 RELEASE NOTES 3.9.0 December 2018 3725-69896-001A Polycom Better Together over Ethernet Connector 3.9.0 Applies to Polycom VVX 200 Series, 300 Series, 400 Series, 500 Series, and 600 Series Business Media

More information

Polycom Better Together over Ethernet Connector 3.8.0

Polycom Better Together over Ethernet Connector 3.8.0 RELEASE NOTES 3.8.0 June 2018 3725-69895-009A Polycom Better Together over Ethernet Connector 3.8.0 Applies to Polycom VVX 200 Series, 300 Series, 400 Series, 500 Series, and 600 Series Business Media

More information

Microsoft Exam Lync Network Readiness Assessment Version: 7.1 [ Total Questions: 95 ]

Microsoft Exam Lync Network Readiness Assessment Version: 7.1 [ Total Questions: 95 ] s@lm@n Microsoft Exam 74-335 Lync Network Readiness Assessment Version: 7.1 [ Total Questions: 95 ] Topic 1, Humongous Insurance Background Humongous Insurance currently employs 7,500 people and is based

More information

Microsoft Skype for Business (aka Lync ) Federation

Microsoft Skype for Business (aka Lync ) Federation Microsoft Skype for Business (aka Lync ) Federation Procedures for federating an Enterprise using Skype for Business (aka Lync ) with the PGi Virtual Meeting Room Service Note: For brevity the previous

More information

Step by Step process to activate guest access in Microsoft Teams.

Step by Step process to activate guest access in Microsoft Teams. Step by Step process to activate guest access in Microsoft Teams. External access with Microsoft Teams Microsoft Teams has started allowing guest access in organization to collaborate or communicate with

More information

Setup Skype for Business & Salesforce (beta) Integration guide

Setup Skype for Business & Salesforce (beta) Integration guide Setup Skype for Business & Salesforce (beta) Integration guide Overview: Skype for Business Online & Salesforce (Beta) integration enable new functionality for Salesforce users. This admin guide covers,

More information

Core Solutions of Skype for Business 2015

Core Solutions of Skype for Business 2015 Core Solutions of Skype for Business 2015 OD20334B; On-Demand, Video-based Course Description This course provides students with the knowledge and skills that are required to plan, deploy, configure, and

More information

[MS20334]: Core Solutions of Skype for Business 2015

[MS20334]: Core Solutions of Skype for Business 2015 [MS20334]: Core Solutions of Skype for Business 2015 Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Skype Delivery Method : Instructor-led (Classroom) Course Overview This course

More information

Lync Federation Guide

Lync Federation Guide Lync Federation Guide Table of contents ZOOM Supported Microsoft Lync Environment... 2 Federation Checklist... 2 Federation for Lync 2013... 3 Federation for Office365 Enterprise (E Plans)... 4 Federation

More information

Vendor: Microsoft. Exam Code: Exam Name: Network Readiness and Assessment for Lync. Version: Demo

Vendor: Microsoft. Exam Code: Exam Name: Network Readiness and Assessment for Lync. Version: Demo Vendor: Microsoft Exam Code: 74-335 Exam Name: Network Readiness and Assessment for Lync Version: Demo Testlet 1 Topic 1, Humongous Insurance Background Humongous Insurance currently employs 7,500 people

More information

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year!

ACCURATE STUDY GUIDES, HIGH PASSING RATE! Question & Answer. Dump Step. provides update free of charge in one year! DUMP STEP Question & Answer ACCURATE STUDY GUIDES, HIGH PASSING RATE! Dump Step provides update free of charge in one year! http://www.dumpstep.com Exam : 74-335 Title : Lync Network Readiness Assessment

More information

Glossary. Balu N Ilag 2018 B.N. Ilag, Introducing Microsoft Teams,

Glossary. Balu N Ilag 2018 B.N. Ilag, Introducing Microsoft Teams, Glossary AAD: Azure Active Directory AD: Active Directory ADAL: Azure Active Directory Authentication Library Candidate: Possible combination of IP address and port for media channel CDR: Call Detail Record

More information

Overview. Audience profile. At course completion. Module Title : 20334A:Core Solutions of Skype for Business Course Outline :: 20334A::

Overview. Audience profile. At course completion. Module Title : 20334A:Core Solutions of Skype for Business Course Outline :: 20334A:: Module Title : 20334A:Core Solutions of Skype for Business 2015 Duration : 5 days Overview This course teaches IT professionals how to plan, deploy, configure, and administer a Skype for Business 2015

More information

Quality of Service Setup Guide (NB14 Series)

Quality of Service Setup Guide (NB14 Series) Quality of Service Setup Guide (NB14 Series) About This Quality of Service (QoS) Guide Quality of Service refers to the reservation of bandwidth resources on the Nb14 Series router to provide different

More information

Core Solutions of Skype for Business 2015

Core Solutions of Skype for Business 2015 Course 20334B: Core Solutions of Skype for Business 2015 Page 1 of 8 Core Solutions of Skype for Business 2015 Course 20334B: 4 days; Instructor-Led Introduction This course teaches IT professionals how

More information

"Charting the Course... MOC B Core Solutions of Microsoft Skype for Business Course Summary

Charting the Course... MOC B Core Solutions of Microsoft Skype for Business Course Summary MOC 20334 B Core Solutions of Microsoft Skype for Description Course Summary This course provides students with the knowledge and skills required to plan, deploy, configure, and administer a Skype for

More information

Polycom Better Together over Ethernet Connector 3.7.0

Polycom Better Together over Ethernet Connector 3.7.0 RELEASE NOTES 3.7.0 December 2017 3725-69895-008A Polycom Better Together over Ethernet Connector 3.7.0 Applies to Polycom VVX 201, 300 Series, 400 Series, 500 Series, and 600 Series Business Media Phones

More information

Grandstream Networks, Inc. GWN7000 QoS - VoIP Traffic Management

Grandstream Networks, Inc. GWN7000 QoS - VoIP Traffic Management Grandstream Networks, Inc. GWN7000 QoS - VoIP Traffic Management Table of Contents INTRODUCTION... 4 DSCP CLASSIFICATION... 5 QUALITY OF SERVICE ON GWN7000... 6 USING QOS TO PRIORITIZE VOIP TRAFFIC...

More information

Core Solutions of Microsoft Skype for Business 2015

Core Solutions of Microsoft Skype for Business 2015 Course 20334: Core Solutions of Microsoft Skype for Business 2015 Course Outline Module 1: Installing and Implementing Skype for Business Server 2015 This module helps you to identify the external dependencies

More information

BLM6196 COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS

BLM6196 COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS BLM6196 COMPUTER NETWORKS AND COMMUNICATION PROTOCOLS Prof. Dr. Hasan Hüseyin BALIK (2 nd Week) 2. Protocol Architecture, TCP/IP, and Internet-Based Applications 2.Outline The Need for a Protocol Architecture

More information

AT&T SD-WAN Network Based service quick start guide

AT&T SD-WAN Network Based service quick start guide AT&T SD-WAN Network Based service quick start guide After you order your AT&T SD-WAN Network Based service, you can: Create administrator accounts Log in to the SD-WAN orchestrator Configure business policy

More information

Enterprise Voice & Online Services with Microsoft Lync Server 2013

Enterprise Voice & Online Services with Microsoft Lync Server 2013 Enterprise Voice & Online Services with Microsoft Lync Server 2013 Number: 70-337 Passing Score: 700 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 Your network contains

More information

Router Router Microprocessor controlled traffic direction home router DSL modem Computer Enterprise routers Core routers

Router Router Microprocessor controlled traffic direction home router DSL modem Computer Enterprise routers Core routers Router Router is a Microprocessor controlled device that forwards data packets across the computer network. It is used to connect two or more data lines from different net works. The function of the router

More information

Course 20334B:Core Solutions of Skype for Business 2015

Course 20334B:Core Solutions of Skype for Business 2015 Course 20334B:Core Solutions of Skype for Business 2015 About this course This course provides students with the knowledge and skills that are required to plan, deploy, configure, and administer a Skype

More information

Deploying Voice Workloads for Skype for Business Online and Server 2015

Deploying Voice Workloads for Skype for Business Online and Server 2015 Deploying Voice Workloads for Skype for Business Online and Server 2015 40409; 5 Days, Instructor-led Course Description This five-day instructor-led course teaches how to design, plan, and deploy the

More information

20334A: Core Solutions of Microsoft Skype for Business 2015

20334A: Core Solutions of Microsoft Skype for Business 2015 20334A: Core Solutions of Microsoft Skype for Business Course Details Course Code: Duration: Notes: 20334A 5 days This course syllabus should be used to determine whether the course is appropriate for

More information

Microsoft Core Solutions of Microsoft Skype for Business 2015

Microsoft Core Solutions of Microsoft Skype for Business 2015 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20334 - Core Solutions of Microsoft Skype for Business 2015 Length 5 days Price $4290.00 (inc GST) Version B Overview This course provides students with

More information

Deploying Voice Workloads for Skype for Business Online and Server 2015

Deploying Voice Workloads for Skype for Business Online and Server 2015 Deploying Voice Workloads for Skype for Business Online and Server 2015 Duration: 5 Days Course Code: M40409 Version: A Delivery Method: Virtual and Classroom Overview: This five-day instructor-led course

More information

Deploying Voice Workloads for Skype for Business Online and Server

Deploying Voice Workloads for Skype for Business Online and Server Course Code: M40409 Vendor: Microsoft Course Overview Duration: 5 RRP: POA Deploying Voice Workloads for Skype for Business Online and Server Overview This five-day instructor-led course teaches how to

More information

Pleasant work. Hareli Dudaei. Microsoft Architect

Pleasant work. Hareli Dudaei. Microsoft Architect Pleasant work Hareli Dudaei Microsoft Architect 1 Table of Contents Preliminary knowledge:... 3 Connection... 3 Lync topology Builder... 4 The control panel... 7 users... 8 Enable or Disable Users for

More information

ETSF10 Internet Protocols Transport Layer Protocols

ETSF10 Internet Protocols Transport Layer Protocols ETSF10 Internet Protocols Transport Layer Protocols 2012, Part 2, Lecture 2.2 Kaan Bür, Jens Andersson Transport Layer Protocols Special Topic: Quality of Service (QoS) [ed.4 ch.24.1+5-6] [ed.5 ch.30.1-2]

More information

Implementing, Configuring and Managing Cisco Meeting Server (ICMCMS-CT)

Implementing, Configuring and Managing Cisco Meeting Server (ICMCMS-CT) 6210 Central Ave, Portage, IN. 46368 Phone: 219.764.3800 Fax: 219.764.3805 Web: http://www.ctclc.com Implementing, Configuring and Managing Cisco Meeting Server (ICMCMS-CT) In this course, students will

More information

Course Description. Audience. Prerequisites. At Course Completion

Course Description. Audience. Prerequisites. At Course Completion Module Title : Course 20336A: Core Solutions of Microsoft Lync Server 2013 Duration : 5 days Course Description This instructor-led course teaches IT professionals how to plan, design, deploy, configure,

More information

Integra Hosted Voice Service PC Communicator Desktop Enterprise Administrator Guide

Integra Hosted Voice Service PC Communicator Desktop Enterprise Administrator Guide PC Communicator Desktop Enterprise Administrator Guide 19 Feb 2014 i Enterprise Administrator Guide 21 Feb 20134 Contents 1 Introduction... 1-1 2 Integra PC Communicator Desktop Features... 1-1 2.1 The

More information

Recommended Network Configurations

Recommended Network Configurations Recommended Network Configurations The following configurations are the supported types of connections from the customer s site to Mitel s hosted data center. It is important that the WAN connectivity

More information

Quality of Service II

Quality of Service II Quality of Service II Patrick J. Stockreisser p.j.stockreisser@cs.cardiff.ac.uk Lecture Outline Common QoS Approaches Best Effort Integrated Services Differentiated Services Integrated Services Integrated

More information

Module 5. Conferencing in Lync Server MVA Jump Start

Module 5. Conferencing in Lync Server MVA Jump Start Module 5 Conferencing in Lync Server 2013 MVA Jump Start Module Overview Introduction to Conferencing in Lync Server 2013 Designing for Audio/Video and Web Conferencing Dial-In Conferencing in Lync Server

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : 070-337 Title : Enterprise Voice & Online Services

More information

Quick Start Guide: Software

Quick Start Guide: Software Quick Start Guide: Software claryicon.com +1 858.552.0290 United States Pakistan Colombia Mexico Dubai 1 Contents 1. Login...3 2. Help...4 3. Hamburger Menu...4 3.1 Apps...5 3.2 Settings...6 3.3 Help...7

More information

Networking Fundamentals. An Introduction to Networks. tel: +44 (0) fax: +44 (0) web:

Networking Fundamentals. An Introduction to Networks. tel: +44 (0) fax: +44 (0) web: Networking Fundamentals An Introduction to Networks Official UK distribution partner tel: +44 (0)1457 874 999 fax: +44 (0)1457 829 201 email: sales@cop-eu.com web: www.cop-eu.com Course Content The following

More information

Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1) 1.0

Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1) 1.0 Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1) 1.0 COURSE OVERVIEW: Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1) v1.0 is a five-day course that prepares the learner for implementing

More information

Jamvee Unified Communications

Jamvee Unified Communications Jamvee Unified Communications Enterprise Firewall/ Proxy Server Guidelines Jamvee Unified Communications Enterprise Firewall/Proxy Server Guidelines This guide provides information required to provision

More information

TS: Microsoft Lync Server 2010, Configuring

TS: Microsoft Lync Server 2010, Configuring Microsoft 70-664 TS: Microsoft Lync Server 2010, Configuring Version: 32.0 QUESTION NO: 1 Microsoft 70-664 Exam You configure Call Admission Control. You need to enable Call Admission Control. Which cmdlet

More information

Network Configuration Guide

Network Configuration Guide Cloud VoIP Network Configuration PURPOSE This document outlines the recommended VoIP configuration settings for customer provided Firewalls and internet bandwidth requirements to support Mitel phones.

More information

Performing Path Traces

Performing Path Traces About Path Trace, page 1 Performing a Path Trace, page 13 Collecting QoS and Interface Statistics in a Path Trace, page 15 About Path Trace With Path Trace, the controller reviews and collects network

More information

Yealink VCS Network Deployment Solution

Yealink VCS Network Deployment Solution Yealink VCS Network Deployment Solution Oct. 2015 V10.6 Yealink Network Deployment Solution Table of Contents Table of Contents... iii Network Requirements... 1 Bandwidth Requirements... 1 Calculating

More information

Click About to Korneel edit Master title style. Sr Customer Engineering Architect Korneel Bullens Microsoft

Click About to Korneel edit Master title style. Sr Customer Engineering Architect Korneel Bullens Microsoft Click About to Korneel edit Master title style Sr Customer Engineering Architect Korneel Bullens Microsoft Agenda Click Training to edit NoteMaster title style Network Readiness Walkthrough Shows you how

More information

"Charting the Course... MOC A Deploying Voice Workloads for Skype for Business Online and Server Course Summary

Charting the Course... MOC A Deploying Voice Workloads for Skype for Business Online and Server Course Summary Description Course Summary This five-day instructor-led course teaches how to design, plan, and deploy the various voice solutions available with Skype for Business Online and Skype for Business Server

More information

20337-Enterprise Voice and Online Services with Microsoft Lync Server 2013

20337-Enterprise Voice and Online Services with Microsoft Lync Server 2013 Course Outline 20337-Enterprise Voice and Online Services with Microsoft Lync Server 2013 Duration: 5 day (30 hours) Target Audience: This course is intended for IT Consultants and Telecommunications Consulting

More information

"Charting the Course to Your Success!" MOC B Core Solutions of Microsoft Lync Server 2013 Course Summary

Charting the Course to Your Success! MOC B Core Solutions of Microsoft Lync Server 2013 Course Summary MOC 20336 B Core Solutions of Microsoft Lync Course Summary Description This instructor-led course teaches IT professionals how to plan, design, deploy, configure, and administer a Microsoft Lync solution.

More information

Transport protocols Introduction

Transport protocols Introduction Transport protocols 12.1 Introduction All protocol suites have one or more transport protocols to mask the corresponding application protocols from the service provided by the different types of network

More information

Real-Time Protocol (RTP)

Real-Time Protocol (RTP) Real-Time Protocol (RTP) Provides standard packet format for real-time application Typically runs over UDP Specifies header fields below Payload Type: 7 bits, providing 128 possible different types of

More information

Microsoft Lync 2013 Depth Support Engineer

Microsoft Lync 2013 Depth Support Engineer Microsoft Lync 2013 Depth Support Engineer 55070; 5 days, Instructor-led Course Description This five-day instructor-led class takes support engineers beyond design and deployment to troubleshooting. Microsoft

More information

Course Outline: Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1)

Course Outline: Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1) Course Outline: Implementing Cisco IP Telephony & Video, Part 1 (CIPTV1) Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs : CIPTV1 v1.0 gives the learner all the tools they

More information

Deploying Voice Workloads for Skype for Business Online and Server 2015

Deploying Voice Workloads for Skype for Business Online and Server 2015 Deploying Voice Workloads for Skype for Business Online and Server 2015 Duration: 5 Days Course Code: M40409 Version: A Overview: This five-day instructor-led course teaches how to design, plan, and deploy

More information

Quality of Service. Traffic Descriptor Traffic Profiles. Figure 24.1 Traffic descriptors. Figure Three traffic profiles

Quality of Service. Traffic Descriptor Traffic Profiles. Figure 24.1 Traffic descriptors. Figure Three traffic profiles 24-1 DATA TRAFFIC Chapter 24 Congestion Control and Quality of Service The main focus of control and quality of service is data traffic. In control we try to avoid traffic. In quality of service, we try

More information

Keep Calm and Call On! IBM Sametime Communicate Softphone Made Simple. Frank Altenburg, IBM

Keep Calm and Call On! IBM Sametime Communicate Softphone Made Simple. Frank Altenburg, IBM Keep Calm and Call On! IBM Sametime Communicate Softphone Made Simple Frank Altenburg, IBM Agenda Voice and Video an effective way to do business! Sametime Softphone Computer is your phone! Sametime Voice

More information

40409A: Deploying Voice Workloads for Skype for Business Online and Server 2015

40409A: Deploying Voice Workloads for Skype for Business Online and Server 2015 40409A: Deploying Voice Workloads for Skype for Business Online and Server 2015 Course Details Course Code: Duration: Notes: 40409A 5 days This course syllabus should be used to determine whether the course

More information

UIP1869V User Interface Guide

UIP1869V User Interface Guide UIP1869V User Interface Guide (Firmware version 0.1.8 and later) Table of Contents Opening the UIP1869V's Configuration Utility... 3 Connecting to Your Broadband Modem... 5 Setting up with DHCP... 5 Updating

More information

Modelling direct application to network bandwidth provisioning for high demanding research applications

Modelling direct application to network bandwidth provisioning for high demanding research applications Modelling direct application to network bandwidth provisioning for high demanding research applications H. Wessing, Y. Yan and M. Berger Research Center COM Technical University of Denmark Bldg. 345V,

More information

Planning, Deploying, and Monitoring Mobility Microsoft Lync Server 2010

Planning, Deploying, and Monitoring Mobility Microsoft Lync Server 2010 Microsoft Lync Server 2010 Published: March 2012 This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 Course 20336B: Core Solutions of Microsoft Lync Server 2013 Page 1 of 8 Core Solutions of Microsoft Lync Server 2013 Course 20336B: 4 days; Instructor-Led Introduction This instructor-led course teaches

More information

Deploy Avi Vantage with Microsoft Lync 2013

Deploy Avi Vantage with Microsoft Lync 2013 Page 1 of 5 Deploy Avi Vantage with Microsoft Lync 2013 view online Deploy Avi Vantage with Microsoft Lync 2013 Microsoft Lync 2013 is a unified munications platform for the enterprise. Lync provides instant

More information

Quality of Service. Options. Options, page 1

Quality of Service. Options. Options, page 1 Options, page 1 Supported Codecs, page 2 Define a Port Range on the SIP Profile, page 3 Define a Port Range in Jabber-config.xml, page 3 Set DSCP Values, page 3 Options Use the following options to configure

More information

Course 55070A: Microsoft Lync 2013 Depth Support Engineer

Course 55070A: Microsoft Lync 2013 Depth Support Engineer Sales 406/256-5700 Support 406/252-4959 Fax 406/256-0201 Evergreen Center North 1501 14 th St West, Suite 201 Billings, MT 59102 Course 55070A: Microsoft Lync 2013 Depth Support Engineer Course Specifications

More information

How to open ports in the DSL router firmware version 2.xx and above

How to open ports in the DSL router firmware version 2.xx and above How to open ports in the DSL router firmware version 2.xx and above This example shows how to open port 3389 (which is used by Remote Desktop service) in the DSL router running firmware version 2.xx or

More information

Configure Flexible DSCP Marking and Video Promotion

Configure Flexible DSCP Marking and Video Promotion Configure Flexible DSCP Marking and Video Promotion Flexible DSCP Marking and Video Promotion Overview, page 1 Custom QoS Settings for Users, page 2 Traffic Class Label, page 3 DSCP Settings Configuration

More information

Enterprise Voice and Online Services with Microsoft Lync Server 2013

Enterprise Voice and Online Services with Microsoft Lync Server 2013 Enterprise Voice and Online Services with Microsoft Lync Server 2013 Course # Exam: Prerequisites Technology: Delivery Method: Length: 20337 70-337 20336 Microsoft Lync Server Instructor-led (classroom)

More information

Port Forwarding Setup (NB7)

Port Forwarding Setup (NB7) Port Forwarding Setup (NB7) Port Forwarding Port forwarding enables programs or devices running on your LAN to communicate with the internet as if they were directly connected. This is most commonly used

More information

IP & DCN Planning for Microwave Networks

IP & DCN Planning for Microwave Networks IP & DCN Planning for Microwave Networks 2016 IP & DCN Planning for Microwave Networks To equip trainees with in-depth understandings and practical knowledge of IP / MPLS & DCN Planning and its Implementation

More information

Exam Name: Microsoft Enterprise Voice & Online Services with Microsoft Lync Server 2013

Exam Name: Microsoft Enterprise Voice & Online Services with Microsoft Lync Server 2013 Vendor: Microsoft Exam Code: 70-337 Exam Name: Microsoft Enterprise Voice & Online Services with Microsoft Lync Server 2013 Version: DEMO Case Study 1 - Litware, Inc (Question 58 - Question 67) Case Study

More information

Peer to Peer Infrastructure : QoS enabled traffic prioritization. Mary Barnes Bill McCormick

Peer to Peer Infrastructure : QoS enabled traffic prioritization. Mary Barnes Bill McCormick Peer to Peer Infrastructure : QoS enabled traffic prioritization Mary Barnes (mary.barnes@nortel.com) Bill McCormick (billmcc@nortel.com) p2pi - QoS 1/24/09 1 Overview!! Discuss the mechanisms and implications

More information

CSCI Computer Networks

CSCI Computer Networks CSCI-1680 - Computer Networks Chen Avin (avin) Based partly on lecture notes by David Mazières, Phil Levis, John Jannotti, Peterson & Davie, Rodrigo Fonseca Administrivia Sign and hand in Collaboration

More information

AVANTUS TRAINING PTE PTE LTD LTD

AVANTUS TRAINING PTE PTE LTD LTD [MS20337]: Enterprise Voice and Online Services with Microsoft Lync Server 2013 Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Microsoft Lync Server Delivery Method : Instructor-led

More information

Modular Policy Framework. Class Maps SECTION 4. Advanced Configuration

Modular Policy Framework. Class Maps SECTION 4. Advanced Configuration [ 59 ] Section 4: We have now covered the basic configuration and delved into AAA services on the ASA. In this section, we cover some of the more advanced features of the ASA that break it away from a

More information

Need For Protocol Architecture

Need For Protocol Architecture Chapter 2 CS420/520 Axel Krings Page 1 Need For Protocol Architecture E.g. File transfer Source must activate communications path or inform network of destination Source must check destination is prepared

More information

Need For Protocol Architecture

Need For Protocol Architecture Chapter 2 CS420/520 Axel Krings Page 1 Need For Protocol Architecture E.g. File transfer Source must activate communications path or inform network of destination Source must check destination is prepared

More information

Creating an IP Access List to Filter IP Options, TCP Flags, or Noncontiguous Ports

Creating an IP Access List to Filter IP Options, TCP Flags, or Noncontiguous Ports Creating an IP Access List to Filter IP Options, TCP Flags, or Noncontiguous Ports First Published: August 18, 2006 Last Updated: July 31, 2009 This module describes how to use an IP access list to filter

More information

Deploying, Configuring, and Administering Microsoft Lync Server 2010 (MS 10533A)

Deploying, Configuring, and Administering Microsoft Lync Server 2010 (MS 10533A) Duration 5 Days Description This five day instructor led course teaches IT professionals how to deploy, configure, and administer a Microsoft Lync Server 2010 solution. The course emphasizes Lync Server

More information

Course 20337B: Enterprise Voice and Online Services with Microsoft Lync Server 2013 Exam Code: Duration:40 Hrs

Course 20337B: Enterprise Voice and Online Services with Microsoft Lync Server 2013 Exam Code: Duration:40 Hrs Course 20337B: Enterprise Voice and Online Services with Microsoft Lync Server 2013 Exam Code: 70-337 Duration:40 Hrs Course Outline Module 1: Voice Architecture This module introduce Enterprise Voice

More information

Course CLD221x: Enabling Office 365 Clients

Course CLD221x: Enabling Office 365 Clients Course CLD221x: Enabling Office 365 Clients Student Lab Manual Lab Design There are five exercises in this lab, each of which contains one or more tasks. For a successful outcome to the lab, the exercises

More information

SDN Controller Test. Network Emulator. Version 1.4. User Guide. Part Number: T / UG PKTBLASTER-SDN-CTR-EMU /1.1

SDN Controller Test. Network Emulator. Version 1.4. User Guide. Part Number: T / UG PKTBLASTER-SDN-CTR-EMU /1.1 SDN Controller Test Network Emulator Version 1.4 User Guide Part Number: T / UG PKTBLASTER-SDN-CTR-EMU-1.4 1115/1.1 Copyright Veryx Technologies Pvt. Ltd. All rights reserved. Veryx and PktBlaster are

More information

Towards Service Differentiation on the Internet

Towards Service Differentiation on the Internet Towards Service Differentiation on the Internet from New Internet and Networking Technologies and Their Application on Computational Sciences, invited talk given at Ho Chi Minh City, Vietnam March 3-5,

More information

Product Overview. Benefits CHAPTER

Product Overview. Benefits CHAPTER CHAPTER 1 Revised July 3, 2012 The Cisco TelePresence Exchange System is an integrated video service-creation platform that enables service providers and strategic partners to offer secure cloud-based

More information

Creating an IP Access List to Filter IP Options, TCP Flags, Noncontiguous Ports

Creating an IP Access List to Filter IP Options, TCP Flags, Noncontiguous Ports Creating an IP Access List to Filter IP Options, TCP Flags, Noncontiguous Ports This module describes how to use an IP access list to filter IP packets that contain certain IP Options, TCP flags, noncontiguous

More information

Preparing your Network for SIP over TCP and Secure Voice. Technical Whitepaper for IT Administrators

Preparing your Network for SIP over TCP and Secure Voice. Technical Whitepaper for IT Administrators Preparing your Network for SIP over TCP and Secure Voice Technical Whitepaper for IT Administrators February 7 th, 2015 Overview RingCentral Office@Hand from AT&T has recently implemented a number of server

More information

Lecture 21. Reminders: Homework 6 due today, Programming Project 4 due on Thursday Questions? Current event: BGP router glitch on Nov.

Lecture 21. Reminders: Homework 6 due today, Programming Project 4 due on Thursday Questions? Current event: BGP router glitch on Nov. Lecture 21 Reminders: Homework 6 due today, Programming Project 4 due on Thursday Questions? Current event: BGP router glitch on Nov. 7 http://money.cnn.com/2011/11/07/technology/juniper_internet_outage/

More information

In the following chapter two most common WAFS architectures are presented and the most common and simple set of used techniques is shown.

In the following chapter two most common WAFS architectures are presented and the most common and simple set of used techniques is shown. Structure: 1. Motivation a. Preview With appearing and developing of the Internet, spreading over the world for many enterprises became possible. Enterprises have a possibility to open branch offices that

More information

Module 2a. Part 1 Deploying Microsoft Lync Server 2010

Module 2a. Part 1 Deploying Microsoft Lync Server 2010 Module 2a Part 1 Deploying Microsoft Lync Server 2010 Deploying Lync Server 2010 Jump Start Day 1: Deploy & Configure Module 1: Features & Architecture Module 2a: Deploying Lync Server 2010 Part 1 Module

More information

Installing and Configuring Windows Server 2012

Installing and Configuring Windows Server 2012 Installing and Configuring Windows Server 2012 Course # Exam: Prerequisites Technology: Delivery Method: Length: 20697-1 70-697 Windows Instructor-led (classroom) 5 Days Overview About this Course This

More information

MS Lync Deployment Guide

MS Lync Deployment Guide Deployment Guide UPDATED: 11 January 2018 Copyright Notices Copyright 2002-2018 KEMP Technologies, Inc. All rights reserved. KEMP Technologies and the KEMP Technologies logo are registered trademarks of

More information

If your router or firewall is SIP-aware or SIP ALG-enabled, you must turn it off (so the device doesn t interfere with any signalling).

If your router or firewall is SIP-aware or SIP ALG-enabled, you must turn it off (so the device doesn t interfere with any signalling). BT Cloud Voice Firewalls and LAN You need to make sure that your BT Cloud Voice service connects to the access network across your internal data network so you can make and receive consistently high quality

More information

Multimedia Networking

Multimedia Networking Multimedia Networking 1 Multimedia, Quality of Service (QoS): What is it? Multimedia applications: Network audio and video ( continuous media ) QoS Network provides application with level of performance

More information

Lecture 14: Performance Architecture

Lecture 14: Performance Architecture Lecture 14: Performance Architecture Prof. Shervin Shirmohammadi SITE, University of Ottawa Prof. Shervin Shirmohammadi CEG 4185 14-1 Background Performance: levels for capacity, delay, and RMA. Performance

More information

Cisco Unified MeetingPlace Integration

Cisco Unified MeetingPlace Integration CHAPTER 14 This chapter covers system-level design and implementation of Cisco Unified MeetingPlace 5.4 in a Cisco Unified Communications Manager 5.x environment. The following aspects of design and configuration

More information

CS 3516: Advanced Computer Networks

CS 3516: Advanced Computer Networks Welcome to CS 3516: Advanced Computer Networks Prof. Yanhua Li Time: 9:00am 9:50am, T, R, and F Location: Fuller 320 Fall 2017 A-term 1 Some slides are originally from the course materials of the textbook

More information

How to Create an IP Access List to Filter IP Options TCP Flags Noncontiguous Ports or TTL Values,

How to Create an IP Access List to Filter IP Options TCP Flags Noncontiguous Ports or TTL Values, Creating an IP Access List to Filter IP Options TCP Flags Noncontiguous Ports or TTL Values This module describes how to use an IP access list to filter IP packets that contain certain IP Options, TCP

More information

Lecture 13. Quality of Service II CM0256

Lecture 13. Quality of Service II CM0256 Lecture 13 Quality of Service II CM0256 Types of QoS Best Effort Services Integrated Services -- resource reservation network resources are assigned according to the application QoS request and subject

More information