Skip to content

Commit 7fd458a

Browse files
committed
done
1 parent 04da1c2 commit 7fd458a

19 files changed

+26
-29
lines changed

articles/dns/dns-operations-recordsets-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ You can use the Azure portal to remove records from a record set. Removing the l
6868
2. A message appears asking if you want to delete the record set.
6969
3. Verify that the name matches the record set that you want to delete, and then select **Yes**.
7070

71-
![A screenshot of adding records to a recordset.](./media/dns-operations-recordsets-portal/delete-record-set.png)
71+
![A screenshot of adding new records to a recordset.](./media/dns-operations-recordsets-portal/delete-record-set.png)
7272

7373
4. On the **DNS zone** page, verify that the record set is no longer visible.
7474

articles/dns/dns-reverse-dns-hosting.md

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,23 @@ In this article, you learn how to create your first reverse lookup DNS zone and
2424

2525
## Create a reverse lookup DNS zone
2626

27-
1. Sign in to the [Azure portal](https://portal.azure.com).
28-
29-
1. On the top left-hand side of the screen, select **Create a resource** and search for **DNS zone**. Then select **Create**.
30-
31-
:::image type="content" source="./media/dns-operations-dnszones-portal/search-dns-zone.png" alt-text="Screenshot of create a resource search for reverse DNS zone.":::
32-
33-
1. On the **Create DNS zone** page, select, or enter the following settings:
27+
1. Sign in to the [Azure portal](https://portal.azure.com/).
28+
2. On the top left-hand side of the screen, select **Create a resource**.
29+
3. Search for **DNS zone**, select **DNS zone**, and then select **Create**.
30+
4. On the **Create DNS zone** page enter the following values, then select **Create**:
3431

3532
| Setting | Details |
3633
| --- | --- |
37-
| **Subscription** | Select a subscription to create the DNS zone in.|
34+
| **Subscription** | Select your subscription.|
3835
| **Resource group** | Select or create a new resource group. To learn more about resource groups, read the [Resource Manager](../azure-resource-manager/management/overview.md?toc=%2fazure%2fdns%2ftoc.json#resource-groups) overview article.|
39-
| **Name** | Enter a name for the DNS zone. The name of the zone is crafted differently for IPv4 and IPv6 prefixes. Use the instructions for [IPv4](#ipv4) or [IPv6](#ipv6) to name your zone. |
36+
| **Name** | Enter a name for the DNS zone. The name of the zone is specified differently for IPv4 and IPv6 prefixes. Use the instructions for [IPv4](#ipv4) or [IPv6](#ipv6) to name your zone. |
4037
| **Location** | Select the location for the resource group. The location is already be selected if you're using a previously created resource group. |
4138

42-
1. Select **Review + create**, and then select **Create** once validation has passed.
39+
5. Select **Review + create**, and then select **Create** once validation has passed.
4340

4441
### IPv4
4542

46-
The name of an IPv4 reverse lookup zone is based on the IP range that it represents. It should be in the following format: `<IPv4 network prefix in reverse order>.in-addr.arpa`. For examples, see [Overview of reverse DNS](dns-reverse-dns-overview.md#ipv4) for IPv4.
43+
The name of an IPv4 reverse lookup zone is based on the IP address range that it represents. Use the following format: `<IPv4 network prefix in reverse order>.in-addr.arpa`. For examples, see [Overview of reverse DNS](dns-reverse-dns-overview.md#ipv4) for IPv4.
4744

4845
> [!NOTE]
4946
> When you're creating classless reverse DNS lookup zones in Azure DNS, you must use a hyphen (`-`) instead of a forward slash (`/`) in the zone name.
@@ -118,21 +115,21 @@ For forward lookup zones, the process of delegating a DNS zone is described in [
118115

119116
The following example explains the process of creating a PTR record for a reverse DNS zone in Azure DNS. To learn more about record types or how to modify existing records, see [Manage DNS records and record sets](dns-operations-recordsets-portal.md).
120117

121-
1. At the top of the *DNS zone* overview page, select **+ Record set** to open the *Add record set* pane.
118+
1. At the top of the reverse DNS zone **Overview** page, select **Record sets** and then select **+Add**.
122119

123-
:::image type="content" source="./media/dns-reverse-dns-hosting/create-record-set-ipv4.png" alt-text="Screenshot of create IPv4 pointer record set.":::
120+
![A screenshot of how to add an IPv4 reverse DNS record to a DNS zone.](./media/dns-reverse-dns-hosting/create-record-set-ipv4.png)
124121

125-
1. The name of the record set for a PTR record is the rest of the IPv4 address in reverse order.
122+
2. The name of the record set for a PTR record is the rest of the IPv4 address in reverse order.
126123

127124
In this example, the first three octets are already populated as part of the zone name `.2.0.192`. That's why only the last octet is needed in the **Name** box. For example, give your record set the name of **15** for a resource whose IP address is `192.0.2.15`.
128125

129126
:::image type="content" source="./media/dns-reverse-dns-hosting/create-ipv4-ptr.png" alt-text="Screenshot of create IPv4 pointer record.":::
130127

131-
1. For *Type*, select **PTR**.
128+
3. For *Type*, select **PTR**.
132129

133-
1. For *DOMAIN NAME*, enter the fully qualified domain name (FQDN) of the resource that uses the IP.
130+
4. For *DOMAIN NAME*, enter the fully qualified domain name (FQDN) of the resource that uses the IP.
134131

135-
1. Select **OK** to create the DNS record.
132+
5. Select **Add** to create the reverse DNS record.
136133

137134
The following examples show how to complete this task by using Azure PowerShell and Azure CLI.
138135

@@ -157,9 +154,9 @@ az network dns record-set ptr add-record -g mydnsresourcegroup -z 2.0.192.in-add
157154

158155
The following example explains the process of creating new PTR record for IPv6. To learn more about record types or how to modify existing records, see [Manage DNS records and record sets](dns-operations-recordsets-portal.md).
159156

160-
1. At the top of the *DNS zone* pane, select **+ Record set** to open the *Add record set* pane.
157+
1. At the top of the reverse DNS zone **Overview** page, select **Record sets** and then select **+Add**.
161158

162-
:::image type="content" source="./media/dns-reverse-dns-hosting/create-record-set-ipv6.png" alt-text="Screenshot of create IPv6 pointer record set.":::
159+
![A screenshot of how to add an IPv6 reverse DNS record to a DNS zone.](./media/dns-reverse-dns-hosting/create-record-set-ipv6.png)
163160

164161
1. The name of the record set for a PTR record is the rest of the IPv6 address in reverse order. It must not include any zero compression.
165162

@@ -201,7 +198,7 @@ To view the records that you created, browse to your DNS zone in the Azure porta
201198

202199
The **DNS zone** page shows the IPv4 PTR record:
203200

204-
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record.png" alt-text="Screenshot of IPv4 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record-expanded.png":::
201+
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record.png" alt-text="Screenshot of IPv4 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record.png":::
205202

206203
The following examples show how to view the PTR records by using Azure PowerShell and Azure CLI.
207204

@@ -227,7 +224,7 @@ az network dns record-set list -g mydnsresourcegroup -z 2.0.192.in-addr.arpa
227224

228225
The **DNS zone** page shows the IPv6 PTR record:
229226

230-
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv6-ptr-record.png" alt-text="Screenshot of IPv6 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv6-ptr-record-expanded.png":::
227+
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv6-ptr-record.png" alt-text="Screenshot of IPv6 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv6-ptr-record.png":::
231228

232229
The following examples show how to view the records by using PowerShell or Azure CLI.
233230

articles/dns/dns-reverse-dns-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: KumuD
66
ms.service: dns
77
ms.topic: article
88
ms.custom:
9-
ms.date: 04/27/2023
9+
ms.date: 06/10/2024
1010
ms.author: greglin
1111
---
1212

articles/dns/dns-web-sites-custom-domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ An A record is used to map a name to its IP address. In the following example, a
6262

6363
In the left navigation of the App Services page in the Azure portal, select **Custom domains**, then copy the IP address of your web app:
6464

65-
:::image type="content" source="./media/dns-web-sites-custom-domain/app-service-custom-domains.png" alt-text="Screenshot of Azure App Service Custom domains page showing the web app I P address.":::
65+
:::image type="content" source="./media/dns-web-sites-custom-domain/app-service-custom-domains.png" alt-text="Screenshot of Azure App Service Custom domains page showing the web app IP address.":::
6666

6767
### Create the record
6868

63 KB
Loading
52.4 KB
Loading
Binary file not shown.
80.3 KB
Loading
Binary file not shown.
73.9 KB
Loading

0 commit comments

Comments
 (0)