MS-721 · Question #126
You have a Microsoft Teams Phone deployment. The 613 7010 5XXX phone number range is allocated to the Session Border Controller (SBC). A user named User1 is configured as shown in the following exhibi
The correct answer is C. Set-CsUser [email protected] -OnPremLineURI "tel:+61370105555" D. Set-CsUser [email protected] -EnterpriseVoiceEnabled $false. To resolve inbound call failures and missing outbound caller ID for a Teams Direct Routing user, the OnPremLineURI must be set, and EnterpriseVoiceEnabled must be correctly configured to ensure cloud-only voice routing.
Question
Options
- AGrant-CsOnlineVoiceRoutingPolicy -Identity [email protected] -PolicyName $null
- BSet-CsOnlineVoiceUser [email protected] -TelephoneNumber $null
- CSet-CsUser [email protected] -OnPremLineURI "tel:+61370105555"
- DSet-CsUser [email protected] -EnterpriseVoiceEnabled $false
- ESet-CsOnlineVoiceUser [email protected] -TelephoneNumber "+61370105555"
How the community answered
(49 responses)- A6% (3)
- B4% (2)
- C71% (35)
- E18% (9)
Why each option
To resolve inbound call failures and missing outbound caller ID for a Teams Direct Routing user, the OnPremLineURI must be set, and EnterpriseVoiceEnabled must be correctly configured to ensure cloud-only voice routing.
Granting `-PolicyName $null` removes any assigned voice routing policy, which would typically prevent outbound calls or further exacerbate routing issues, not resolve them.
Setting `TelephoneNumber` to `$null` would remove the user's assigned phone number, preventing both inbound and outbound calls from working correctly.
Setting the `OnPremLineURI` for the user with `Set-CsUser` is crucial for Direct Routing, as this URI is used by the Session Border Controller (SBC) to correctly route incoming PSTN calls to the Teams user, resolving the inbound call error. The format `tel:+E.164` is standard.
Setting `EnterpriseVoiceEnabled` to `$false` via `Set-CsUser` for a cloud-only Direct Routing user ensures that their voice routing is entirely handled by Teams Online and Direct Routing configuration, preventing potential conflicts with legacy on-premises voice settings that could cause issues like missing outbound caller ID.
While `Set-CsOnlineVoiceUser -TelephoneNumber` is used to set the outbound caller ID, the specific issue of 'no caller ID' in this context, combined with inbound call failures, often points to a deeper configuration issue related to `OnPremLineURI` and `EnterpriseVoiceEnabled` for cloud-managed Direct Routing users.
Concept tested: Teams Direct Routing user troubleshooting
Source: https://learn.microsoft.com/en-us/microsoftteams/direct-routing-configure-user#enable-a-user-for-direct-routing
Topics
Community Discussion
No community discussion yet for this question.