Skip to content

Commit 00755ea

Browse files
committed
typos
1 parent f95b0e1 commit 00755ea

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/dns/dns-reverse-dns-for-azure-services.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Azure currently supports reverse DNS only for public IPv4 address resources.
5353
> [!IMPORTANT]
5454
> New or updated PTR records must pass [validation](#validation-of-reverse-dns-records). If the PTR for a public IP address doesn't currently exist, you must specify the hostname using **DomainNameLabel** (Azure PowerShell), the **-d** parameter (Azure Classic CLI), or the **--dns-name** parameter (Azure CLI) as shown in the following examples.
5555
56-
### Add reverse DNS for an public IP address with an existing name
56+
### Add reverse DNS for a public IP address with an existing name
5757

5858
Use the following procedures if a public IP address already has a [defined name](#validation-of-reverse-dns-records) in your subscription or via forward DNS lookup.
5959

@@ -67,7 +67,7 @@ $pip.DnsSettings.ReverseFqdn = "contosoapp1.westus.cloudapp.azure.com."
6767
Set-AzPublicIpAddress -PublicIpAddress $pip
6868
```
6969

70-
To add reverse DNS to an a public IP address that doesn't already have a PTR, you must specify the DomainNameLabel:
70+
To add reverse DNS to a public IP address that doesn't already have a PTR, you must specify the DomainNameLabel:
7171

7272
```azurepowershell-interactive
7373
$pip = Get-AzPublicIpAddress -Name "PublicIp" -ResourceGroupName "MyResourceGroup"
@@ -85,7 +85,7 @@ To update reverse DNS on a public IP address with an existing PTR:
8585
azure network public-ip set -n PublicIp -g MyResourceGroup -f contosoapp1.westus.cloudapp.azure.com.
8686
```
8787

88-
To add reverse DNS to an a public IP address that doesn't already have a PTR, you must specify the DNS name (-d):
88+
To add reverse DNS to a public IP address that doesn't already have a PTR, you must specify the DNS name (-d):
8989

9090
```azurecli-interactive
9191
azure network public-ip set -n PublicIp -g MyResourceGroup -d contosoapp1 -f contosoapp1.westus.cloudapp.azure.com.
@@ -99,7 +99,7 @@ To update reverse DNS on a public IP address with an existing PTR:
9999
az network public-ip update --resource-group MyResourceGroup --name PublicIp --reverse-fqdn contosoapp1.westus.cloudapp.azure.com.
100100
```
101101

102-
To add reverse DNS to an a public IP address that doesn't already have a PTR, you must specify the DNS name (--dns-name):
102+
To add reverse DNS to a public IP address that doesn't already have a PTR, you must specify the DNS name (--dns-name):
103103

104104
```azurecli-interactive
105105
az network public-ip update --resource-group MyResourceGroup --name PublicIp --reverse-fqdn contosoapp1.westus.cloudapp.azure.com --dns-name contosoapp1
@@ -108,7 +108,7 @@ az network public-ip update --resource-group MyResourceGroup --name PublicIp --r
108108
### Create a public IP address with reverse DNS
109109

110110
> [!NOTE]
111-
> If the public IP address already exists in your subscription, see [Add reverse DNS for an public IP address with an existing name](#add-reverse-dns-for-an-public-ip-address-with-an-existing-name).
111+
> If the public IP address already exists in your subscription, see [Add reverse DNS for a public IP address with an existing name](#add-reverse-dns-for-a-public-ip-address-with-an-existing-name).
112112
113113
To create a new PublicIpAddress with the reverse DNS property already specified:
114114

@@ -218,7 +218,7 @@ Set-AzureService –ServiceName "contosoapp1" –Description "App1 with Reverse
218218

219219
They're free! There's no extra cost for reverse DNS records or queries.
220220

221-
### Will my reverse DNS records resolve from the internet?
221+
### Do my reverse DNS records resolve from the internet?
222222

223223
Yes. Once you set the reverse DNS property for your Azure service, Azure manages all the DNS delegations and DNS zones needed to ensure it resolves for all internet users.
224224

@@ -230,9 +230,9 @@ No. Reverse DNS is an opt-in feature. No default reverse DNS records are created
230230

231231
FQDNs are specified in forward order, and must be terminated by a dot (for example, "app1.contoso.com.").
232232

233-
### What happens if the validation check for the reverse DNS I've specified fails?
233+
### What happens if the validation check for the specified reverse DNS entry fails?
234234

235-
Where the reverse DNS validation check fails, the operation to configure the reverse DNS record fails. Correct the reverse DNS value as required, and retry.
235+
If the reverse DNS validation check fails, the operation to configure the reverse DNS record fails. Correct the reverse DNS value as required and retry.
236236

237237
### Can I configure reverse DNS for Azure App Service?
238238

0 commit comments

Comments
 (0)