-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from zakriya057/ITOUDP-4349
lower case name in CAA record
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
$ ndcli create zone a.de | ||
WARNING - Creating zone a.de without profile | ||
WARNING - Primary NS for this Domain is now localhost. | ||
|
||
$ ndcli create rr a.de. CAA 2 issue "ca.example.net" | ||
ERROR - CAA Issuer critical only allows values 0, 1, 128 | ||
$ ndcli create rr a.de. CAA 0 issuer "ca.example.net" | ||
ERROR - only CAA property tags "issue", "issuewild", "iodef" are allowed | ||
|
||
$ ndcli create rr a.de. CAA 0 issue "ca.example.net" | ||
INFO - Creating RR @ CAA 0 issue "ca.example.net" in zone a.de | ||
$ ndcli create rr a.de. CAA 0 issue "Ca.example.net" | ||
INFO - a.de. CAA 0 issue "ca.example.net" already exists | ||
|
||
$ ndcli delete rr a.de. CAA 0 issue "ca.example.net" | ||
INFO - Deleting RR @ CAA 0 issue "ca.example.net" from zone a.de |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters