Topic Last Modified: 2012-10-10

To provide your Lync Server 2013 users with voice mail capabilities on hosted Exchange Unified Messaging (UM), you must perform the following configuration tasks on the Edge Server:

For details, see the Lync Server Management Shell documentation for the following cmdlets:

Important:
You must create an external DNS SRV record for the hosting Exchange service before you perform these steps. For details, see Create a DNS SRV Record for Integration with Hosted Exchange UM.

To configure the Edge Server for federation

  1. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2013, and then click Lync Server Management Shell.

  2. Run the Set-CsAccessEdgeConfiguration cmdlet to configure the server for federation. For example, run:

    Copy Code
    Set-CsAccessEdgeConfiguration -UseDnsSrvRouting -AllowFederatedUsers 1 -EnablePartnerDiscovery 0
    

    The preceding example sets the following parameters:

    • UseDnsSrvRouting specifies that Edge Servers will rely on DNS SRV records when sending and receiving federation requests.

    • AllowFederatedUsers specifies whether internal users are allowed to communicate with users from federated domains. This property also determines whether internal users can communicate with users in a split domain scenario.

    • EnablePartnerDiscovery specifies whether Lync Server will use DNS records to try to discover partner domains not listed in the Active Directory allowed domains list. If False, Lync Server 2013 will only federate with domains found on the allowed domains list. This parameter is required if you use DNS service routing. In most deployments, the value is set to false to avoid opening up federation to all partners.

To replicate data to the Edge Server and verify the replication

To create a hosting provider on the Edge Server

  1. Start the Lync Server Management Shell: Click Start, click All Programs, click Microsoft Lync Server 2013, and then click Lync Server Management Shell.

  2. Run the New-CsHostingProvider cmdlet to configure the hosting provider. For example, run:

    Copy Code
    New-CsHostingProvider -Identity Fabrikam.com -Enabled $True -EnabledSharedAddressSpace $True -HostsOCSUsers $False -ProxyFQDN "proxyserver.fabrikam.com" -IsLocal $False -VerificationLevel UseSourceVerification
    

    The preceding example sets the following parameters:

    • Identity specifies a unique string value identifier for the hosting provider you are creating, in this example, Fabrikam.com. Note that the command will fail if an existing provider has already been configured with that Identity.

    • Enabled indicates whether the network connection between your domain and the hosting provider is enabled. Messages cannot be exchanged between the two organizations until this value is set to True.

    • EnabledSharedAddressSpace indicates whether the hosting provider is being used in a shared SIP address space (split domain) scenario.

    • HostsOCSUsers indicates whether the hosting provider is used to host Lync Server 2013 accounts. If False, the provider hosts other account types, such as Microsoft Exchange accounts.

    • ProxyFQDN specifies the fully qualified domain name (FQDN) for the proxy server used by the hosting provider, in this example, proxyserver.fabrikam.com. This value cannot be modified. If the hosting provider changes its proxy server you will need to delete and then recreate the entry for that provider.

    • IsLocal indicates whether the proxy server used by the hosting provider is contained within your Lync Server 2013 topology.

    • VerficationLevel indicates the allowed verification level for messages sent to and from the hosted provider. Specify UseSourceVerification, which relies on the verification level included in messages sent from the hosting provider. If this level is not specified, then the message will be rejected as being unverifiable.

See Also