Hi @ Chase Griffin,
Welcome to Microsoft Q&A Platform
It sounds like you're running into some issues mapping Azure File Shares using Entra Kerberos authentication. This can be a bit tricky, so let's walk through a few things that might help resolve the credential error and the error code 1326 you're encountering.
Here are some steps you can try:
- Double-Check Permissions:
- Ensure that the role assigned to your user account includes the necessary permissions to interact with the Azure File Shares. You could try assigning the Storage File Data Privileged Reader or Storage File Data Privileged Contributor roles.
- MFA Configuration:
- If your organization uses Multi-Factor Authentication (MFA), ensure that you've excluded the Microsoft Entra app corresponding to your storage account from any conditional access policies. Otherwise, it can lead to sign-in issues when mapping the share.
- Private Link Configuration:
- If you're using a private endpoint for your storage account, make sure that the private link FQDN is registered in your Microsoft Entra application. Any entry pointing to
<storageAccount>.file.core.windows.netshould also have a corresponding entry for<storageAccount>.privatelink.file.core.windows.netin theidentifierUrisfield of the app registration.
- If you're using a private endpoint for your storage account, make sure that the private link FQDN is registered in your Microsoft Entra application. Any entry pointing to
- Network Configuration:
- Check if the necessary ports (especially port 445 for SMB) are open on your network setup, as issues here can sometimes lead to authentication failures.
- Kerberos Ticket Retrieval:
- Ensure that the clients you're using are set up to retrieve Kerberos tickets correctly. You may need to configure the clients via Intune, Group Policy, or a registry key as specified in the Microsoft docs.
- Consult the Error Logs:
- Look at the Azure sign-in logs, which can sometimes provide additional details regarding what may be preventing successful authentication.
Relevant Documentation:
- Troubleshoot authentication and authorization failures in Microsoft Entra ID
- How to enable Microsoft Entra authentication for Azure Files
- Access permissions required for data operations
- Azure Files Connectivity and Mount Troubleshooting
- Setting Up Your Client for Kerberos
Please do not forget to
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.