An administrator needs to use Azure Storage Explorer from an on-premises workstation to download files from a blob container named `securedocs`. The host storage account `stproddata` is configured with public network access restricted to 'Enabled from selected virtual networks and IP addresses'. The administrator must connect to the specific blob container with minimum required permissions. Move the steps to the active area and arrange them in the correct sequence to achieve this goal.
- 1Identify the public IP address of the on-premises workstation.
- 2Add the workstation's public IP address to the allowed IP ranges under the Networking settings of the storage account.
- 3Generate a Service SAS URI at the blob container level with Read and List permissions.
- 4Launch Azure Storage Explorer, open the Connect dialog, and select Blob container as the resource type.
- 5Select Shared access signature (SAS) as the connection method, paste the generated SAS URI, and complete the connection.
Answer
The correct sequence of steps is: 1) Identify the public IP address of the on-premises workstation; 2) Add the workstation's public IP address to the allowed IP ranges under the Networking settings of the storage account; 3) Generate a Service SAS URI at the blob container level with Read and List permissions; 4) Launch Azure Storage Explorer, open the Connect dialog, and select Blob container as the resource type; 5) Select Shared access signature (SAS) as the connection method, paste the generated SAS URI, and complete the connection.
The correct sequence ensures that network connectivity is authorized first by identifying and adding the workstation's public IP address to the storage account firewall settings. Once network access is enabled, a container-level Service SAS URI is generated to meet the minimum privilege requirement. Finally, the connection wizard in Azure Storage Explorer is launched, configured for a blob container, and the SAS URI is applied to successfully browse and download files.
Step-by-Step Solution
Key Concept
Connecting to Azure Storage resources through Storage Explorer using container-scoped Service SAS tokens while resolving storage firewall constraints.