Lync – Response Group Voice Policy

I recently deployed an SBA at a branch office and configured an RGS for the Reception. If the receptionist does not answer within a certain time period then the call is forwarded to an external party.

When calling the reception response group, after the queue timeout period the call would be forwarded to the external party (simple!).

I came across a problem where my the RGS is hosted on a Lync Front End server in the UK data centre (as SBA does not support RGS). The Front End server has a site Voice Policy configured to route all PSTN calls via the UK gateway. The problem was when the queue timed out, my RGS would forward the call out of a central gateway in the UK rather than the gateway built in to the SBA (in the Netherlands). To resolve this issue I had to assign a User Voice Policy to the Response Group that had the correct PSTN usage, route and trunk to the gateway.

Note: I already had site and user voice policies configured for my SBA and Gateway (I use http://lyncoptimizer.com/). This tool creates all site voice policies, user voice policies, normalization rules, routes etc. It’s really useful!

First step is to use the GetCSApplicationEndPoint command to get the Response Group:

Get-CsApplicationEndpoint -Filter {DisplayName -Like "NL Office Reception*"}

Identity : CN={42b43972-7e20-4720-b5d9-7020d061ef69},CN=Application Contacts,CN=RTC Service,CN=Services,CN=Configuration,DC=domain,DC=local
RegistrarPool : lyncfe.domain.local
HomeServer : CN=Lc Services,CN=Microsoft,CN=7:1,CN=Pools,CN=RTC Service,CN=Services,CN=Configuration,DC=domain,DC=local
OwnerUrn : urn:application:RGS
SipAddress : sip:[email protected]
DisplayName : NL Office Reception
DisplayNumber : +31101234567
LineURI : tel:+31101234567
PrimaryLanguage : 0
SecondaryLanguages : {}
EnterpriseVoiceEnabled : True
ExUmEnabled : False
Enabled : True

 

Once you have confirmed that this is the right Response Group, assign a voice policy by piping Get-CSApplicationEndpoint in to Grant-CSVoicePolicy.

Get-CsApplicationEndpoint -Filter {DisplayName -Like "NL Office Reception*"} | Grant-CsVoicePolicy -PolicyName "NL-Rotterdam-10-Office-International"

That’s it, now when the Response Group forwards a call out to PSTN it will route via the correct PSTN gateway.

To remove the voice policy you can run the following:

Get-CsApplicationEndpoint -Filter {DisplayName -Like "NL Office Reception*"} | Grant-CsVoicePolicy -PolicyName $null

 

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.