Applies to: Exchange Server 2013

Topic Last Modified: 2013-03-01

You can add Client Access and Mailbox servers to only SIP URI dial plans. All Client Access and Mailbox servers can’t be associated with Telephone Extension or E.164 dial plans, but will answer all incoming calls. However, when you are deploying Microsoft Lync Server, to enable outbound calling to work correctly, you must manually add all Client Access and Mailbox servers to all SIP URI dial plans that you have created for Lync Server.

For additional management tasks related to UM dial plans, see UM Dial Plan Procedures.

What do you need to know before you begin?

  • Estimated time to complete: Less than 1 minute.

  • You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "UM dial plans" entry in the Unified Messaging Permissions topic.

  • Before you perform these procedures, confirm that a SIP URI dial plan has been created. For detailed steps, see Create a UM Dial Plan.

  • For information about keyboard shortcuts that may apply to the procedures in this topic, see Keyboard Shortcuts in the Exchange Admin Center.

Tip:
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection.

What do you want to do?

Use the EAC to add a Mailbox server to a SIP URI dial plan

  1. In the EAC, navigate to Servers > Servers.

  2. In the list view, select the Exchange server you want to modify, and then click Edit Edit Icon.

  3. On the Exchange Server page, click Unified Messaging.

  4. Under UM Service settings > Associated dial plans, click Add Add Icon.

  5. In the Select a UM Dial Plan window, select the SIP URI dial plan, click Add, click OK, and then click Save.

Use the Shell to add a Mailbox server to a SIP URI dial plan

This example adds the Mailbox server named MyMailboxServer to a SIP URI dial plan named MySIPDialPlan and prevents it from accepting new calls. It also sets the startup mode to Dual mode, which enables the Mailbox server to accept TCP and TLS requests.

Copy Code
Set-UMService -Identity MyMailboxServer -DialPlans MySIPDialPlan -Status Disabled -UMStartupMode Dual

This example adds the Mailbox server named MyMailboxServer to two SIP dial plans, named MySIPDialPlan and MySIPDialPlan2, and sets the following:

  • Allows both IPv4 and IPv6 addresses.

  • The maximum number of incoming calls.

  • Configures the SIP Access Service for Lync Server.

Copy Code
Set-UMService -Identity MyMailboxServer -DialPlans MySIPDialPlan, MySIPDialPlan2 -IPAddressFamily Any -MaxCallsAllowed 50 -SipAccessService northamerica.lyncpoolna.contoso.com

Use the EAC to add a Client Access server to a SIP URI dial plan

  1. In the EAC, navigate to Servers > Servers.

  2. In the list view, select the Exchange server you want to modify, and then click Edit Edit Icon.

  3. On the Exchange Server page, click Unified Messaging.

  4. Under UM Call Router settings > Associated dial plans, click Add Add Icon.

  5. In the Select a UM Dial Plan window, select the SIP URI dial plan, click Add, click OK, and then click Save.

Use the Shell to add a Client Access server to a SIP URI dial plan

This example adds the Client Access server named MyClientAccessServer to a SIP URI dial plan named MySIPDialPlan. It also sets the startup mode to Dual mode, which enables the Client Access server to accept TCP and TLS requests.

Copy Code
Set-UMCallRouterSettings -DialPlans MySIPDialPlan -Server MyClientAccessServer -UMStartupMode Dual

This example adds the Client Access server named MyClientAccessServer to two SIP dial plans, named MySIPDialPlan and MySIPDialPlan2, and allows the server to use both IPv4 and IPv6 addresses.

Copy Code
Set-UMCallRouterSettings -DialPlans MySIPDialPlan, MySIPDialPlan2 -IPAddressFamily Any -Server MyClientAccessServer