Skip to content

Commit 7fbbfa0

Browse files
committed
edit
1 parent 2d3f198 commit 7fbbfa0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/dns/dnssec-how-to.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To sign your zone with DNSSEC using the Azure portal:
4646

4747
6. Copy the delegation information and use it to create a DS record in the parent zone.
4848

49-
1. If the parent zone is a top level domain (for example: `.com`) or you don't own the parent zone, you must add the DS record at your registrar. Each registrar has its own process. The registrar might ask for values such as the Key Tag, Algorithm, Digest Type, and Key Digest. In the example shown here, these values are:
49+
1. If the parent zone is a top level domain (for example: `.com`), you must add the DS record at your registrar. Each registrar has its own process. The registrar might ask for values such as the Key Tag, Algorithm, Digest Type, and Key Digest. In the example shown here, these values are:
5050

5151
**Key Tag**: 4535<br>
5252
**Algorithm**: 13<br>
@@ -60,6 +60,8 @@ To sign your zone with DNSSEC using the Azure portal:
6060
[ ![Screenshot of adding a DS record to the parent zone.](./media/dnssec-how-to/ds-add.png) ](./media/dnssec-how-to/ds-add.png#lightbox)
6161
[ ![Screenshot of a DS record in the parent zone.](./media/dnssec-how-to/ds-added.png) ](./media/dnssec-how-to/ds-added.png#lightbox)
6262

63+
3. If you don't own the parent zone, send the DS record to the owner of the parent zone with instructions to add it into their zone.
64+
6365
7. When the DS record has been uploaded to the parent zone, select the DNSSEC information page for your zone and verify that **Signed and delegation established** is displayed. Your DNS zone is now fully DNSSEC signed.
6466

6567
[ ![Screenshot of a fully signed and delegated zone.](./media/dnssec-how-to/delegated.png) ](./media/dnssec-how-to/delegated.png#lightbox)
@@ -118,14 +120,16 @@ In these examples, the DS values are:
118120
- Digest: 0B9E68FC1711B4AC4EC0FCE5E673EDB0AFDC18F27EA94861CDF08C7100EA776C
119121

120122

121-
3. If the parent zone is a top level domain (for example: `.com`) or you don't own the parent zone, you must add the DS record at your registrar. Each registrar has its own process.
123+
3. If the parent zone is a top level domain (for example: `.com`), you must add the DS record at your registrar. Each registrar has its own process.
122124

123125
4. If you own the parent zone, you can add a DS record directly to the parent yourself. The following example shows how to add a DS record to the DNS zone **adatum.com** for the child zone **secure.adatum.com** when both zones are signed and hosted using Azure Public DNS:
124126

125127
```azurepowershell-interactive
126128
az network dns record-set ds add-record --resource-group "your-resource-group" --zone-name "adatum.com" --record-set-name "secure" --key-tag <key-tag> --algorithm <algorithm> --digest <digest> --digest-type <digest-type>
127129
```
128130

131+
5. If you don't own the parent zone, send the DS record to the owner of the parent zone with instructions to add it into their zone.
132+
129133
## [PowerShell](#tab/sign-powershell)
130134

131135
1. Sign and verify your zone using PowerShell:
@@ -164,15 +168,15 @@ In these examples, the DS values are:
164168
- Digest Type: 2
165169
- Digest: 0B9E68FC1711B4AC4EC0FCE5E673EDB0AFDC18F27EA94861CDF08C7100EA776C
166170

167-
3. If the parent zone is a top level domain (for example: `.com`) or you don't own the parent zone, you must add the DS record at your registrar. Each registrar has its own process.
171+
3. If the parent zone is a top level domain (for example: `.com`), you must add the DS record at your registrar. Each registrar has its own process.
168172

169173
4. If you own the parent zone, you can add a DS record directly to the parent yourself. The following example shows how to add a DS record to the DNS zone **adatum.com** for the child zone **secure.adatum.com** when both zones are signed and hosted using Azure Public DNS. Replace \<key-tag\>, \<algorithm\>, \<digest\>, and \<digest-type\> with the appropriate values from the DS record you queried previously.
170174

171175
```PowerShell
172176
$dsRecord = New-AzDnsRecordConfig -DnsRecordType DS -KeyTag <key-tag> -Algorithm <algorithm> -Digest <digest> -DigestType <digest-type>
173177
New-AzDnsRecordSet -ResourceGroupName "dns-rg" -ZoneName "adatum.com" -Name "secure" -RecordType DS -Ttl 3600 -DnsRecords $dsRecord
174178
```
175-
179+
5. If you don't own the parent zone, send the DS record to the owner of the parent zone with instructions to add it into their zone.
176180
---
177181

178182
## Next steps

0 commit comments

Comments
 (0)