Skip to content

Commit 393ae59

Browse files
committed
made the validation section simple
1 parent 213ccd1 commit 393ae59

File tree

2 files changed

+22
-48
lines changed

2 files changed

+22
-48
lines changed

articles/event-hubs/private-link-service.md

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -238,39 +238,26 @@ You should validate that the resources within the same subnet of the private end
238238

239239
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)
240240

241-
In the **Networking** tab:
241+
In the **Networking** tab:
242242

243-
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.
244-
1. Specify a **public IP** resource.
245-
1. In the **NIC network security group**, select **None**.
246-
1. In the **Load balancing**, select **No**.
243+
1. Specify **Virtual network** and **Subnet**. You must select the Virtual Network on which you deployed the private endpoint.
244+
2. Specify a **public IP** resource.
245+
3. For **NIC network security group**, select **None**.
246+
4. For **Load balancing**, select **No**.
247247

248-
Open the command line and run the following command:
248+
Connect to the VM and open the command line and run the following command:
249249

250250
```console
251-
nslookup <your-event-hubs-namespace-name>.servicebus.windows.net
251+
nslookup <event-hubs-namespace-name>.servicebus.windows.net
252252
```
253253

254-
If you run the ns lookup command to resolve the IP address of an Event Hubs namespace over a public endpoint, you will see a result that looks like this:
254+
You should see a result that looks like the following.
255255

256256
```console
257-
c:\ >nslookup <your-event-hubs-namespae-name>.servicebus.windows.net
258-
259-
Non-authoritative answer:
260-
Name:
261-
Address: (public IP address)
262-
Aliases: <your-event-hubs-namespace-name>.servicebus.windows.net
263-
```
264-
265-
If you run the ns lookup command to resolve the IP address of an Event Hubs namespace over a private endpoint, you will see a result that looks like this:
266-
267-
```console
268-
c:\ >nslookup your_event-hubs-namespace-name.servicebus.windows.net
269-
270257
Non-authoritative answer:
271-
Name:
272-
Address: 10.1.0.5 (private IP address)
273-
Aliases: <your-event-hub-name>.servicebus.windows.net
258+
Name: <event-hubs-namespace-name>.privatelink.servicebus.windows.net
259+
Address: 10.0.0.4 (private IP address associated with the private endpoint)
260+
Aliases: <event-hubs-namespace-name>.servicebus.windows.net
274261
```
275262

276263
## Limitations and design considerations

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

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -225,39 +225,26 @@ You should validate that the resources within the same subnet of the private end
225225

226226
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)
227227

228-
In the **Networking** tab:
228+
In the **Networking** tab:
229229

230-
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.
231-
1. Specify a **public IP** resource.
232-
1. For **NIC network security group**, select **None**.
233-
1. For **Load balancing**, select **No**.
230+
1. Specify **Virtual network** and **Subnet**. You must select the Virtual Network on which you deployed the private endpoint.
231+
2. Specify a **public IP** resource.
232+
3. For **NIC network security group**, select **None**.
233+
4. For **Load balancing**, select **No**.
234234

235-
Open the command line and run the following command:
235+
Connect to the VM and open the command line and run the following command:
236236

237237
```console
238-
nslookup <your-service-bus-namespace-name>.servicebus.windows.net
238+
nslookup <service-bus-namespace-name>.servicebus.windows.net
239239
```
240240

241-
If you run the ns lookup command to resolve the IP address of a Service Bus namespace over a public endpoint, you will see a result that looks like this:
241+
You should see a result that looks like the following.
242242

243243
```console
244-
c:\ >nslookup <your-service-bus-namespace-name>.servicebus.windows.net
245-
246-
Non-authoritative answer:
247-
Name:
248-
Address: (public IP address)
249-
Aliases: <your-service-bus-namespace-name>.servicebus.windows.net
250-
```
251-
252-
If you run the ns lookup command to resolve the IP address of a Service Bus namespace over a private endpoint, you will see a result that looks like this:
253-
254-
```console
255-
c:\ >nslookup your_service-bus-namespace-name.servicebus.windows.net
256-
257244
Non-authoritative answer:
258-
Name:
259-
Address: 10.1.0.5 (private IP address)
260-
Aliases: <your-service-bus-namespace-name>.servicebus.windows.net
245+
Name: <service-bus-namespace-name>.privatelink.servicebus.windows.net
246+
Address: 10.0.0.4 (private IP address associated with the private endpoint)
247+
Aliases: <service-bus-namespace-name>.servicebus.windows.net
261248
```
262249

263250
## Limitations and Design Considerations

0 commit comments

Comments
 (0)