├── LICENSE ├── website └── index.html └── zones ├── .gitignore ├── Kblackhole.caatestsuite-dnssec.com.+005+04864.key ├── Kblackhole.caatestsuite-dnssec.com.+005+36765.key ├── Kcaatestsuite-dnssec.com.+005+58522.key ├── Kcaatestsuite-dnssec.com.+005+62745.key ├── Kexpired.caatestsuite-dnssec.com.+005+20931.key ├── Kexpired.caatestsuite-dnssec.com.+005+54799.key ├── Kmissing.caatestsuite-dnssec.com.+005+25092.key ├── Kmissing.caatestsuite-dnssec.com.+005+61357.key ├── Krefused.caatestsuite-dnssec.com.+005+02973.key ├── Krefused.caatestsuite-dnssec.com.+005+63016.key ├── Kservfail.caatestsuite-dnssec.com.+005+54072.key ├── Kservfail.caatestsuite-dnssec.com.+005+58627.key ├── Makefile ├── caatestsuite-dnssec.com. ├── caatestsuite.com. ├── expired.caatestsuite-dnssec.com. ├── ipv6only.caatestsuite.com. └── missing.caatestsuite-dnssec.com. /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 20 | 21 | CAA Test Suite 22 | 23 | 39 | 40 | 41 |
42 |

CAA Test Suite

43 | 44 |

45 | This is a test suite which checks compliance with CAA checking as defined in 46 | version 47 | 1.4.8 of the CA/Browser Forum Baseline Requirements. 48 | Effective September 8, 2017, a CA which issues a certificate in violation of a domain's 49 | CAA policy is in violation of the Baseline Requirements. CAs are encouraged to use this 50 | test suite to ensure that they are in compliance. 51 |

52 | 53 |

54 | The zone files for caatestsuite.com are on GitHub. 55 | If you have any questions, please open an issue. 56 |

57 | 58 |

Deny Tests

59 | 60 |

61 | No CA is allowed to issue for any of the following FQDNs: 62 |

63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 |
FQDNTest Description
empty.basic.caatestsuite.comTests proper processing of 0 issue ";"
deny.basic.caatestsuite.comTests proper processing of 0 issue "caatestsuite.com"
uppercase-deny.basic.caatestsuite.comTests proper processing when issue tag is uppercase (0 ISSUE "caatestsuite.com")
mixedcase-deny.basic.caatestsuite.comTests proper processing when issue tag is mixedcase (0 IsSuE "caatestsuite.com")
big.basic.caatestsuite.comTests proper processing of gigantic CAA record set (1001 records) containing 0 issue "caatestsuite.com"
critical1.basic.caatestsuite.comTests proper processing of an unknown critical property: 128 caatestsuitedummyproperty "test"
critical2.basic.caatestsuite.comTests proper processing of an unknown critical property when another flag is set: 130 caatestsuitedummyproperty "test"
sub1.deny.basic.caatestsuite.comTests basic tree climbing, when CAA record exists at parent
sub2.sub1.deny.basic.caatestsuite.comTests basic tree climbing, when CAA record exists at grandparent
*.deny.basic.caatestsuite.comTests proper application of issue property to a wildcard FQDN
*.deny-wild.basic.caatestsuite.comTests proper application of issuewild property to a wildcard FQDN
cname-deny.basic.caatestsuite.comTests proper processing of a CNAME, when CAA record exists at CNAME target
cname-cname-deny.basic.caatestsuite.comTests proper processing of a CNAME-to-a-CNAME, when CAA record exists at ultimate CNAME target
sub1.cname-deny.basic.caatestsuite.comTests proper processing of a CNAME, when parent is a CNAME and CAA record exists at CNAME target
deny.permit.basic.caatestsuite.comTests proper rejection when parent name (permit.basic.caatestsuite.com) contains a permissible CAA record set
ipv6only.caatestsuite.comTests proper processing of CAA record at an IPv6-only authoritative name server
expired.caatestsuite-dnssec.comTests rejection when there is no CAA record but the DNSSEC signatures are expired
missing.caatestsuite-dnssec.comTests rejection when there is no CAA record but the DNSSEC signatures are missing
blackhole.caatestsuite-dnssec.comTests rejection when there is a DNSSEC validation chain to a nonresponsive name server
servfail.caatestsuite-dnssec.comTests rejection when there is a DNSSEC validation chain to a name server returning SERVFAIL
refused.caatestsuite-dnssec.comTests rejection when there is a DNSSEC validation chain to a name server returning REFUSED
xss.caatestsuite.comTests rejection when the issue property contains HTML and JavaScript. Makes sure there are no XSS vulnerabilities in the CA's website.
159 | 160 |

Special Tests

161 | 162 |

163 | These tests only apply to some CAs. Check the description for details. 164 |

165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 |
FQDNTest Description
auto-www-san.caatestsuite.comAll CAs are allowed to issue for auto-www-san.caatestsuite.com, but only the CA caatestsuite.com is allowed to issue for www.auto-www-san.caatestsuite.com. This test makes sure CAA is checked for a SAN that is automatically added for the www sub-domain.
www.auto-base-san.caatestsuite.comAll CAs are allowed to issue for www.auto-base-san.caatestsuite.com, but only the CA caatestsuite.com is allowed to issue for auto-base-san.caatestsuite.com. This test makes sure CAA is checked for a SAN that is automatically added for the base domain.
181 | 182 |

Informational Tests

183 | 184 |

185 | Issuing for these FQDNs would technically be a misissuance by a strict reading of 186 | RFC 6844, but that may change in the near future (see test description for details): 187 |

188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 |
FQDNTest Description
dname-deny.basic.caatestsuite.comTests proper processing of a DNAME, when CAA record exists at DNAME target (note: this test would be modified by erratum 5097 to RFC 6844)
cname-deny-sub.basic.caatestsuite.comTests proper processing of a CNAME, when CAA record exists at parent of CNAME target (note: this test would be modified by erratum 5065 to RFC 6844)
204 | 205 |

Change Log

