exam questions

Exam AZ-700 All Questions

View all questions & answers for the AZ-700 exam

Exam AZ-700 topic 5 question 3 discussion

Actual exam question from Microsoft's AZ-700
Question #: 3
Topic #: 5
[All AZ-700 Questions]

DRAG DROP -
You have an Azure virtual network named Vnet1 that connects to an on-premises network.
You have an Azure Storage account named storageaccount1 that contains blob storage.
You need to configure a private endpoint for the blob storage. The solution must meet the following requirements:
✑ Ensure that all on-premises users can access storageaccount1 through the private endpoint.
✑ Prevent access to storageaccount1 from being interrupted.
Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Select and Place:

Show Suggested Answer Hide Answer
Suggested Answer:
168.63.129.16 is the IP address of Azure DNS which hosts Azure Private DNS zones. It is only accessible from within a VNet which is why we need to forward on-prem DNS requests to the VM running DNS in the VNet. The VM will then forward the request to Azure DNS for the IP of the storage account private endpoint.
Reference:
https://docs.microsoft.com/en-us/azure/storage/common/storage-private-endpoints

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
kerberos999
Highly Voted 3 years, 5 months ago
The order is wrong. If you need to avoid service interruption "Deny Public Access and Private Endpoint" should be configured at last
upvoted 58 times
Feliphus
5 months, 2 weeks ago
This is an old question, when it wasn't DNS private zone and you need to deploy a DNS server on a subnet
upvoted 2 times
...
waqas
3 years, 3 months ago
So plz guide what should be the right sequence and answer then????
upvoted 8 times
Chriscrown
2 years, 7 months ago
Deploy VM --> Install DNS Server role --> Configure On-prem to fwd blob.core.windows.net --> disable public access.
upvoted 38 times
...
...
_Cris
1 year, 7 months ago
I thought exactly the same, it wasn't that bad.
upvoted 3 times
...
...
Pravda
Highly Voted 3 years, 3 months ago
Think through the steps and this is and easy question to answer. + 5 Deploy VM This VM is for DNS. + 1 Install DNS Role and create DNS forward entry DNS server in Azure has blob.core mapped to IP address 168.63.129.16 + 2 ON-prem DNS to VM The on prem DNS server lookup requests for blob need to be forwarded to the DNS server in Azure with the blob.core to IP address mapping. + 3 Private-endpoint creation and disable public access – With DNS settings complete users can connect to blob, without interruption. Public access can be disabled. Not sure why 4 could not be used in place of creating VM and installing DNS role. I suspect is has something to do with interruption of service. But since we aren't told how they are accessing the blob now who knows.
upvoted 48 times
ian2387
3 years ago
I agree with this
upvoted 2 times
...
...
bobothewiseman
Most Recent 2 months, 3 weeks ago
Configure a private endpoint on storageaccount1 and disable public access to the account Deploy a virtual machine to a subnet in Vnet1 Install the DNS server role and configure the forwarding of blob.core.windows.net to 168.63.129.16 Configure on-premises DNS servers to forward blob.core.windows.net to the virtual machine
upvoted 1 times
...
GBAU
1 year, 6 months ago
If you set up the PEP and deny public access first, you interrupt access to the storage for onsite users (who are using Public Access). You need to set up the DNS solution first, which will initially still give the Public IP resolution so maintain access. Then you add the PEP and remove public Access. DNS will cut over to the PEP IP and users will continue to access it that way. Of course, with DNS caching of the storages Public IP access, users will still get some interruptions to access... To actually do this without interruption, you would need to create a static record in DNS for the storage accounts PEP first, then add the forwarder, wait for the TTL for the Public DNS records on the clients to expire, then remove the static entry. to let the forwarder take control.
upvoted 2 times
...
Zeppoonstream
2 years ago
From where do i get the info what the ip is ?!
upvoted 2 times
...
GohanF2
2 years, 5 months ago
Answers are as following: 1. Deploy a virtual machine to a subnet in Vnet1 2. Install DNS server role and configure the forwarding of blob.core.windows.net to 168.63.129.16 3. Configure on-premises DNS servers to forward blob.core.windows.net to the virtual machine (This is assuming that there is an IPsec connection from your on-premises to your Azure Virtual Environment). 4. Configure a private endpoint on storageaccount1 and disable public access to the account. (This is option is done on last due that a storage account can only have one type of access mode at a time, if we set this option by first, we will be interrupting the access publicly and the question says that we need to avoid service interruption.) The option of: Configure on-premises DNS server to forward blob.core.windows.net to 168.63.129.16 is wrong due that the ip addres: 168.63.129.16 exists only in Azure Environment and our On-premises network won't know any route of how to get to that network.
upvoted 12 times
...
jellybiscuit
2 years, 6 months ago
This is what I was doing, without really thinking about the disruption. After seeing the comments and thinking back on my answer, I think the key is to simply pause between enabling the private endpoint and disabling public access to allow DNS to propagate after you add the PE. - deploy vm - install dns - on-prem dns forwards to vm - configure private endpoint on storage account - [ insert pause here] then disable public access
upvoted 5 times
...
sapien45
2 years, 6 months ago
Very similar setup described here : https://learn.microsoft.com/en-us/azure/private-link/private-endpoint-dns#on-premises-workloads-using-a-dns-forwarder
upvoted 2 times
...
Jamesat
2 years, 8 months ago
To avoid service disruption you would have to do the Private Endpoint last. Otherwise you've lost access until you have finished building the VMs and installing DNS etc.
upvoted 1 times
...
zerocool114
2 years, 9 months ago
on exam today
upvoted 1 times
...
unclegrandfather
2 years, 10 months ago
Appeared on exam Jun/28/22
upvoted 1 times
...
Fearless90
2 years, 10 months ago
5. Deploy a virtual machine to a subnet in Vnet1 5. Deploy VM. This VM is for DNS. 1. Install the DNS server role and configure the forwarding of blob.core.windows.net to 168.63.129.16 1. Install DNS Role and create DNS forward entry. DNS server in Azure has blob.core.windows.net mapped to IP address 168.63.129.16 2. Configure on-premises DNS servers to forward blob.core.windows.net to the virtual machine 2. ON-prem DNS to VM The on prem DNS server lookup requests for blob need to be forwarded to the DNS server in Azure with the blob.core.windows.net to IP address mapping. 3. Configure a private endpoint on storageaccount1 and disable public access to the account 3. Private-endpoint creation and disable public access With DNS settings complete users can connect to blob, without interruption. Public access can be disabled. Avoid service interruption "Deny Public Access and Private Endpoint" should be configured at last
upvoted 1 times
...
kogunribido
2 years, 10 months ago
Appeared on exam 6/27/2022
upvoted 1 times
...
kogunribido
2 years, 10 months ago
Appeared on exam 6/27/2022
upvoted 1 times
...
Pravda
3 years, 3 months ago
Variant on exam 1/6/2022
upvoted 3 times
...
AidenYoukhana
3 years, 3 months ago
Correct Order: 5 1 2 3
upvoted 13 times
...
vivert
3 years, 4 months ago
VM>DNSRole +FwdtoAzureDNA+ ON-premDNStoFwdtoAzureVM +Private-endpoint creation
upvoted 5 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago