You create an Azure Storage account named contosostorage.
You plan to create a file share named data.
Users need to map a drive to the data file share from home computers that run Windows 10.
Which outbound port should you open between the home computers and the data file share?
Click on the arrows to vote for the correct answer
A. B. C. D.C
Ensure port 445 is open: The SMB protocol requires TCP port 445 to be open; connections will fail if port 445 is blocked.
https://docs.microsoft.com/en-us/azure/storage/files/storage-how-to-use-files-windowsThe correct answer is C. 445.
When users map a drive to a file share, they use the Server Message Block (SMB) protocol over TCP port 445. Therefore, you need to open outbound port 445 on the home computers to allow access to the file share in the Azure Storage account.
Here's a brief overview of the other options and why they're not the correct choice:
A. Port 80 is used for HTTP traffic, not SMB.
B. Port 443 is used for HTTPS traffic, not SMB.
C. Port 445 is the correct choice, as mentioned above.
D. Port 3389 is used for Remote Desktop Protocol (RDP), not SMB.
Therefore, the correct answer is C. 445.