206 | 207 | 215 |
216 | 217 | 218 | -------------------------------------------------------------------------------- /zones/.gitignore: -------------------------------------------------------------------------------- 1 | /*.signed 2 | /dsset-* 3 | -------------------------------------------------------------------------------- /zones/Kblackhole.caatestsuite-dnssec.com.+005+04864.key: -------------------------------------------------------------------------------- 1 | ; This is a key-signing key, keyid 4864, for blackhole.caatestsuite-dnssec.com. 2 | ; Created: 20170831005523 (Wed Aug 30 17:55:23 2017) 3 | ; Publish: 20170831005523 (Wed Aug 30 17:55:23 2017) 4 | ; Activate: 20170831005523 (Wed Aug 30 17:55:23 2017) 5 | blackhole.caatestsuite-dnssec.com. IN DNSKEY 257 3 5 AwEAAehSz1PeEAIDZnlsU7HWDkAzz8epqQJmh7yjUnSXIJwlnrOXFpA4 eA216H7vsvYNqjiGLI/U1T86W9z8fFARgrE2NgqA8AY2i2mG2sROk3wU Whkx8lb6+9oouJFuK1JxTM5FrWvB+3CgNcvfdxZCNEjXu3llVFAwSSHG L4rElNRqvIjTAebNIaJvuFqDqd0z3qGr8IuAAjJRWHVZflDsil0A4UrO qAvZxlXOhcKb2DV1dU4tZvrVPTCD39JuOy880O62jckeUZLVynjx7x9h cUQ55+7OKoayGMy1qEdQSHiBrzO2WVQ/DqdBElU5o5vYqSEbecj0K+HA jVBxIe5dFos= 6 | -------------------------------------------------------------------------------- /zones/Kblackhole.caatestsuite-dnssec.com.+005+36765.key: -------------------------------------------------------------------------------- 1 | ; This is a zone-signing key, keyid 36765, for blackhole.caatestsuite-dnssec.com. 2 | ; Created: 20170831005518 (Wed Aug 30 17:55:18 2017) 3 | ; Publish: 20170831005518 (Wed Aug 30 17:55:18 2017) 4 | ; Activate: 20170831005518 (Wed Aug 30 17:55:18 2017) 5 | blackhole.caatestsuite-dnssec.com. IN DNSKEY 256 3 5 AwEAAeADESTnL9DhF1+kcN7Q4n0Y1jWTQ6YsNrSr1MPAePoOeMQyMSE3 cl2iNpCwNr4ySNbT4FHFSEHZvybN2jK3OQsiTsDyJaRy7yUBmzWvDt/c HgPaDNzGZ4NKsEhynfSC3YRhkVLkXrIzBfHL/jiF82QIsVECqyDiw2ol 7cPqpfJfM1vvqr+iijJgJfoB30FXHQlDQ5WFFN0xrTFd23VoYyryYT3c u/x9AFNEXs1F1mIHrO66yneF8PE6uZWH/cEHwbY8EwNcdDCjqtbkrTZR ax0KVzf6BKHyuxWnXOsDNlp82mogneZQq7l6yUJY4oWIAh2VhiehF9+l N+JoqQFDRw0= 6 | -------------------------------------------------------------------------------- /zones/Kcaatestsuite-dnssec.com.+005+58522.key: -------------------------------------------------------------------------------- 1 | ; This is a key-signing key, keyid 58522, for caatestsuite-dnssec.com. 2 | ; Created: 20170831005201 (Wed Aug 30 17:52:01 2017) 3 | ; Publish: 20170831005201 (Wed Aug 30 17:52:01 2017) 4 | ; Activate: 20170831005201 (Wed Aug 30 17:52:01 2017) 5 | caatestsuite-dnssec.com. IN DNSKEY 257 3 5 AwEAAbd6XjX6UrKA73sxlKw/nhl+62IHYsgbxfp/Dy27XA0uTV7Id5HM kcQh1APK+3vlWkvo9psQh6Jd2Faezc9gFgUa+ImFu3q1sJwiQCMbYGSh 4s4hpnLn7vBEmKr1yI2NGQ1pSpuDGcRmuufVr0YsSCh6+hnIPhblhwlL irO6j22zaf/LmNeUqdEh91rTKONRm5UH7aJLfprC+gBVmd/28J9PeB8r diLCzhijcWgDm/yiw5CoYYMjEtvsE7phkJPq3Vl/xWbvWqJvmfYJny9B 1oVkVEwS7khm3lLf4U4xEfDYhBPtalr6oaGaT0YaLOLk9fz5zHH2+e3l nz9kTonpvKk= 6 | -------------------------------------------------------------------------------- /zones/Kcaatestsuite-dnssec.com.+005+62745.key: -------------------------------------------------------------------------------- 1 | ; This is a zone-signing key, keyid 62745, for caatestsuite-dnssec.com. 2 | ; Created: 20170831005207 (Wed Aug 30 17:52:07 2017) 3 | ; Publish: 20170831005207 (Wed Aug 30 17:52:07 2017) 4 | ; Activate: 20170831005207 (Wed Aug 30 17:52:07 2017) 5 | caatestsuite-dnssec.com. IN DNSKEY 256 3 5 AwEAAavG+6phetnJ14o5V58EMWlXpj0az7BWjgo81I5KGVYBTKwIdc0h ZGwULAQzzl8JloDcDnNyGtXc4nMh9K47oW+bQzRu8yME4lmRficv6xdI yRtvQbt4WPHtnvoQaR2Wd8EdlBv8BeJxDsa/RRPSnTwjFwJfUueBiURF Mh8rOY2BwVrmG9UWOsZsy3rMKjYf2Wgj90BkEhl25D/miMJ1/zZsAfdn DUfifhufd07m1F7uudPPfaAU0/kA/njGCiaRNcGhLB41HNcbr6Yy8qpL jl3ReZIzp/XUy/O12Cx3mUrSxHoFg/dFWX2aICDMzeVsry7aKQdl5/Uy /IDdlaZC/vk= 6 | -------------------------------------------------------------------------------- /zones/Kexpired.caatestsuite-dnssec.com.+005+20931.key: -------------------------------------------------------------------------------- 1 | ; This is a zone-signing key, keyid 20931, for expired.caatestsuite-dnssec.com. 2 | ; Created: 20170831005442 (Wed Aug 30 17:54:42 2017) 3 | ; Publish: 20170831005442 (Wed Aug 30 17:54:42 2017) 4 | ; Activate: 20170831005442 (Wed Aug 30 17:54:42 2017) 5 | expired.caatestsuite-dnssec.com. IN DNSKEY 256 3 5 AwEAAb8lEiKX6uT/+o6q54rbq/Q8y/jleaN1PXAnvqjLIIFpsg6vXkXO guGY2o5OCW2hPLZ7OLXxT4TRwNnLLUCg5cJ8ego0R/L1PB/keXNmsod3 QxNvkn6R45ro7jjARVutSuviBsz74kqcKbQev3bSQAtqz2nblmfe6JwQ h8s7I83kk2ZpfnEgpk68STm0nfaJ/DoKZq1KQHEfeVkRrTfY+89iz2V/ ru2uYWToZUOie61rGKi50S2zC0uuggspkgEjwfMuUZLJ9HOVc6Q2SR7n 9Vh0FfG6Fp2sxGbK5Hna32dqPo4Q0HOb0YZynLU6ORn8GwtqvRsTyQzb OVPX23/b3iU= 6 | -------------------------------------------------------------------------------- /zones/Kexpired.caatestsuite-dnssec.com.+005+54799.key: -------------------------------------------------------------------------------- 1 | ; This is a key-signing key, keyid 54799, for expired.caatestsuite-dnssec.com. 2 | ; Created: 20170831005448 (Wed Aug 30 17:54:48 2017) 3 | ; Publish: 20170831005448 (Wed Aug 30 17:54:48 2017) 4 | ; Activate: 20170831005448 (Wed Aug 30 17:54:48 2017) 5 | expired.caatestsuite-dnssec.com. IN DNSKEY 257 3 5 AwEAAbAACtBCxlX3yEVjb+LWeuyVkuQfXfatir8PelDikmCtIiaIFpC3 JLJKjqblf/aLWLDVQADVp2ZnWGtOodLCdKtCHcQgxORkn+nymXB+FOyT 04VVXYLmvC19ZU28RMJy5FhtK4c+LJrRvDb9SJMmu+2yR2PRHZkxwFsu 7yv7h19i2hou8Xd8AmMlEO/7Yb3gy5Lq5gts5vOUdTGQHTZeqNeHf4wI n7vnfgD3shHaH3xKTrUAeVKmu8GIqnnokeJUm0JeqKWHhJfQJM27HBD3 ASfGixjymt7YJxmBVqXLnxxzWxKAM8znqbYsA7jgSgzB4jxBqa7aH+rk tws8GS1CxxE= 6 | -------------------------------------------------------------------------------- /zones/Kmissing.caatestsuite-dnssec.com.+005+25092.key: -------------------------------------------------------------------------------- 1 | ; This is a zone-signing key, keyid 25092, for missing.caatestsuite-dnssec.com. 2 | ; Created: 20170831005455 (Wed Aug 30 17:54:55 2017) 3 | ; Publish: 20170831005455 (Wed Aug 30 17:54:55 2017) 4 | ; Activate: 20170831005455 (Wed Aug 30 17:54:55 2017) 5 | missing.caatestsuite-dnssec.com. IN DNSKEY 256 3 5 AwEAAcWuXaPiPgzI8H+HHXXtnDq9N9cbuEwem6rxqXhrRm80yV4S+wk0 ifAoFWJQzBuucuV5wHBJmHQoTCAX69CRhUgzzRXH/edXxUed8yj3ETF9 G0xcqqSvZXxsgF06biIpt0CkbuW3nJl0cBgkKK2wwJozmzACR5Fmm/D+ 5x6EZ4Jk7K4/B/i6LN+hNbrJzprZZ2PUqCLqEUzI9TKw/DFY5QzaKc9K PDI7rI904FyCKu4ssXqO9R5BtRqD49yjIVvUP/Q+E7CoVwZg7zbfNXdt DBzYcyVI2vZMLxN+xsFlObbseywq7IBB6mOQDOxODnxCysnZysra7S/7 MqV1ljtDcx0= 6 | -------------------------------------------------------------------------------- /zones/Kmissing.caatestsuite-dnssec.com.+005+61357.key: -------------------------------------------------------------------------------- 1 | ; This is a key-signing key, keyid 61357, for missing.caatestsuite-dnssec.com. 2 | ; Created: 20170831005459 (Wed Aug 30 17:54:59 2017) 3 | ; Publish: 20170831005459 (Wed Aug 30 17:54:59 2017) 4 | ; Activate: 20170831005459 (Wed Aug 30 17:54:59 2017) 5 | missing.caatestsuite-dnssec.com. IN DNSKEY 257 3 5 AwEAAeR8DIG98SkoeiH6ny1yJtefLJrI45uU3d/R3o5hKjcR2AA9SIga woFKLgz8m5vTEhobHEXIL8aMU2bvjiN89eaBoshfw+rA5fYw0t2uq2K5 Np8EhxCs+oIKKtfARR+vyKdSF4EZ6WcIHoPTIcd5DGtdPMGKfM4+n9Wt Zk7NW2sFUuPsIR/E8gcXGqf3c/UznxqqZqQK1InTd+/+nencMvf41kxr w11iH+o2Nh4D0FouJVTgCmWyOleuyBwAYGCHgzQQEVHoTbnLf6E24pE0 GzIT2Vn55avWD8cp44AKk0yyIPiLpuTIZfUliSkgPEQZd62M9QIusMnE vL0sOaFzA+k= 6 | -------------------------------------------------------------------------------- /zones/Krefused.caatestsuite-dnssec.com.+005+02973.key: -------------------------------------------------------------------------------- 1 | ; This is a zone-signing key, keyid 2973, for refused.caatestsuite-dnssec.com. 2 | ; Created: 20170901163419 (Fri Sep 1 09:34:19 2017) 3 | ; Publish: 20170901163419 (Fri Sep 1 09:34:19 2017) 4 | ; Activate: 20170901163419 (Fri Sep 1 09:34:19 2017) 5 | refused.caatestsuite-dnssec.com. IN DNSKEY 256 3 5 AwEAAaosAohIwN3s+25e90PHmaKYXnWdOAdwaFVmcnUa7l9GtQNXuNuZ n229XpCqyV4Rfmg86yXF7athjTPjlO/dsbjoRPac/q76ofSicYy0l/QK Dv7dfgOHLy0uAUQ9Y+7VrxHMqLTlaEsLkfcBtHNPqCk/kAIyyWyC1kmm ZjbEpBMWyTDFjSTaMzr+BZzwQguR0hKXprSWQ5CS8K4tPjmU381pfpCU rD713LBog5wXnuKra7e4J68Ez9CmhakHx+RLs+fcwbqFqLnrfmeoziLj 1np9qtm5+NHispfg7mXohwuR/fC7SynNNkG+yjcESad5H4CPXOLi0qGf LP6Vum+/vK0= 6 | -------------------------------------------------------------------------------- /zones/Krefused.caatestsuite-dnssec.com.+005+63016.key: -------------------------------------------------------------------------------- 1 | ; This is a key-signing key, keyid 63016, for refused.caatestsuite-dnssec.com. 2 | ; Created: 20170901163422 (Fri Sep 1 09:34:22 2017) 3 | ; Publish: 20170901163422 (Fri Sep 1 09:34:22 2017) 4 | ; Activate: 20170901163422 (Fri Sep 1 09:34:22 2017) 5 | refused.caatestsuite-dnssec.com. IN DNSKEY 257 3 5 AwEAAcStu+049QVTJQWN//lewT4ncKB+TFvWhcDHnu27HAubFoUXU2PT ReMWNhdo84Zx9+Q51slmNf5SrJQr6siRrCa+9kic2l2jGAWISgdb9xir yq02mOYubPuPE1zUxgUUtHu5uSFCqXw/RI7AV8yfXpGqRnlilnXoAU0S ZFZMKQeHECqhccMx23ljbHvauHFrILeJI9NVGdRE6C0Tk4YLSGZy6tgu zuXk1dg6PfngGHCRXnI2KAulgLAZZrvt+T2sxaPzzLmxPOKBuTmLafW3 kK46xy3LUl/ibbHW4whItYEMXVPt/tqmNm5BSP8hYlrW4A2bnv6vDhYl hwpNaOQHurc= 6 | -------------------------------------------------------------------------------- /zones/Kservfail.caatestsuite-dnssec.com.+005+54072.key: -------------------------------------------------------------------------------- 1 | ; This is a zone-signing key, keyid 54072, for servfail.caatestsuite-dnssec.com. 2 | ; Created: 20170901163407 (Fri Sep 1 09:34:07 2017) 3 | ; Publish: 20170901163407 (Fri Sep 1 09:34:07 2017) 4 | ; Activate: 20170901163407 (Fri Sep 1 09:34:07 2017) 5 | servfail.caatestsuite-dnssec.com. IN DNSKEY 256 3 5 AwEAAakA5WimmB+7IsNbEw67u0qCcFAMepKJDoCushFuj1WANWYDgP+P maWuOD/9b6lZQMubtvuzlzz66wdzzMz1iyrTVWMd2/AevYMD+T7tK0fx sGtaS99ooQp2034/1CQrZ8CtZ/GrvD+P5IzCMqT9yS/dQtk86M6qMJuS /hqrZMyl7CbdmfKS3TRCQUtjS+mk31monbJVhbiQU8qGnRLuCWKWQ+P0 znD8PZXv7QzX2mfRYic/Bv/oEHnV9DP48AfzUzNk7HufqmEju86S170j PrMb5VPjfNTby9XkjkDzo7szHiRsHMYzP0IfAN7JvXB0XivncSjwgVvs 42+ccOSruoM= 6 | -------------------------------------------------------------------------------- /zones/Kservfail.caatestsuite-dnssec.com.+005+58627.key: -------------------------------------------------------------------------------- 1 | ; This is a key-signing key, keyid 58627, for servfail.caatestsuite-dnssec.com. 2 | ; Created: 20170901163415 (Fri Sep 1 09:34:15 2017) 3 | ; Publish: 20170901163415 (Fri Sep 1 09:34:15 2017) 4 | ; Activate: 20170901163415 (Fri Sep 1 09:34:15 2017) 5 | servfail.caatestsuite-dnssec.com. IN DNSKEY 257 3 5 AwEAAbsSenL2QJk5tU74TIphsyifUJ5aTfYDTur9rxUkqq/NuQm+mIMV ubAVO/PEBMrIs0RBiNTXwTuyIyWxho4YLUK6b6T5WmNRhQcHuQhm+UwT lczhu9xJqdrvaUqkM7vP6WJVEfl4gJLfojVepZen1Xgi2tROkxIkHb7H yyaiAkfcvAfJ2xGptXQaJMCJPqXNb8/96X7nOJeNcfDI9ZUAoC68+jfp ZH3dGOlhTPOGk3opgmqSUe52pYTtuPAJRizXPOgBMM2VqYxTD7rjgPWW L7KJhF48xezqkcN6jDkbRAxYj2A3eYWCyNeKhNh0/J6n7gJsR+5W1iaG BfejX95ZrrU= 6 | -------------------------------------------------------------------------------- /zones/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2017 Opsmate, Inc. 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | all: missing.caatestsuite-dnssec.com.signed expired.caatestsuite-dnssec.com.signed caatestsuite-dnssec.com.signed 16 | 17 | missing.caatestsuite-dnssec.com.signed: missing.caatestsuite-dnssec.com. 18 | named-checkzone -o $@ missing.caatestsuite-dnssec.com. missing.caatestsuite-dnssec.com. 19 | 20 | expired.caatestsuite-dnssec.com.signed: expired.caatestsuite-dnssec.com. 21 | dnssec-signzone -f $@ -e now+30 -k Kexpired.caatestsuite-dnssec.com.+005+54799.key expired.caatestsuite-dnssec.com. Kexpired.caatestsuite-dnssec.com.+005+20931.key 22 | 23 | caatestsuite-dnssec.com.signed: caatestsuite-dnssec.com. 24 | dnssec-signzone -f $@ -e 20320530144500 -k Kcaatestsuite-dnssec.com.+005+58522.key caatestsuite-dnssec.com. Kcaatestsuite-dnssec.com.+005+62745.key 25 | 26 | clean: 27 | rm -f *.signed dsset-* 28 | -------------------------------------------------------------------------------- /zones/caatestsuite-dnssec.com.: -------------------------------------------------------------------------------- 1 | ; Copyright 2017 Opsmate, Inc. 2 | ; 3 | ; Licensed under the Apache License, Version 2.0 (the "License"); 4 | ; you may not use this file except in compliance with the License. 5 | ; You may obtain a copy of the License at 6 | ; 7 | ; http://www.apache.org/licenses/LICENSE-2.0 8 | ; 9 | ; Unless required by applicable law or agreed to in writing, software 10 | ; distributed under the License is distributed on an "AS IS" BASIS, 11 | ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | ; See the License for the specific language governing permissions and 13 | ; limitations under the License. 14 | 15 | $TTL 1m 16 | @ IN SOA ns0.caatestsuite-dnssec.com. hostmaster.caatestsuite-dnssec.com. ( 17 | 1 ; serial 18 | 43200 ; refresh 19 | 600 ; retry 20 | 1209600 ; expire 21 | 60 ; minimum 22 | ) 23 | 24 | ; NS records 25 | @ IN NS ns0 26 | @ IN NS ns1 27 | 28 | ; MX records 29 | @ IN MX 10 mail.opsmate.com. 30 | 31 | ns0 IN A 45.79.179.40 32 | ns1 IN A 45.79.179.40 33 | nsblackhole IN A 97.107.135.226 34 | nsrefused IN A 128.148.32.121 35 | 36 | expired IN NS ns0 37 | expired IN NS ns1 38 | expired IN DS 54799 5 1 869ED8F574B654CC8077846F086D73F0FF0DFE24 39 | expired IN DS 54799 5 2 4289C53FCAEE7069FE70849DFF4F02C1FA4EC6BE63216E469E3A42A4C8E5E197 40 | 41 | missing IN NS ns0 42 | missing IN NS ns1 43 | missing IN DS 61357 5 1 2DE87B6EBD4DD61F46C38FD824728A60157EDABF 44 | missing IN DS 61357 5 2 BDA1E1E5330C9060A504E80DD30C4AAF2BE8F0C9A117F0276D436187C24BF9B3 45 | 46 | blackhole IN NS nsblackhole 47 | blackhole IN DS 4864 5 1 71EE24232CA85BFBC2179D156C075196963D9549 48 | blackhole IN DS 4864 5 2 A16609A20310594E6A609B2F39D34F95BCCB513D776344A7602BF5943AA60658 49 | 50 | refused IN NS nsrefused 51 | refused IN DS 63016 5 1 A4E5F6421441E881B69961D1157C1851C579D9BF 52 | refused IN DS 63016 5 2 29B0BF92DF990BA71A5ED19ED484AD29CB5DF037CC0B11FACA2F3A384C0CA4CF 53 | 54 | servfail IN NS ns0 55 | servfail IN NS ns1 56 | servfail IN DS 58627 5 1 15257A91D2A271D4FFAEBDCBBC9D11226F284161 57 | servfail IN DS 58627 5 2 516C31C125B99494F8AFA3959F12A2C2D566FFF96AF714E13EE77413CC3BD9FF 58 | 59 | $INCLUDE Kcaatestsuite-dnssec.com.+005+58522.key 60 | $INCLUDE Kcaatestsuite-dnssec.com.+005+62745.key 61 | -------------------------------------------------------------------------------- /zones/caatestsuite.com.: -------------------------------------------------------------------------------- 1 | ; Copyright 2017 Opsmate, Inc. 2 | ; 3 | ; Licensed under the Apache License, Version 2.0 (the "License"); 4 | ; you may not use this file except in compliance with the License. 5 | ; You may obtain a copy of the License at 6 | ; 7 | ; http://www.apache.org/licenses/LICENSE-2.0 8 | ; 9 | ; Unless required by applicable law or agreed to in writing, software 10 | ; distributed under the License is distributed on an "AS IS" BASIS, 11 | ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | ; See the License for the specific language governing permissions and 13 | ; limitations under the License. 14 | 15 | $TTL 1m 16 | @ IN SOA ns0.caatestsuite.com. hostmaster.caatestsuite.com. ( 17 | 1 ; serial 18 | 43200 ; refresh 19 | 600 ; retry 20 | 1209600 ; expire 21 | 60 ; minimum 22 | ) 23 | 24 | ; NS records 25 | @ IN NS ns0 26 | @ IN NS ns1 27 | 28 | ; MX records 29 | @ IN MX 10 mail.opsmate.com. 30 | 31 | @ IN A 54.83.199.30 32 | @ IN AAAA 2600:1f18:2469:d900:203b:729e:2e54:8c43 33 | 34 | ns0 IN A 45.79.179.40 35 | ns1 IN A 45.79.179.40 36 | nsipv6 IN AAAA 2600:3c03:e000:45f:: 37 | ;nsgo IN A 38 | 39 | 40 | empty.basic IN CAA 0 issue ";" 41 | deny.basic IN CAA 0 issue "caatestsuite.com" 42 | uppercase-deny.basic IN CAA 0 ISSUE "caatestsuite.com" 43 | mixedcase-deny.basic IN CAA 0 IsSuE "caatestsuite.com" 44 | big.basic IN CAA 0 t0 "test" 45 | big.basic IN CAA 0 t1 "test" 46 | big.basic IN CAA 0 t2 "test" 47 | big.basic IN CAA 0 t3 "test" 48 | big.basic IN CAA 0 t4 "test" 49 | big.basic IN CAA 0 t5 "test" 50 | big.basic IN CAA 0 t6 "test" 51 | big.basic IN CAA 0 t7 "test" 52 | big.basic IN CAA 0 t8 "test" 53 | big.basic IN CAA 0 t9 "test" 54 | big.basic IN CAA 0 t10 "test" 55 | big.basic IN CAA 0 t11 "test" 56 | big.basic IN CAA 0 t12 "test" 57 | big.basic IN CAA 0 t13 "test" 58 | big.basic IN CAA 0 t14 "test" 59 | big.basic IN CAA 0 t15 "test" 60 | big.basic IN CAA 0 t16 "test" 61 | big.basic IN CAA 0 t17 "test" 62 | big.basic IN CAA 0 t18 "test" 63 | big.basic IN CAA 0 t19 "test" 64 | big.basic IN CAA 0 t20 "test" 65 | big.basic IN CAA 0 t21 "test" 66 | big.basic IN CAA 0 t22 "test" 67 | big.basic IN CAA 0 t23 "test" 68 | big.basic IN CAA 0 t24 "test" 69 | big.basic IN CAA 0 t25 "test" 70 | big.basic IN CAA 0 t26 "test" 71 | big.basic IN CAA 0 t27 "test" 72 | big.basic IN CAA 0 t28 "test" 73 | big.basic IN CAA 0 t29 "test" 74 | big.basic IN CAA 0 t30 "test" 75 | big.basic IN CAA 0 t31 "test" 76 | big.basic IN CAA 0 t32 "test" 77 | big.basic IN CAA 0 t33 "test" 78 | big.basic IN CAA 0 t34 "test" 79 | big.basic IN CAA 0 t35 "test" 80 | big.basic IN CAA 0 t36 "test" 81 | big.basic IN CAA 0 t37 "test" 82 | big.basic IN CAA 0 t38 "test" 83 | big.basic IN CAA 0 t39 "test" 84 | big.basic IN CAA 0 t40 "test" 85 | big.basic IN CAA 0 t41 "test" 86 | big.basic IN CAA 0 t42 "test" 87 | big.basic IN CAA 0 t43 "test" 88 | big.basic IN CAA 0 t44 "test" 89 | big.basic IN CAA 0 t45 "test" 90 | big.basic IN CAA 0 t46 "test" 91 | big.basic IN CAA 0 t47 "test" 92 | big.basic IN CAA 0 t48 "test" 93 | big.basic IN CAA 0 t49 "test" 94 | big.basic IN CAA 0 t50 "test" 95 | big.basic IN CAA 0 t51 "test" 96 | big.basic IN CAA 0 t52 "test" 97 | big.basic IN CAA 0 t53 "test" 98 | big.basic IN CAA 0 t54 "test" 99 | big.basic IN CAA 0 t55 "test" 100 | big.basic IN CAA 0 t56 "test" 101 | big.basic IN CAA 0 t57 "test" 102 | big.basic IN CAA 0 t58 "test" 103 | big.basic IN CAA 0 t59 "test" 104 | big.basic IN CAA 0 t60 "test" 105 | big.basic IN CAA 0 t61 "test" 106 | big.basic IN CAA 0 t62 "test" 107 | big.basic IN CAA 0 t63 "test" 108 | big.basic IN CAA 0 t64 "test" 109 | big.basic IN CAA 0 t65 "test" 110 | big.basic IN CAA 0 t66 "test" 111 | big.basic IN CAA 0 t67 "test" 112 | big.basic IN CAA 0 t68 "test" 113 | big.basic IN CAA 0 t69 "test" 114 | big.basic IN CAA 0 t70 "test" 115 | big.basic IN CAA 0 t71 "test" 116 | big.basic IN CAA 0 t72 "test" 117 | big.basic IN CAA 0 t73 "test" 118 | big.basic IN CAA 0 t74 "test" 119 | big.basic IN CAA 0 t75 "test" 120 | big.basic IN CAA 0 t76 "test" 121 | big.basic IN CAA 0 t77 "test" 122 | big.basic IN CAA 0 t78 "test" 123 | big.basic IN CAA 0 t79 "test" 124 | big.basic IN CAA 0 t80 "test" 125 | big.basic IN CAA 0 t81 "test" 126 | big.basic IN CAA 0 t82 "test" 127 | big.basic IN CAA 0 t83 "test" 128 | big.basic IN CAA 0 t84 "test" 129 | big.basic IN CAA 0 t85 "test" 130 | big.basic IN CAA 0 t86 "test" 131 | big.basic IN CAA 0 t87 "test" 132 | big.basic IN CAA 0 t88 "test" 133 | big.basic IN CAA 0 t89 "test" 134 | big.basic IN CAA 0 t90 "test" 135 | big.basic IN CAA 0 t91 "test" 136 | big.basic IN CAA 0 t92 "test" 137 | big.basic IN CAA 0 t93 "test" 138 | big.basic IN CAA 0 t94 "test" 139 | big.basic IN CAA 0 t95 "test" 140 | big.basic IN CAA 0 t96 "test" 141 | big.basic IN CAA 0 t97 "test" 142 | big.basic IN CAA 0 t98 "test" 143 | big.basic IN CAA 0 t99 "test" 144 | big.basic IN CAA 0 t100 "test" 145 | big.basic IN CAA 0 t101 "test" 146 | big.basic IN CAA 0 t102 "test" 147 | big.basic IN CAA 0 t103 "test" 148 | big.basic IN CAA 0 t104 "test" 149 | big.basic IN CAA 0 t105 "test" 150 | big.basic IN CAA 0 t106 "test" 151 | big.basic IN CAA 0 t107 "test" 152 | big.basic IN CAA 0 t108 "test" 153 | big.basic IN CAA 0 t109 "test" 154 | big.basic IN CAA 0 t110 "test" 155 | big.basic IN CAA 0 t111 "test" 156 | big.basic IN CAA 0 t112 "test" 157 | big.basic IN CAA 0 t113 "test" 158 | big.basic IN CAA 0 t114 "test" 159 | big.basic IN CAA 0 t115 "test" 160 | big.basic IN CAA 0 t116 "test" 161 | big.basic IN CAA 0 t117 "test" 162 | big.basic IN CAA 0 t118 "test" 163 | big.basic IN CAA 0 t119 "test" 164 | big.basic IN CAA 0 t120 "test" 165 | big.basic IN CAA 0 t121 "test" 166 | big.basic IN CAA 0 t122 "test" 167 | big.basic IN CAA 0 t123 "test" 168 | big.basic IN CAA 0 t124 "test" 169 | big.basic IN CAA 0 t125 "test" 170 | big.basic IN CAA 0 t126 "test" 171 | big.basic IN CAA 0 t127 "test" 172 | big.basic IN CAA 0 t128 "test" 173 | big.basic IN CAA 0 t129 "test" 174 | big.basic IN CAA 0 t130 "test" 175 | big.basic IN CAA 0 t131 "test" 176 | big.basic IN CAA 0 t132 "test" 177 | big.basic IN CAA 0 t133 "test" 178 | big.basic IN CAA 0 t134 "test" 179 | big.basic IN CAA 0 t135 "test" 180 | big.basic IN CAA 0 t136 "test" 181 | big.basic IN CAA 0 t137 "test" 182 | big.basic IN CAA 0 t138 "test" 183 | big.basic IN CAA 0 t139 "test" 184 | big.basic IN CAA 0 t140 "test" 185 | big.basic IN CAA 0 t141 "test" 186 | big.basic IN CAA 0 t142 "test" 187 | big.basic IN CAA 0 t143 "test" 188 | big.basic IN CAA 0 t144 "test" 189 | big.basic IN CAA 0 t145 "test" 190 | big.basic IN CAA 0 t146 "test" 191 | big.basic IN CAA 0 t147 "test" 192 | big.basic IN CAA 0 t148 "test" 193 | big.basic IN CAA 0 t149 "test" 194 | big.basic IN CAA 0 t150 "test" 195 | big.basic IN CAA 0 t151 "test" 196 | big.basic IN CAA 0 t152 "test" 197 | big.basic IN CAA 0 t153 "test" 198 | big.basic IN CAA 0 t154 "test" 199 | big.basic IN CAA 0 t155 "test" 200 | big.basic IN CAA 0 t156 "test" 201 | big.basic IN CAA 0 t157 "test" 202 | big.basic IN CAA 0 t158 "test" 203 | big.basic IN CAA 0 t159 "test" 204 | big.basic IN CAA 0 t160 "test" 205 | big.basic IN CAA 0 t161 "test" 206 | big.basic IN CAA 0 t162 "test" 207 | big.basic IN CAA 0 t163 "test" 208 | big.basic IN CAA 0 t164 "test" 209 | big.basic IN CAA 0 t165 "test" 210 | big.basic IN CAA 0 t166 "test" 211 | big.basic IN CAA 0 t167 "test" 212 | big.basic IN CAA 0 t168 "test" 213 | big.basic IN CAA 0 t169 "test" 214 | big.basic IN CAA 0 t170 "test" 215 | big.basic IN CAA 0 t171 "test" 216 | big.basic IN CAA 0 t172 "test" 217 | big.basic IN CAA 0 t173 "test" 218 | big.basic IN CAA 0 t174 "test" 219 | big.basic IN CAA 0 t175 "test" 220 | big.basic IN CAA 0 t176 "test" 221 | big.basic IN CAA 0 t177 "test" 222 | big.basic IN CAA 0 t178 "test" 223 | big.basic IN CAA 0 t179 "test" 224 | big.basic IN CAA 0 t180 "test" 225 | big.basic IN CAA 0 t181 "test" 226 | big.basic IN CAA 0 t182 "test" 227 | big.basic IN CAA 0 t183 "test" 228 | big.basic IN CAA 0 t184 "test" 229 | big.basic IN CAA 0 t185 "test" 230 | big.basic IN CAA 0 t186 "test" 231 | big.basic IN CAA 0 t187 "test" 232 | big.basic IN CAA 0 t188 "test" 233 | big.basic IN CAA 0 t189 "test" 234 | big.basic IN CAA 0 t190 "test" 235 | big.basic IN CAA 0 t191 "test" 236 | big.basic IN CAA 0 t192 "test" 237 | big.basic IN CAA 0 t193 "test" 238 | big.basic IN CAA 0 t194 "test" 239 | big.basic IN CAA 0 t195 "test" 240 | big.basic IN CAA 0 t196 "test" 241 | big.basic IN CAA 0 t197 "test" 242 | big.basic IN CAA 0 t198 "test" 243 | big.basic IN CAA 0 t199 "test" 244 | big.basic IN CAA 0 t200 "test" 245 | big.basic IN CAA 0 t201 "test" 246 | big.basic IN CAA 0 t202 "test" 247 | big.basic IN CAA 0 t203 "test" 248 | big.basic IN CAA 0 t204 "test" 249 | big.basic IN CAA 0 t205 "test" 250 | big.basic IN CAA 0 t206 "test" 251 | big.basic IN CAA 0 t207 "test" 252 | big.basic IN CAA 0 t208 "test" 253 | big.basic IN CAA 0 t209 "test" 254 | big.basic IN CAA 0 t210 "test" 255 | big.basic IN CAA 0 t211 "test" 256 | big.basic IN CAA 0 t212 "test" 257 | big.basic IN CAA 0 t213 "test" 258 | big.basic IN CAA 0 t214 "test" 259 | big.basic IN CAA 0 t215 "test" 260 | big.basic IN CAA 0 t216 "test" 261 | big.basic IN CAA 0 t217 "test" 262 | big.basic IN CAA 0 t218 "test" 263 | big.basic IN CAA 0 t219 "test" 264 | big.basic IN CAA 0 t220 "test" 265 | big.basic IN CAA 0 t221 "test" 266 | big.basic IN CAA 0 t222 "test" 267 | big.basic IN CAA 0 t223 "test" 268 | big.basic IN CAA 0 t224 "test" 269 | big.basic IN CAA 0 t225 "test" 270 | big.basic IN CAA 0 t226 "test" 271 | big.basic IN CAA 0 t227 "test" 272 | big.basic IN CAA 0 t228 "test" 273 | big.basic IN CAA 0 t229 "test" 274 | big.basic IN CAA 0 t230 "test" 275 | big.basic IN CAA 0 t231 "test" 276 | big.basic IN CAA 0 t232 "test" 277 | big.basic IN CAA 0 t233 "test" 278 | big.basic IN CAA 0 t234 "test" 279 | big.basic IN CAA 0 t235 "test" 280 | big.basic IN CAA 0 t236 "test" 281 | big.basic IN CAA 0 t237 "test" 282 | big.basic IN CAA 0 t238 "test" 283 | big.basic IN CAA 0 t239 "test" 284 | big.basic IN CAA 0 t240 "test" 285 | big.basic IN CAA 0 t241 "test" 286 | big.basic IN CAA 0 t242 "test" 287 | big.basic IN CAA 0 t243 "test" 288 | big.basic IN CAA 0 t244 "test" 289 | big.basic IN CAA 0 t245 "test" 290 | big.basic IN CAA 0 t246 "test" 291 | big.basic IN CAA 0 t247 "test" 292 | big.basic IN CAA 0 t248 "test" 293 | big.basic IN CAA 0 t249 "test" 294 | big.basic IN CAA 0 t250 "test" 295 | big.basic IN CAA 0 t251 "test" 296 | big.basic IN CAA 0 t252 "test" 297 | big.basic IN CAA 0 t253 "test" 298 | big.basic IN CAA 0 t254 "test" 299 | big.basic IN CAA 0 t255 "test" 300 | big.basic IN CAA 0 t256 "test" 301 | big.basic IN CAA 0 t257 "test" 302 | big.basic IN CAA 0 t258 "test" 303 | big.basic IN CAA 0 t259 "test" 304 | big.basic IN CAA 0 t260 "test" 305 | big.basic IN CAA 0 t261 "test" 306 | big.basic IN CAA 0 t262 "test" 307 | big.basic IN CAA 0 t263 "test" 308 | big.basic IN CAA 0 t264 "test" 309 | big.basic IN CAA 0 t265 "test" 310 | big.basic IN CAA 0 t266 "test" 311 | big.basic IN CAA 0 t267 "test" 312 | big.basic IN CAA 0 t268 "test" 313 | big.basic IN CAA 0 t269 "test" 314 | big.basic IN CAA 0 t270 "test" 315 | big.basic IN CAA 0 t271 "test" 316 | big.basic IN CAA 0 t272 "test" 317 | big.basic IN CAA 0 t273 "test" 318 | big.basic IN CAA 0 t274 "test" 319 | big.basic IN CAA 0 t275 "test" 320 | big.basic IN CAA 0 t276 "test" 321 | big.basic IN CAA 0 t277 "test" 322 | big.basic IN CAA 0 t278 "test" 323 | big.basic IN CAA 0 t279 "test" 324 | big.basic IN CAA 0 t280 "test" 325 | big.basic IN CAA 0 t281 "test" 326 | big.basic IN CAA 0 t282 "test" 327 | big.basic IN CAA 0 t283 "test" 328 | big.basic IN CAA 0 t284 "test" 329 | big.basic IN CAA 0 t285 "test" 330 | big.basic IN CAA 0 t286 "test" 331 | big.basic IN CAA 0 t287 "test" 332 | big.basic IN CAA 0 t288 "test" 333 | big.basic IN CAA 0 t289 "test" 334 | big.basic IN CAA 0 t290 "test" 335 | big.basic IN CAA 0 t291 "test" 336 | big.basic IN CAA 0 t292 "test" 337 | big.basic IN CAA 0 t293 "test" 338 | big.basic IN CAA 0 t294 "test" 339 | big.basic IN CAA 0 t295 "test" 340 | big.basic IN CAA 0 t296 "test" 341 | big.basic IN CAA 0 t297 "test" 342 | big.basic IN CAA 0 t298 "test" 343 | big.basic IN CAA 0 t299 "test" 344 | big.basic IN CAA 0 t300 "test" 345 | big.basic IN CAA 0 t301 "test" 346 | big.basic IN CAA 0 t302 "test" 347 | big.basic IN CAA 0 t303 "test" 348 | big.basic IN CAA 0 t304 "test" 349 | big.basic IN CAA 0 t305 "test" 350 | big.basic IN CAA 0 t306 "test" 351 | big.basic IN CAA 0 t307 "test" 352 | big.basic IN CAA 0 t308 "test" 353 | big.basic IN CAA 0 t309 "test" 354 | big.basic IN CAA 0 t310 "test" 355 | big.basic IN CAA 0 t311 "test" 356 | big.basic IN CAA 0 t312 "test" 357 | big.basic IN CAA 0 t313 "test" 358 | big.basic IN CAA 0 t314 "test" 359 | big.basic IN CAA 0 t315 "test" 360 | big.basic IN CAA 0 t316 "test" 361 | big.basic IN CAA 0 t317 "test" 362 | big.basic IN CAA 0 t318 "test" 363 | big.basic IN CAA 0 t319 "test" 364 | big.basic IN CAA 0 t320 "test" 365 | big.basic IN CAA 0 t321 "test" 366 | big.basic IN CAA 0 t322 "test" 367 | big.basic IN CAA 0 t323 "test" 368 | big.basic IN CAA 0 t324 "test" 369 | big.basic IN CAA 0 t325 "test" 370 | big.basic IN CAA 0 t326 "test" 371 | big.basic IN CAA 0 t327 "test" 372 | big.basic IN CAA 0 t328 "test" 373 | big.basic IN CAA 0 t329 "test" 374 | big.basic IN CAA 0 t330 "test" 375 | big.basic IN CAA 0 t331 "test" 376 | big.basic IN CAA 0 t332 "test" 377 | big.basic IN CAA 0 t333 "test" 378 | big.basic IN CAA 0 t334 "test" 379 | big.basic IN CAA 0 t335 "test" 380 | big.basic IN CAA 0 t336 "test" 381 | big.basic IN CAA 0 t337 "test" 382 | big.basic IN CAA 0 t338 "test" 383 | big.basic IN CAA 0 t339 "test" 384 | big.basic IN CAA 0 t340 "test" 385 | big.basic IN CAA 0 t341 "test" 386 | big.basic IN CAA 0 t342 "test" 387 | big.basic IN CAA 0 t343 "test" 388 | big.basic IN CAA 0 t344 "test" 389 | big.basic IN CAA 0 t345 "test" 390 | big.basic IN CAA 0 t346 "test" 391 | big.basic IN CAA 0 t347 "test" 392 | big.basic IN CAA 0 t348 "test" 393 | big.basic IN CAA 0 t349 "test" 394 | big.basic IN CAA 0 t350 "test" 395 | big.basic IN CAA 0 t351 "test" 396 | big.basic IN CAA 0 t352 "test" 397 | big.basic IN CAA 0 t353 "test" 398 | big.basic IN CAA 0 t354 "test" 399 | big.basic IN CAA 0 t355 "test" 400 | big.basic IN CAA 0 t356 "test" 401 | big.basic IN CAA 0 t357 "test" 402 | big.basic IN CAA 0 t358 "test" 403 | big.basic IN CAA 0 t359 "test" 404 | big.basic IN CAA 0 t360 "test" 405 | big.basic IN CAA 0 t361 "test" 406 | big.basic IN CAA 0 t362 "test" 407 | big.basic IN CAA 0 t363 "test" 408 | big.basic IN CAA 0 t364 "test" 409 | big.basic IN CAA 0 t365 "test" 410 | big.basic IN CAA 0 t366 "test" 411 | big.basic IN CAA 0 t367 "test" 412 | big.basic IN CAA 0 t368 "test" 413 | big.basic IN CAA 0 t369 "test" 414 | big.basic IN CAA 0 t370 "test" 415 | big.basic IN CAA 0 t371 "test" 416 | big.basic IN CAA 0 t372 "test" 417 | big.basic IN CAA 0 t373 "test" 418 | big.basic IN CAA 0 t374 "test" 419 | big.basic IN CAA 0 t375 "test" 420 | big.basic IN CAA 0 t376 "test" 421 | big.basic IN CAA 0 t377 "test" 422 | big.basic IN CAA 0 t378 "test" 423 | big.basic IN CAA 0 t379 "test" 424 | big.basic IN CAA 0 t380 "test" 425 | big.basic IN CAA 0 t381 "test" 426 | big.basic IN CAA 0 t382 "test" 427 | big.basic IN CAA 0 t383 "test" 428 | big.basic IN CAA 0 t384 "test" 429 | big.basic IN CAA 0 t385 "test" 430 | big.basic IN CAA 0 t386 "test" 431 | big.basic IN CAA 0 t387 "test" 432 | big.basic IN CAA 0 t388 "test" 433 | big.basic IN CAA 0 t389 "test" 434 | big.basic IN CAA 0 t390 "test" 435 | big.basic IN CAA 0 t391 "test" 436 | big.basic IN CAA 0 t392 "test" 437 | big.basic IN CAA 0 t393 "test" 438 | big.basic IN CAA 0 t394 "test" 439 | big.basic IN CAA 0 t395 "test" 440 | big.basic IN CAA 0 t396 "test" 441 | big.basic IN CAA 0 t397 "test" 442 | big.basic IN CAA 0 t398 "test" 443 | big.basic IN CAA 0 t399 "test" 444 | big.basic IN CAA 0 t400 "test" 445 | big.basic IN CAA 0 t401 "test" 446 | big.basic IN CAA 0 t402 "test" 447 | big.basic IN CAA 0 t403 "test" 448 | big.basic IN CAA 0 t404 "test" 449 | big.basic IN CAA 0 t405 "test" 450 | big.basic IN CAA 0 t406 "test" 451 | big.basic IN CAA 0 t407 "test" 452 | big.basic IN CAA 0 t408 "test" 453 | big.basic IN CAA 0 t409 "test" 454 | big.basic IN CAA 0 t410 "test" 455 | big.basic IN CAA 0 t411 "test" 456 | big.basic IN CAA 0 t412 "test" 457 | big.basic IN CAA 0 t413 "test" 458 | big.basic IN CAA 0 t414 "test" 459 | big.basic IN CAA 0 t415 "test" 460 | big.basic IN CAA 0 t416 "test" 461 | big.basic IN CAA 0 t417 "test" 462 | big.basic IN CAA 0 t418 "test" 463 | big.basic IN CAA 0 t419 "test" 464 | big.basic IN CAA 0 t420 "test" 465 | big.basic IN CAA 0 t421 "test" 466 | big.basic IN CAA 0 t422 "test" 467 | big.basic IN CAA 0 t423 "test" 468 | big.basic IN CAA 0 t424 "test" 469 | big.basic IN CAA 0 t425 "test" 470 | big.basic IN CAA 0 t426 "test" 471 | big.basic IN CAA 0 t427 "test" 472 | big.basic IN CAA 0 t428 "test" 473 | big.basic IN CAA 0 t429 "test" 474 | big.basic IN CAA 0 t430 "test" 475 | big.basic IN CAA 0 t431 "test" 476 | big.basic IN CAA 0 t432 "test" 477 | big.basic IN CAA 0 t433 "test" 478 | big.basic IN CAA 0 t434 "test" 479 | big.basic IN CAA 0 t435 "test" 480 | big.basic IN CAA 0 t436 "test" 481 | big.basic IN CAA 0 t437 "test" 482 | big.basic IN CAA 0 t438 "test" 483 | big.basic IN CAA 0 t439 "test" 484 | big.basic IN CAA 0 t440 "test" 485 | big.basic IN CAA 0 t441 "test" 486 | big.basic IN CAA 0 t442 "test" 487 | big.basic IN CAA 0 t443 "test" 488 | big.basic IN CAA 0 t444 "test" 489 | big.basic IN CAA 0 t445 "test" 490 | big.basic IN CAA 0 t446 "test" 491 | big.basic IN CAA 0 t447 "test" 492 | big.basic IN CAA 0 t448 "test" 493 | big.basic IN CAA 0 t449 "test" 494 | big.basic IN CAA 0 t450 "test" 495 | big.basic IN CAA 0 t451 "test" 496 | big.basic IN CAA 0 t452 "test" 497 | big.basic IN CAA 0 t453 "test" 498 | big.basic IN CAA 0 t454 "test" 499 | big.basic IN CAA 0 t455 "test" 500 | big.basic IN CAA 0 t456 "test" 501 | big.basic IN CAA 0 t457 "test" 502 | big.basic IN CAA 0 t458 "test" 503 | big.basic IN CAA 0 t459 "test" 504 | big.basic IN CAA 0 t460 "test" 505 | big.basic IN CAA 0 t461 "test" 506 | big.basic IN CAA 0 t462 "test" 507 | big.basic IN CAA 0 t463 "test" 508 | big.basic IN CAA 0 t464 "test" 509 | big.basic IN CAA 0 t465 "test" 510 | big.basic IN CAA 0 t466 "test" 511 | big.basic IN CAA 0 t467 "test" 512 | big.basic IN CAA 0 t468 "test" 513 | big.basic IN CAA 0 t469 "test" 514 | big.basic IN CAA 0 t470 "test" 515 | big.basic IN CAA 0 t471 "test" 516 | big.basic IN CAA 0 t472 "test" 517 | big.basic IN CAA 0 t473 "test" 518 | big.basic IN CAA 0 t474 "test" 519 | big.basic IN CAA 0 t475 "test" 520 | big.basic IN CAA 0 t476 "test" 521 | big.basic IN CAA 0 t477 "test" 522 | big.basic IN CAA 0 t478 "test" 523 | big.basic IN CAA 0 t479 "test" 524 | big.basic IN CAA 0 t480 "test" 525 | big.basic IN CAA 0 t481 "test" 526 | big.basic IN CAA 0 t482 "test" 527 | big.basic IN CAA 0 t483 "test" 528 | big.basic IN CAA 0 t484 "test" 529 | big.basic IN CAA 0 t485 "test" 530 | big.basic IN CAA 0 t486 "test" 531 | big.basic IN CAA 0 t487 "test" 532 | big.basic IN CAA 0 t488 "test" 533 | big.basic IN CAA 0 t489 "test" 534 | big.basic IN CAA 0 t490 "test" 535 | big.basic IN CAA 0 t491 "test" 536 | big.basic IN CAA 0 t492 "test" 537 | big.basic IN CAA 0 t493 "test" 538 | big.basic IN CAA 0 t494 "test" 539 | big.basic IN CAA 0 t495 "test" 540 | big.basic IN CAA 0 t496 "test" 541 | big.basic IN CAA 0 t497 "test" 542 | big.basic IN CAA 0 t498 "test" 543 | big.basic IN CAA 0 t499 "test" 544 | big.basic IN CAA 0 t500 "test" 545 | big.basic IN CAA 0 t501 "test" 546 | big.basic IN CAA 0 t502 "test" 547 | big.basic IN CAA 0 t503 "test" 548 | big.basic IN CAA 0 t504 "test" 549 | big.basic IN CAA 0 t505 "test" 550 | big.basic IN CAA 0 t506 "test" 551 | big.basic IN CAA 0 t507 "test" 552 | big.basic IN CAA 0 t508 "test" 553 | big.basic IN CAA 0 t509 "test" 554 | big.basic IN CAA 0 t510 "test" 555 | big.basic IN CAA 0 t511 "test" 556 | big.basic IN CAA 0 t512 "test" 557 | big.basic IN CAA 0 t513 "test" 558 | big.basic IN CAA 0 t514 "test" 559 | big.basic IN CAA 0 t515 "test" 560 | big.basic IN CAA 0 t516 "test" 561 | big.basic IN CAA 0 t517 "test" 562 | big.basic IN CAA 0 t518 "test" 563 | big.basic IN CAA 0 t519 "test" 564 | big.basic IN CAA 0 t520 "test" 565 | big.basic IN CAA 0 t521 "test" 566 | big.basic IN CAA 0 t522 "test" 567 | big.basic IN CAA 0 t523 "test" 568 | big.basic IN CAA 0 t524 "test" 569 | big.basic IN CAA 0 t525 "test" 570 | big.basic IN CAA 0 t526 "test" 571 | big.basic IN CAA 0 t527 "test" 572 | big.basic IN CAA 0 t528 "test" 573 | big.basic IN CAA 0 t529 "test" 574 | big.basic IN CAA 0 t530 "test" 575 | big.basic IN CAA 0 t531 "test" 576 | big.basic IN CAA 0 t532 "test" 577 | big.basic IN CAA 0 t533 "test" 578 | big.basic IN CAA 0 t534 "test" 579 | big.basic IN CAA 0 t535 "test" 580 | big.basic IN CAA 0 t536 "test" 581 | big.basic IN CAA 0 t537 "test" 582 | big.basic IN CAA 0 t538 "test" 583 | big.basic IN CAA 0 t539 "test" 584 | big.basic IN CAA 0 t540 "test" 585 | big.basic IN CAA 0 t541 "test" 586 | big.basic IN CAA 0 t542 "test" 587 | big.basic IN CAA 0 t543 "test" 588 | big.basic IN CAA 0 t544 "test" 589 | big.basic IN CAA 0 t545 "test" 590 | big.basic IN CAA 0 t546 "test" 591 | big.basic IN CAA 0 t547 "test" 592 | big.basic IN CAA 0 t548 "test" 593 | big.basic IN CAA 0 t549 "test" 594 | big.basic IN CAA 0 t550 "test" 595 | big.basic IN CAA 0 t551 "test" 596 | big.basic IN CAA 0 t552 "test" 597 | big.basic IN CAA 0 t553 "test" 598 | big.basic IN CAA 0 t554 "test" 599 | big.basic IN CAA 0 t555 "test" 600 | big.basic IN CAA 0 t556 "test" 601 | big.basic IN CAA 0 t557 "test" 602 | big.basic IN CAA 0 t558 "test" 603 | big.basic IN CAA 0 t559 "test" 604 | big.basic IN CAA 0 t560 "test" 605 | big.basic IN CAA 0 t561 "test" 606 | big.basic IN CAA 0 t562 "test" 607 | big.basic IN CAA 0 t563 "test" 608 | big.basic IN CAA 0 t564 "test" 609 | big.basic IN CAA 0 t565 "test" 610 | big.basic IN CAA 0 t566 "test" 611 | big.basic IN CAA 0 t567 "test" 612 | big.basic IN CAA 0 t568 "test" 613 | big.basic IN CAA 0 t569 "test" 614 | big.basic IN CAA 0 t570 "test" 615 | big.basic IN CAA 0 t571 "test" 616 | big.basic IN CAA 0 t572 "test" 617 | big.basic IN CAA 0 t573 "test" 618 | big.basic IN CAA 0 t574 "test" 619 | big.basic IN CAA 0 t575 "test" 620 | big.basic IN CAA 0 t576 "test" 621 | big.basic IN CAA 0 t577 "test" 622 | big.basic IN CAA 0 t578 "test" 623 | big.basic IN CAA 0 t579 "test" 624 | big.basic IN CAA 0 t580 "test" 625 | big.basic IN CAA 0 t581 "test" 626 | big.basic IN CAA 0 t582 "test" 627 | big.basic IN CAA 0 t583 "test" 628 | big.basic IN CAA 0 t584 "test" 629 | big.basic IN CAA 0 t585 "test" 630 | big.basic IN CAA 0 t586 "test" 631 | big.basic IN CAA 0 t587 "test" 632 | big.basic IN CAA 0 t588 "test" 633 | big.basic IN CAA 0 t589 "test" 634 | big.basic IN CAA 0 t590 "test" 635 | big.basic IN CAA 0 t591 "test" 636 | big.basic IN CAA 0 t592 "test" 637 | big.basic IN CAA 0 t593 "test" 638 | big.basic IN CAA 0 t594 "test" 639 | big.basic IN CAA 0 t595 "test" 640 | big.basic IN CAA 0 t596 "test" 641 | big.basic IN CAA 0 t597 "test" 642 | big.basic IN CAA 0 t598 "test" 643 | big.basic IN CAA 0 t599 "test" 644 | big.basic IN CAA 0 t600 "test" 645 | big.basic IN CAA 0 t601 "test" 646 | big.basic IN CAA 0 t602 "test" 647 | big.basic IN CAA 0 t603 "test" 648 | big.basic IN CAA 0 t604 "test" 649 | big.basic IN CAA 0 t605 "test" 650 | big.basic IN CAA 0 t606 "test" 651 | big.basic IN CAA 0 t607 "test" 652 | big.basic IN CAA 0 t608 "test" 653 | big.basic IN CAA 0 t609 "test" 654 | big.basic IN CAA 0 t610 "test" 655 | big.basic IN CAA 0 t611 "test" 656 | big.basic IN CAA 0 t612 "test" 657 | big.basic IN CAA 0 t613 "test" 658 | big.basic IN CAA 0 t614 "test" 659 | big.basic IN CAA 0 t615 "test" 660 | big.basic IN CAA 0 t616 "test" 661 | big.basic IN CAA 0 t617 "test" 662 | big.basic IN CAA 0 t618 "test" 663 | big.basic IN CAA 0 t619 "test" 664 | big.basic IN CAA 0 t620 "test" 665 | big.basic IN CAA 0 t621 "test" 666 | big.basic IN CAA 0 t622 "test" 667 | big.basic IN CAA 0 t623 "test" 668 | big.basic IN CAA 0 t624 "test" 669 | big.basic IN CAA 0 t625 "test" 670 | big.basic IN CAA 0 t626 "test" 671 | big.basic IN CAA 0 t627 "test" 672 | big.basic IN CAA 0 t628 "test" 673 | big.basic IN CAA 0 t629 "test" 674 | big.basic IN CAA 0 t630 "test" 675 | big.basic IN CAA 0 t631 "test" 676 | big.basic IN CAA 0 t632 "test" 677 | big.basic IN CAA 0 t633 "test" 678 | big.basic IN CAA 0 t634 "test" 679 | big.basic IN CAA 0 t635 "test" 680 | big.basic IN CAA 0 t636 "test" 681 | big.basic IN CAA 0 t637 "test" 682 | big.basic IN CAA 0 t638 "test" 683 | big.basic IN CAA 0 t639 "test" 684 | big.basic IN CAA 0 t640 "test" 685 | big.basic IN CAA 0 t641 "test" 686 | big.basic IN CAA 0 t642 "test" 687 | big.basic IN CAA 0 t643 "test" 688 | big.basic IN CAA 0 t644 "test" 689 | big.basic IN CAA 0 t645 "test" 690 | big.basic IN CAA 0 t646 "test" 691 | big.basic IN CAA 0 t647 "test" 692 | big.basic IN CAA 0 t648 "test" 693 | big.basic IN CAA 0 t649 "test" 694 | big.basic IN CAA 0 t650 "test" 695 | big.basic IN CAA 0 t651 "test" 696 | big.basic IN CAA 0 t652 "test" 697 | big.basic IN CAA 0 t653 "test" 698 | big.basic IN CAA 0 t654 "test" 699 | big.basic IN CAA 0 t655 "test" 700 | big.basic IN CAA 0 t656 "test" 701 | big.basic IN CAA 0 t657 "test" 702 | big.basic IN CAA 0 t658 "test" 703 | big.basic IN CAA 0 t659 "test" 704 | big.basic IN CAA 0 t660 "test" 705 | big.basic IN CAA 0 t661 "test" 706 | big.basic IN CAA 0 t662 "test" 707 | big.basic IN CAA 0 t663 "test" 708 | big.basic IN CAA 0 t664 "test" 709 | big.basic IN CAA 0 t665 "test" 710 | big.basic IN CAA 0 t666 "test" 711 | big.basic IN CAA 0 t667 "test" 712 | big.basic IN CAA 0 t668 "test" 713 | big.basic IN CAA 0 t669 "test" 714 | big.basic IN CAA 0 t670 "test" 715 | big.basic IN CAA 0 t671 "test" 716 | big.basic IN CAA 0 t672 "test" 717 | big.basic IN CAA 0 t673 "test" 718 | big.basic IN CAA 0 t674 "test" 719 | big.basic IN CAA 0 t675 "test" 720 | big.basic IN CAA 0 t676 "test" 721 | big.basic IN CAA 0 t677 "test" 722 | big.basic IN CAA 0 t678 "test" 723 | big.basic IN CAA 0 t679 "test" 724 | big.basic IN CAA 0 t680 "test" 725 | big.basic IN CAA 0 t681 "test" 726 | big.basic IN CAA 0 t682 "test" 727 | big.basic IN CAA 0 t683 "test" 728 | big.basic IN CAA 0 t684 "test" 729 | big.basic IN CAA 0 t685 "test" 730 | big.basic IN CAA 0 t686 "test" 731 | big.basic IN CAA 0 t687 "test" 732 | big.basic IN CAA 0 t688 "test" 733 | big.basic IN CAA 0 t689 "test" 734 | big.basic IN CAA 0 t690 "test" 735 | big.basic IN CAA 0 t691 "test" 736 | big.basic IN CAA 0 t692 "test" 737 | big.basic IN CAA 0 t693 "test" 738 | big.basic IN CAA 0 t694 "test" 739 | big.basic IN CAA 0 t695 "test" 740 | big.basic IN CAA 0 t696 "test" 741 | big.basic IN CAA 0 t697 "test" 742 | big.basic IN CAA 0 t698 "test" 743 | big.basic IN CAA 0 t699 "test" 744 | big.basic IN CAA 0 t700 "test" 745 | big.basic IN CAA 0 t701 "test" 746 | big.basic IN CAA 0 t702 "test" 747 | big.basic IN CAA 0 t703 "test" 748 | big.basic IN CAA 0 t704 "test" 749 | big.basic IN CAA 0 t705 "test" 750 | big.basic IN CAA 0 t706 "test" 751 | big.basic IN CAA 0 t707 "test" 752 | big.basic IN CAA 0 t708 "test" 753 | big.basic IN CAA 0 t709 "test" 754 | big.basic IN CAA 0 t710 "test" 755 | big.basic IN CAA 0 t711 "test" 756 | big.basic IN CAA 0 t712 "test" 757 | big.basic IN CAA 0 t713 "test" 758 | big.basic IN CAA 0 t714 "test" 759 | big.basic IN CAA 0 t715 "test" 760 | big.basic IN CAA 0 t716 "test" 761 | big.basic IN CAA 0 t717 "test" 762 | big.basic IN CAA 0 t718 "test" 763 | big.basic IN CAA 0 t719 "test" 764 | big.basic IN CAA 0 t720 "test" 765 | big.basic IN CAA 0 t721 "test" 766 | big.basic IN CAA 0 t722 "test" 767 | big.basic IN CAA 0 t723 "test" 768 | big.basic IN CAA 0 t724 "test" 769 | big.basic IN CAA 0 t725 "test" 770 | big.basic IN CAA 0 t726 "test" 771 | big.basic IN CAA 0 t727 "test" 772 | big.basic IN CAA 0 t728 "test" 773 | big.basic IN CAA 0 t729 "test" 774 | big.basic IN CAA 0 t730 "test" 775 | big.basic IN CAA 0 t731 "test" 776 | big.basic IN CAA 0 t732 "test" 777 | big.basic IN CAA 0 t733 "test" 778 | big.basic IN CAA 0 t734 "test" 779 | big.basic IN CAA 0 t735 "test" 780 | big.basic IN CAA 0 t736 "test" 781 | big.basic IN CAA 0 t737 "test" 782 | big.basic IN CAA 0 t738 "test" 783 | big.basic IN CAA 0 t739 "test" 784 | big.basic IN CAA 0 t740 "test" 785 | big.basic IN CAA 0 t741 "test" 786 | big.basic IN CAA 0 t742 "test" 787 | big.basic IN CAA 0 t743 "test" 788 | big.basic IN CAA 0 t744 "test" 789 | big.basic IN CAA 0 t745 "test" 790 | big.basic IN CAA 0 t746 "test" 791 | big.basic IN CAA 0 t747 "test" 792 | big.basic IN CAA 0 t748 "test" 793 | big.basic IN CAA 0 t749 "test" 794 | big.basic IN CAA 0 t750 "test" 795 | big.basic IN CAA 0 t751 "test" 796 | big.basic IN CAA 0 t752 "test" 797 | big.basic IN CAA 0 t753 "test" 798 | big.basic IN CAA 0 t754 "test" 799 | big.basic IN CAA 0 t755 "test" 800 | big.basic IN CAA 0 t756 "test" 801 | big.basic IN CAA 0 t757 "test" 802 | big.basic IN CAA 0 t758 "test" 803 | big.basic IN CAA 0 t759 "test" 804 | big.basic IN CAA 0 t760 "test" 805 | big.basic IN CAA 0 t761 "test" 806 | big.basic IN CAA 0 t762 "test" 807 | big.basic IN CAA 0 t763 "test" 808 | big.basic IN CAA 0 t764 "test" 809 | big.basic IN CAA 0 t765 "test" 810 | big.basic IN CAA 0 t766 "test" 811 | big.basic IN CAA 0 t767 "test" 812 | big.basic IN CAA 0 t768 "test" 813 | big.basic IN CAA 0 t769 "test" 814 | big.basic IN CAA 0 t770 "test" 815 | big.basic IN CAA 0 t771 "test" 816 | big.basic IN CAA 0 t772 "test" 817 | big.basic IN CAA 0 t773 "test" 818 | big.basic IN CAA 0 t774 "test" 819 | big.basic IN CAA 0 t775 "test" 820 | big.basic IN CAA 0 t776 "test" 821 | big.basic IN CAA 0 t777 "test" 822 | big.basic IN CAA 0 t778 "test" 823 | big.basic IN CAA 0 t779 "test" 824 | big.basic IN CAA 0 t780 "test" 825 | big.basic IN CAA 0 t781 "test" 826 | big.basic IN CAA 0 t782 "test" 827 | big.basic IN CAA 0 t783 "test" 828 | big.basic IN CAA 0 t784 "test" 829 | big.basic IN CAA 0 t785 "test" 830 | big.basic IN CAA 0 t786 "test" 831 | big.basic IN CAA 0 t787 "test" 832 | big.basic IN CAA 0 t788 "test" 833 | big.basic IN CAA 0 t789 "test" 834 | big.basic IN CAA 0 t790 "test" 835 | big.basic IN CAA 0 t791 "test" 836 | big.basic IN CAA 0 t792 "test" 837 | big.basic IN CAA 0 t793 "test" 838 | big.basic IN CAA 0 t794 "test" 839 | big.basic IN CAA 0 t795 "test" 840 | big.basic IN CAA 0 t796 "test" 841 | big.basic IN CAA 0 t797 "test" 842 | big.basic IN CAA 0 t798 "test" 843 | big.basic IN CAA 0 t799 "test" 844 | big.basic IN CAA 0 t800 "test" 845 | big.basic IN CAA 0 t801 "test" 846 | big.basic IN CAA 0 t802 "test" 847 | big.basic IN CAA 0 t803 "test" 848 | big.basic IN CAA 0 t804 "test" 849 | big.basic IN CAA 0 t805 "test" 850 | big.basic IN CAA 0 t806 "test" 851 | big.basic IN CAA 0 t807 "test" 852 | big.basic IN CAA 0 t808 "test" 853 | big.basic IN CAA 0 t809 "test" 854 | big.basic IN CAA 0 t810 "test" 855 | big.basic IN CAA 0 t811 "test" 856 | big.basic IN CAA 0 t812 "test" 857 | big.basic IN CAA 0 t813 "test" 858 | big.basic IN CAA 0 t814 "test" 859 | big.basic IN CAA 0 t815 "test" 860 | big.basic IN CAA 0 t816 "test" 861 | big.basic IN CAA 0 t817 "test" 862 | big.basic IN CAA 0 t818 "test" 863 | big.basic IN CAA 0 t819 "test" 864 | big.basic IN CAA 0 t820 "test" 865 | big.basic IN CAA 0 t821 "test" 866 | big.basic IN CAA 0 t822 "test" 867 | big.basic IN CAA 0 t823 "test" 868 | big.basic IN CAA 0 t824 "test" 869 | big.basic IN CAA 0 t825 "test" 870 | big.basic IN CAA 0 t826 "test" 871 | big.basic IN CAA 0 t827 "test" 872 | big.basic IN CAA 0 t828 "test" 873 | big.basic IN CAA 0 t829 "test" 874 | big.basic IN CAA 0 t830 "test" 875 | big.basic IN CAA 0 t831 "test" 876 | big.basic IN CAA 0 t832 "test" 877 | big.basic IN CAA 0 t833 "test" 878 | big.basic IN CAA 0 t834 "test" 879 | big.basic IN CAA 0 t835 "test" 880 | big.basic IN CAA 0 t836 "test" 881 | big.basic IN CAA 0 t837 "test" 882 | big.basic IN CAA 0 t838 "test" 883 | big.basic IN CAA 0 t839 "test" 884 | big.basic IN CAA 0 t840 "test" 885 | big.basic IN CAA 0 t841 "test" 886 | big.basic IN CAA 0 t842 "test" 887 | big.basic IN CAA 0 t843 "test" 888 | big.basic IN CAA 0 t844 "test" 889 | big.basic IN CAA 0 t845 "test" 890 | big.basic IN CAA 0 t846 "test" 891 | big.basic IN CAA 0 t847 "test" 892 | big.basic IN CAA 0 t848 "test" 893 | big.basic IN CAA 0 t849 "test" 894 | big.basic IN CAA 0 t850 "test" 895 | big.basic IN CAA 0 t851 "test" 896 | big.basic IN CAA 0 t852 "test" 897 | big.basic IN CAA 0 t853 "test" 898 | big.basic IN CAA 0 t854 "test" 899 | big.basic IN CAA 0 t855 "test" 900 | big.basic IN CAA 0 t856 "test" 901 | big.basic IN CAA 0 t857 "test" 902 | big.basic IN CAA 0 t858 "test" 903 | big.basic IN CAA 0 t859 "test" 904 | big.basic IN CAA 0 t860 "test" 905 | big.basic IN CAA 0 t861 "test" 906 | big.basic IN CAA 0 t862 "test" 907 | big.basic IN CAA 0 t863 "test" 908 | big.basic IN CAA 0 t864 "test" 909 | big.basic IN CAA 0 t865 "test" 910 | big.basic IN CAA 0 t866 "test" 911 | big.basic IN CAA 0 t867 "test" 912 | big.basic IN CAA 0 t868 "test" 913 | big.basic IN CAA 0 t869 "test" 914 | big.basic IN CAA 0 t870 "test" 915 | big.basic IN CAA 0 t871 "test" 916 | big.basic IN CAA 0 t872 "test" 917 | big.basic IN CAA 0 t873 "test" 918 | big.basic IN CAA 0 t874 "test" 919 | big.basic IN CAA 0 t875 "test" 920 | big.basic IN CAA 0 t876 "test" 921 | big.basic IN CAA 0 t877 "test" 922 | big.basic IN CAA 0 t878 "test" 923 | big.basic IN CAA 0 t879 "test" 924 | big.basic IN CAA 0 t880 "test" 925 | big.basic IN CAA 0 t881 "test" 926 | big.basic IN CAA 0 t882 "test" 927 | big.basic IN CAA 0 t883 "test" 928 | big.basic IN CAA 0 t884 "test" 929 | big.basic IN CAA 0 t885 "test" 930 | big.basic IN CAA 0 t886 "test" 931 | big.basic IN CAA 0 t887 "test" 932 | big.basic IN CAA 0 t888 "test" 933 | big.basic IN CAA 0 t889 "test" 934 | big.basic IN CAA 0 t890 "test" 935 | big.basic IN CAA 0 t891 "test" 936 | big.basic IN CAA 0 t892 "test" 937 | big.basic IN CAA 0 t893 "test" 938 | big.basic IN CAA 0 t894 "test" 939 | big.basic IN CAA 0 t895 "test" 940 | big.basic IN CAA 0 t896 "test" 941 | big.basic IN CAA 0 t897 "test" 942 | big.basic IN CAA 0 t898 "test" 943 | big.basic IN CAA 0 t899 "test" 944 | big.basic IN CAA 0 t900 "test" 945 | big.basic IN CAA 0 t901 "test" 946 | big.basic IN CAA 0 t902 "test" 947 | big.basic IN CAA 0 t903 "test" 948 | big.basic IN CAA 0 t904 "test" 949 | big.basic IN CAA 0 t905 "test" 950 | big.basic IN CAA 0 t906 "test" 951 | big.basic IN CAA 0 t907 "test" 952 | big.basic IN CAA 0 t908 "test" 953 | big.basic IN CAA 0 t909 "test" 954 | big.basic IN CAA 0 t910 "test" 955 | big.basic IN CAA 0 t911 "test" 956 | big.basic IN CAA 0 t912 "test" 957 | big.basic IN CAA 0 t913 "test" 958 | big.basic IN CAA 0 t914 "test" 959 | big.basic IN CAA 0 t915 "test" 960 | big.basic IN CAA 0 t916 "test" 961 | big.basic IN CAA 0 t917 "test" 962 | big.basic IN CAA 0 t918 "test" 963 | big.basic IN CAA 0 t919 "test" 964 | big.basic IN CAA 0 t920 "test" 965 | big.basic IN CAA 0 t921 "test" 966 | big.basic IN CAA 0 t922 "test" 967 | big.basic IN CAA 0 t923 "test" 968 | big.basic IN CAA 0 t924 "test" 969 | big.basic IN CAA 0 t925 "test" 970 | big.basic IN CAA 0 t926 "test" 971 | big.basic IN CAA 0 t927 "test" 972 | big.basic IN CAA 0 t928 "test" 973 | big.basic IN CAA 0 t929 "test" 974 | big.basic IN CAA 0 t930 "test" 975 | big.basic IN CAA 0 t931 "test" 976 | big.basic IN CAA 0 t932 "test" 977 | big.basic IN CAA 0 t933 "test" 978 | big.basic IN CAA 0 t934 "test" 979 | big.basic IN CAA 0 t935 "test" 980 | big.basic IN CAA 0 t936 "test" 981 | big.basic IN CAA 0 t937 "test" 982 | big.basic IN CAA 0 t938 "test" 983 | big.basic IN CAA 0 t939 "test" 984 | big.basic IN CAA 0 t940 "test" 985 | big.basic IN CAA 0 t941 "test" 986 | big.basic IN CAA 0 t942 "test" 987 | big.basic IN CAA 0 t943 "test" 988 | big.basic IN CAA 0 t944 "test" 989 | big.basic IN CAA 0 t945 "test" 990 | big.basic IN CAA 0 t946 "test" 991 | big.basic IN CAA 0 t947 "test" 992 | big.basic IN CAA 0 t948 "test" 993 | big.basic IN CAA 0 t949 "test" 994 | big.basic IN CAA 0 t950 "test" 995 | big.basic IN CAA 0 t951 "test" 996 | big.basic IN CAA 0 t952 "test" 997 | big.basic IN CAA 0 t953 "test" 998 | big.basic IN CAA 0 t954 "test" 999 | big.basic IN CAA 0 t955 "test" 1000 | big.basic IN CAA 0 t956 "test" 1001 | big.basic IN CAA 0 t957 "test" 1002 | big.basic IN CAA 0 t958 "test" 1003 | big.basic IN CAA 0 t959 "test" 1004 | big.basic IN CAA 0 t960 "test" 1005 | big.basic IN CAA 0 t961 "test" 1006 | big.basic IN CAA 0 t962 "test" 1007 | big.basic IN CAA 0 t963 "test" 1008 | big.basic IN CAA 0 t964 "test" 1009 | big.basic IN CAA 0 t965 "test" 1010 | big.basic IN CAA 0 t966 "test" 1011 | big.basic IN CAA 0 t967 "test" 1012 | big.basic IN CAA 0 t968 "test" 1013 | big.basic IN CAA 0 t969 "test" 1014 | big.basic IN CAA 0 t970 "test" 1015 | big.basic IN CAA 0 t971 "test" 1016 | big.basic IN CAA 0 t972 "test" 1017 | big.basic IN CAA 0 t973 "test" 1018 | big.basic IN CAA 0 t974 "test" 1019 | big.basic IN CAA 0 t975 "test" 1020 | big.basic IN CAA 0 t976 "test" 1021 | big.basic IN CAA 0 t977 "test" 1022 | big.basic IN CAA 0 t978 "test" 1023 | big.basic IN CAA 0 t979 "test" 1024 | big.basic IN CAA 0 t980 "test" 1025 | big.basic IN CAA 0 t981 "test" 1026 | big.basic IN CAA 0 t982 "test" 1027 | big.basic IN CAA 0 t983 "test" 1028 | big.basic IN CAA 0 t984 "test" 1029 | big.basic IN CAA 0 t985 "test" 1030 | big.basic IN CAA 0 t986 "test" 1031 | big.basic IN CAA 0 t987 "test" 1032 | big.basic IN CAA 0 t988 "test" 1033 | big.basic IN CAA 0 t989 "test" 1034 | big.basic IN CAA 0 t990 "test" 1035 | big.basic IN CAA 0 t991 "test" 1036 | big.basic IN CAA 0 t992 "test" 1037 | big.basic IN CAA 0 t993 "test" 1038 | big.basic IN CAA 0 t994 "test" 1039 | big.basic IN CAA 0 t995 "test" 1040 | big.basic IN CAA 0 t996 "test" 1041 | big.basic IN CAA 0 t997 "test" 1042 | big.basic IN CAA 0 t998 "test" 1043 | big.basic IN CAA 0 t999 "test" 1044 | big.basic IN CAA 0 issue "caatestsuite.com" 1045 | critical1.basic IN CAA 128 caatestsuitedummyproperty "test" 1046 | critical2.basic IN CAA 130 caatestsuitedummyproperty "test" 1047 | cname-deny.basic IN CNAME deny.basic 1048 | cname-cname-deny.basic IN CNAME cname-deny.basic 1049 | dname-deny.basic IN DNAME deny.basic 1050 | cname-deny-sub.basic IN CNAME sub.deny.basic 1051 | cname-loop.basic IN CNAME sub.cname-loop.basic 1052 | deny-wild.basic IN CAA 0 issuewild "caatestsuite.com" 1053 | permit.basic IN CAA 0 dummy "dummy" 1054 | deny.permit.basic IN CAA 0 issue "caatestsuite.com" 1055 | 1056 | ipv6only IN NS nsipv6 1057 | 1058 | ;retry IN NS nsgo 1059 | 1060 | xss IN CAA 0 issue "" 1061 | 1062 | www.auto-base-san IN CAA 0 dummy "dummy" 1063 | auto-base-san IN CAA 0 issue "caatestsuite.com" 1064 | 1065 | www.auto-www-san IN CAA 0 issue "caatestsuite.com" 1066 | -------------------------------------------------------------------------------- /zones/expired.caatestsuite-dnssec.com.: -------------------------------------------------------------------------------- 1 | ; Copyright 2017 Opsmate, Inc. 2 | ; 3 | ; Licensed under the Apache License, Version 2.0 (the "License"); 4 | ; you may not use this file except in compliance with the License. 5 | ; You may obtain a copy of the License at 6 | ; 7 | ; http://www.apache.org/licenses/LICENSE-2.0 8 | ; 9 | ; Unless required by applicable law or agreed to in writing, software 10 | ; distributed under the License is distributed on an "AS IS" BASIS, 11 | ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | ; See the License for the specific language governing permissions and 13 | ; limitations under the License. 14 | 15 | $TTL 1m 16 | @ IN SOA ns0.caatestsuite-dnssec.com. hostmaster.caatestsuite-dnssec.com. ( 17 | 1 ; serial 18 | 43200 ; refresh 19 | 600 ; retry 20 | 1209600 ; expire 21 | 60 ; minimum 22 | ) 23 | 24 | ; NS records 25 | @ IN NS ns0.caatestsuite-dnssec.com. 26 | @ IN NS ns1.caatestsuite-dnssec.com. 27 | 28 | $INCLUDE Kexpired.caatestsuite-dnssec.com.+005+20931.key 29 | $INCLUDE Kexpired.caatestsuite-dnssec.com.+005+54799.key 30 | -------------------------------------------------------------------------------- /zones/ipv6only.caatestsuite.com.: -------------------------------------------------------------------------------- 1 | ; Copyright 2017 Opsmate, Inc. 2 | ; 3 | ; Licensed under the Apache License, Version 2.0 (the "License"); 4 | ; you may not use this file except in compliance with the License. 5 | ; You may obtain a copy of the License at 6 | ; 7 | ; http://www.apache.org/licenses/LICENSE-2.0 8 | ; 9 | ; Unless required by applicable law or agreed to in writing, software 10 | ; distributed under the License is distributed on an "AS IS" BASIS, 11 | ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | ; See the License for the specific language governing permissions and 13 | ; limitations under the License. 14 | 15 | $TTL 1m 16 | @ IN SOA nsipv6.caatestsuite.com. hostmaster.caatestsuite.com. ( 17 | 1 ; serial 18 | 43200 ; refresh 19 | 600 ; retry 20 | 1209600 ; expire 21 | 60 ; minimum 22 | ) 23 | 24 | ; NS records 25 | @ IN NS nsipv6.caatestsuite.com. 26 | 27 | @ IN CAA 0 issue "caatestsuite.com" 28 | -------------------------------------------------------------------------------- /zones/missing.caatestsuite-dnssec.com.: -------------------------------------------------------------------------------- 1 | ; Copyright 2017 Opsmate, Inc. 2 | ; 3 | ; Licensed under the Apache License, Version 2.0 (the "License"); 4 | ; you may not use this file except in compliance with the License. 5 | ; You may obtain a copy of the License at 6 | ; 7 | ; http://www.apache.org/licenses/LICENSE-2.0 8 | ; 9 | ; Unless required by applicable law or agreed to in writing, software 10 | ; distributed under the License is distributed on an "AS IS" BASIS, 11 | ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | ; See the License for the specific language governing permissions and 13 | ; limitations under the License. 14 | 15 | $TTL 1m 16 | @ IN SOA ns0.caatestsuite-dnssec.com. hostmaster.caatestsuite-dnssec.com. ( 17 | 1 ; serial 18 | 43200 ; refresh 19 | 600 ; retry 20 | 1209600 ; expire 21 | 60 ; minimum 22 | ) 23 | 24 | ; NS records 25 | @ IN NS ns0.caatestsuite-dnssec.com. 26 | @ IN NS ns1.caatestsuite-dnssec.com. 27 | 28 | $INCLUDE Kmissing.caatestsuite-dnssec.com.+005+25092.key 29 | $INCLUDE Kmissing.caatestsuite-dnssec.com.+005+61357.key 30 | --------------------------------------------------------------------------------