Skip to content

Commit 27a4a02

Browse files
committed
updated the validation section
1 parent cf0d15e commit 27a4a02

File tree

1 file changed

+16
-24
lines changed

1 file changed

+16
-24
lines changed

articles/service-bus-relay/private-link-service.md

Lines changed: 16 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ For step-by-step instructions on creating a new Azure Relay namespace and entiti
7474
9. On the **Configuration** page, you select the subnet in a virtual network to where you want to deploy the private endpoint.
7575
1. Select a **virtual network**. Only virtual networks in the currently selected subscription and location are listed in the drop-down list.
7676
2. Select a **subnet** in the virtual network you selected.
77-
3. To connect privately with your private endpoint, you need a DNS record. We recommend that you integrate your private endpoint with a **private DNS zone**. You can also utilize your own DNS servers or create DNS records using the host files on your virtual machines. For more information, see [Azure Private Endpoint DNS Configuration](../private-link/private-endpoint-dns.md). In this example, the **Integrate with private DNS zone** option is selected and a private DNS zone will be created for you.
77+
3. Enable **Integrate with private DNS zone** if you want to integrate your private endpoint with a private DNS zone.
78+
79+
To connect privately with your private endpoint, you need a DNS record. We recommend that you integrate your private endpoint with a **private DNS zone**. You can also utilize your own DNS servers or create DNS records using the host files on your virtual machines. For more information, see [Azure Private Endpoint DNS Configuration](../private-link/private-endpoint-dns.md). In this example, the **Integrate with private DNS zone** option is selected and a private DNS zone will be created for you.
7880
3. Select **Next: Tags >** button at the bottom of the page.
7981

8082
![Create Private Endpoint - Configuration page](./media/private-link-service/create-private-endpoint-configuration-page.png)
@@ -206,43 +208,33 @@ There are four provisioning states:
206208

207209
## Validate that the private link connection works
208210

209-
You should validate that the resources within the same subnet of the private endpoint resource are connecting to your Azure Relay namespace over a private IP address, and that they have the correct private DNS zone integration.
211+
You should validate that the resources within the same subnet of the private endpoint resource are connecting to your Azure Relay namespace over its private IP address.
210212

211213
First, create a virtual machine by following the steps in [Create a Windows virtual machine in the Azure portal](../virtual-machines/windows/quick-create-portal.md)
212214

213-
In the **Networking** tab:
214-
215-
1. Specify **Virtual network** and **Subnet**. You can create a new virtual network or select an existing one. If selecting an existing one, make sure the region matches.
216-
1. Specify a **public IP** resource.
217-
1. For **NIC network security group**, select **None**.
218-
1. For **Load balancing**, select **No**.
215+
For this test, create a VM in the Azure portal. Do the following steps in the **Networking** tab of the wizard:
219216

220-
Connect to the VM, open the command line, and run the following command:
217+
1. Specify **Virtual network** and **Subnet**. You must select the Virtual Network on which you deployed the private endpoint.
218+
2. Specify a **public IP** resource.
219+
3. For **NIC network security group**, select **None**.
220+
4. For **Load balancing**, select **No**.
221221

222-
```console
223-
nslookup <your-relay-namespace-name>.servicebus.azure.net
224-
```
225222

226-
If you run the ns lookup command to resolve the IP address of an Azure Relay namespace over a public endpoint, you will see a result that looks like this:
223+
Connect to the VM and open the command line and run the following command:
227224

228225
```console
229-
c:\ >nslookup <your-relay-namespace-name>.servicebus.azure.net
230-
231-
Non-authoritative answer:
232-
Name:
233-
Address: (public IP address)
234-
Aliases: <your-relay-namespace-name>.servicebus.azure.net
226+
nslookup <your-relay-namespace-name>.servicebus.azure.net
235227
```
236228

237-
If you run the ns lookup command to resolve the IP address of an Azure Relay namespace over a private endpoint, you will see a result that looks like this:
229+
You should see a result that looks like the following.
238230

239231
```console
240-
c:\ >nslookup your_relay-namespace-name.servicebus.azure.net
241-
232+
c:\ >nslookup <your-relay-namespace-name>.servicebus.windows.net
233+
...
242234
Non-authoritative answer:
243235
Name:
244-
Address: 10.1.0.5 (private IP address)
245-
Aliases: <your-relay-namespace-name>.servicebus.azure.net
236+
Address: 10.1.0.5 (private IP address associated to the private endpoint)
237+
Aliases: <your-relay-namespace-name>.servicebus.windows.net
246238
```
247239

248240
## Limitations and Design Considerations

0 commit comments

Comments
 (0)